2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
returnt('Allows content to be submitted to the site and displayed on pages.');
returnt('Allows content to be submitted to the site and displayed on pages.');
case'admin/content/node':
returnt('<p>Below is a list of all of the posts on your site. Other forms of content are listed elsewhere (e.g. <a href="%comments">comments</a>).</p><p>Clicking a title views the post, while clicking an author\'s name views their user information.</p>',array('%comments'=>url('admin/comment')));
case'admin/content/search':
case'admin/content/search':
returnt('<p>Enter a simple pattern to search for a post. This can include the wildcard character *.<br />For example, a search for "br*" might return "bread bakers", "our daily bread" and "brenda".</p>');
returnt('<p>Enter a simple pattern to search for a post. This can include the wildcard character *.<br />For example, a search for "br*" might return "bread bakers", "our daily bread" and "brenda".</p>');
}
}
...
@@ -929,20 +927,55 @@ function node_last_changed($nid) {
...
@@ -929,20 +927,55 @@ function node_last_changed($nid) {
}
}
/**
/**
* List node administration operations that can be performed.
* Implementation of hook_node_operations().
*/
*/
functionnode_operations(){
functionnode_node_operations(){
$operations=array(
$operations=array(
'approve'=>array(t('Approve the selected posts'),'UPDATE {node} SET status = 1 WHERE nid = %d'),
'approve'=>array(t('Approve the selected posts'),'node_operations_approve'),
'promote'=>array(t('Promote the selected posts'),'UPDATE {node} SET status = 1, promote = 1 WHERE nid = %d'),
'promote'=>array(t('Promote the selected posts'),'node_operations_promote'),
'sticky'=>array(t('Make the selected posts sticky'),'UPDATE {node} SET status = 1, sticky = 1 WHERE nid = %d'),
'sticky'=>array(t('Make the selected posts sticky'),'node_operations_sticky'),
'demote'=>array(t('Demote the selected posts'),'UPDATE {node} SET promote = 0 WHERE nid = %d'),
'demote'=>array(t('Demote the selected posts'),'node_operations_demote'),
'unpublish'=>array(t('Unpublish the selected posts'),'UPDATE {node} SET status = 0 WHERE nid = %d'),
'unpublish'=>array(t('Unpublish the selected posts'),'node_operations_unpublish'),
'delete'=>array(t('Delete the selected posts'),'')
'delete'=>array(t('Delete the selected posts'),''),
);
);
return$operations;
return$operations;
}
}
/**
* Callback function for admin mass approving nodes.
*/
functionnode_operations_approve($nodes){
db_query('UPDATE {node} SET status = 1 WHERE nid IN(%s)',implode(',',$nodes));
}
/**
* Callback function for admin mass promoting nodes.
*/
functionnode_operations_promote($nodes){
db_query('UPDATE {node} SET status = 1, promote = 1 WHERE nid IN(%s)',implode(',',$nodes));
}
/**
* Callback function for admin mass editing nodes to be sticky.
*/
functionnode_operations_sticky($nodes){
db_query('UPDATE {node} SET status = 1, sticky = 1 WHERE nid IN(%s)',implode(',',$nodes));
}
/**
* Callback function for admin mass demoting nodes.
*/
functionnode_operations_demote($nodes){
db_query('UPDATE {node} SET promote = 0 WHERE nid IN(%s)',implode(',',$nodes));
}
/**
* Callback function for admin mass unpublishing nodes.
*/
functionnode_operations_unpublish($nodes){
db_query('UPDATE {node} SET status = 0 WHERE nid IN(%s)',implode(',',$nodes));
}
/**
/**
* List node administration filters that can be applied.
* List node administration filters that can be applied.
*/
*/
...
@@ -1108,18 +1141,15 @@ function node_filter_form_submit() {
...
@@ -1108,18 +1141,15 @@ function node_filter_form_submit() {
}
}
/**
/**
* Generate the content administration overview.
* Submit the node administration update form.
*/
*/
functionnode_admin_nodes_submit($form_id,$edit){
functionnode_admin_nodes_submit($form_id,$edit){
$operations=node_operations();
$operations=module_invoke_all('node_operations');
if($operations[$edit['operation']][1]){
$operation=$operations[$edit['operation']];
// Flag changes
// Filter out unchecked nodes
$operation=$operations[$edit['operation']][1];
$nodes=array_diff($edit['nodes'],array(0));
foreach($edit['nodes']as$nid=>$value){
if($function=$operation[1]){
if($value){
call_user_func($function,$nodes);
db_query($operation,$nid);
}
}
cache_clear_all();
cache_clear_all();
drupal_set_message(t('The update has been performed.'));
drupal_set_message(t('The update has been performed.'));
}
}
...
@@ -1158,7 +1188,7 @@ function node_admin_nodes() {
...
@@ -1158,7 +1188,7 @@ function node_admin_nodes() {