Rebuild permissions.', array('@node_access_rebuild' => drupal\url('admin/reports/status/rebuild'))); } drupal\set_message($message, 'error'); } switch ($path) { case 'admin/help#node': $output .= drupal\t("

About

"); $output .= drupal\t("

The Node module manages the creation, editing, deletion, settings, and display of the main site content. Content items managed by the Node module are typically displayed as pages on your site, and include a title, some meta-data (author, creation time, content type, etc.), and optional fields containing text or other data (fields are managed by the Field module). For more information, see the online handbook entry for Node module.

", array( '@node' => 'http://drupal.org/handbook/modules/node', '@field' => drupal\url('admin/help/field')) ); $output .= '

' . drupal\t('Uses') . '

'; $output .= '
'; $output .= '
' . drupal\t('Creating content') . '
'; $output .= '
' . drupal\t('When new content is created, the Node module records basic information about the content, including the author, date of creation, and the Content type. It also manages the publishing options, which define whether or not the content is published, promoted to the front page of the site, and/or sticky at the top of content lists. Default settings can be configured for each type of content on your site.', array('@content-type' => drupal\url('admin/structure/types'))) . '
'; $output .= '
' . drupal\t('Creating custom content types') . '
'; $output .= '
' . drupal\t('The Node module gives users with the Administer content types permission the ability to create new content types in addition to the default ones already configured. Creating custom content types allows you the flexibility to add fields and configure default settings that suit the differing needs of various site content.', array('@content-new' => drupal\url('admin/structure/types/add'), '@field' => drupal\url('admin/help/field'))) . '
'; $output .= '
' . drupal\t('Administering content') . '
'; $output .= '
' . drupal\t('The Content administration page allows you to review and bulk manage your site content.', array('@content' => drupal\url('admin/content'))) . '
'; $output .= '
' . drupal\t('Creating revisions') . '
'; $output .= '
' . drupal\t('The Node module also enables you to create multiple versions of any content, and revert to older versions using the Revision information settings.') . '
'; $output .= '
' . drupal\t('User permissions') . '
'; $output .= '
' . drupal\t('The Node module makes a number of permissions available for each content type, which can be set by role on the permissions page.', array('@permissions' => drupal\url('admin/people/permissions', array('fragment' => 'module-node')))) . '
'; $output .= '
'; return $output; case 'admin/structure/types/add': return '

' . drupal\t('Individual content types can have different fields, behaviors, and permissions assigned to them.') . '

'; case 'admin/structure/types/manage/%/display': return '

' . drupal\t('Content items can be displayed using different view modes: Teaser, Full content, Print, RSS, etc. Teaser is a short format that is typically used in lists of multiple content items. Full content is typically used when the content is displayed on its own page.') . '

' . '

' . drupal\t('Here, you can define which fields are shown and hidden when %type content is displayed in each view mode, and define how the fields are displayed in each view mode.', array('%type' => type_get_name($arg[4]))) . '

'; case 'node/%/revisions': return '

' . drupal\t('Revisions allow you to track differences between multiple versions of your content, and revert back to older versions.') . '

'; case 'node/%/edit': $node = load($arg[1]); $type = type_get_type($node); return (!empty($type->help) ? '

' . drupal\filter_xss_admin($type->help) . '

' : ''); } if ($arg[0] == 'node' && $arg[1] == 'add' && $arg[2]) { $type = type_get_type(str_replace('-', '_', $arg[2])); return (!empty($type->help) ? '

' . drupal\filter_xss_admin($type->help) . '

' : ''); } } /** * @implements system__theme() */ function system__theme() { return array( 'node' => array( 'render element' => 'elements', 'template' => 'node', ), 'search_admin' => array( 'render element' => 'form', ), 'add_list' => array( 'variables' => array('content' => NULL), 'file' => 'node.pages.inc', ), 'preview' => array( 'variables' => array('node' => NULL), 'file' => 'node.pages.inc', ), 'admin_overview' => array( 'variables' => array('name' => NULL, 'type' => NULL), ), 'recent_block' => array( 'variables' => array('nodes' => NULL), ), 'recent_content' => array( 'variables' => array('node' => NULL), ), ); } /** * @implements system__cron() */ function system__cron() { db\delete('history') ->condition('timestamp', NODE_NEW_LIMIT, '<') ->execute(); } /** * @implements entity__info() */ function entity__info() { $return = array( 'node' => array( 'label' => drupal\t('Node'), 'controller class' => 'NodeController', 'base table' => 'node', 'revision table' => 'node_revision', 'uri callback' => 'node_uri', 'fieldable' => TRUE, 'entity keys' => array( 'id' => 'nid', 'revision' => 'vid', 'bundle' => 'type', 'label' => 'title', ), 'bundle keys' => array( 'bundle' => 'type', ), 'bundles' => array(), 'view modes' => array( 'full' => array( 'label' => drupal\t('Full content'), 'custom settings' => FALSE, ), 'teaser' => array( 'label' => drupal\t('Teaser'), 'custom settings' => TRUE, ), 'rss' => array( 'label' => drupal\t('RSS'), 'custom settings' => FALSE, ), ), ), ); // Search integration is provided by node.module, so search-related // view modes for nodes are defined here and not in search.module. if (drupal\module_exists('search')) { $return['node']['view modes'] += array( 'search_index' => array( 'label' => drupal\t('Search index'), 'custom settings' => FALSE, ), 'search_result' => array( 'label' => drupal\t('Search result'), 'custom settings' => FALSE, ), ); } // Bundles must provide a human readable name so we can create help and error // messages, and the path to attach Field admin pages to. foreach (type_get_names() as $type => $name) { $return['node']['bundles'][$type] = array( 'label' => $name, 'admin' => array( 'path' => 'admin/structure/types/manage/%node_type', 'real path' => 'admin/structure/types/manage/' . str_replace('_', '-', $type), 'bundle argument' => 4, 'access arguments' => array('administer content types'), ), ); } return $return; } /** * @implements field__display_alter__ENTITY_TYPE() */ function field__display_alter__node(&$display, $context) { // Hide field labels in search index. if ($context['view_mode'] == 'search_index') { $display['label'] = 'hidden'; } } /** * Entity uri callback. */ function uri($node) { return array( 'path' => 'node/' . $node->nid, ); } /** * @implements system__admin_paths() */ function system__admin_paths() { $paths = array( 'node/*/edit' => TRUE, 'node/*/delete' => TRUE, 'node/*/revisions' => TRUE, 'node/*/revisions/*/revert' => TRUE, 'node/*/revisions/*/delete' => TRUE, 'node/add' => TRUE, 'node/add/*' => TRUE, ); return $paths; } /** * Gathers a listing of links to nodes. * * @public * * @param $result * A DB result object from a query to fetch node entities. If your query * joins the node_comment_statistics table so that the * comment_count field is available, a title attribute will * be added to show the number of comments. * @param $title * A heading for the resulting list. * * @return * A renderable array containing a list of linked node titles fetched from * $result, or FALSE if there are no rows in $result. */ function title_list($result, $title = NULL) { $items = array(); $num_rows = FALSE; foreach ($result as $node) { $items[] = drupal\l($node->title, 'node/' . $node->nid, !empty($node->comment_count) ? array('attributes' => array('title' => drupal\format_plural($node->comment_count, '1 comment', '@count comments'))) : array()); $num_rows = TRUE; } return $num_rows ? array('#theme' => 'item_list__node', '#items' => $items, '#title' => $title) : FALSE; } /** * Update the 'last viewed' timestamp of the specified node for current user. * * @public * * @param $node * A node object. */ function tag_new($node) { global $user; if ($user->uid) { db\merge('history') ->key(array( 'uid' => $user->uid, 'nid' => $node->nid, )) ->fields(array('timestamp' => REQUEST_TIME)) ->execute(); } } /** * Retrieves the timestamp at which the current user last viewed the * specified node. */ function last_viewed($nid) { global $user; $history = &drupal\static(__FUNCTION__, array()); if (!isset($history[$nid])) { $history[$nid] = db\query("SELECT timestamp FROM {history} WHERE uid = :uid AND nid = :nid", array(':uid' => $user->uid, ':nid' => $nid))->fetchObject(); } return (isset($history[$nid]->timestamp) ? $history[$nid]->timestamp : 0); } /** * Decide on the type of marker to be displayed for a given node. * * @public * * @param $nid * Node ID whose history supplies the "last viewed" timestamp. * @param $timestamp * Time which is compared against node's "last viewed" timestamp. * @return * One of the MARK constants. */ function mark($nid, $timestamp) { global $user; $cache = &drupal\static(__FUNCTION__, array()); if (!$user->uid) { return MARK_READ; } if (!isset($cache[$nid])) { $cache[$nid] = last_viewed($nid); } if ($cache[$nid] == 0 && $timestamp > NODE_NEW_LIMIT) { return MARK_NEW; } elseif ($timestamp > $cache[$nid] && $timestamp > NODE_NEW_LIMIT) { return MARK_UPDATED; } return MARK_READ; } /** * Extract the type name. * * @param $node * Either a string or object, containing the node type information. * * @return * Node type of the passed in data. */ function extract_type($node) { return is_object($node) ? $node->type : $node; } /** * Returns a list of all the available node types. * * This list can include types that are queued for addition or deletion. * See types_build() for details. * * @public * * @return * An array of node types, as objects, keyed by the type. * * @see type_get_type() */ function type_get_types() { return types_build()->types; } /** * Returns the node type of the passed node or node type string. * * @public * * @param $node * A node object or string that indicates the node type to return. * * @return * A single node type, as an object, or FALSE if the node type is not found. * The node type is an object containing fields from hook_node_info() return * values, as well as the field 'type' (the machine-readable type) and other * fields used internally and defined in types_build(), * hook_node_info(), and node_type_set_defaults(). */ function type_get_type($node) { $type = extract_type($node); $types = types_build()->types; return isset($types[$type]) ? $types[$type] : FALSE; } /** * Returns the node type base of the passed node or node type string. * * The base indicates which module implements this node type and is used to * execute node-type-specific hooks. For types defined in the user interface * and managed by node.module, the base is 'node_content'. * * @public * * @param $node * A node object or string that indicates the node type to return. * * @return * The node type base or FALSE if the node type is not found. * * @see node_invoke() */ function type_get_base($node) { $type = extract_type($node); $types = types_build()->types; return isset($types[$type]) && isset($types[$type]->base) ? $types[$type]->base : FALSE; } /** * Returns a list of available node type names. * * This list can include types that are queued for addition or deletion. * See types_build() for details. * * @public * * @return * An array of node type names, keyed by the type. */ function type_get_names() { return types_build()->names; } /** * Returns the node type name of the passed node or node type string. * * @public * * @param $node * A node object or string that indicates the node type to return. * * @return * The node type name or FALSE if the node type is not found. */ function type_get_name($node) { $type = extract_type($node); $types = types_build()->names; return isset($types[$type]) ? $types[$type] : FALSE; } /** * Updates the database cache of node types. * * All new module-defined node types are saved to the database via a call to * node_type_save(), and obsolete ones are deleted via a call to * node_type_delete(). See types_build() for an explanation of the new * and obsolete types. * * @public */ function types_rebuild() { types_build(TRUE); } /** * Menu argument loader: loads a node type by string. * * @param $name * The machine-readable name of a node type to load, where '_' is replaced * with '-'. * * @return * A node type object or FALSE if $name does not exist. */ function type_load($name) { return type_get_type(strtr($name, array('-' => '_'))); } /** * Saves a node type to the database. * * @public * * @param $info * The node type to save, as an object. * * @return * Status flag indicating outcome of the operation. */ function type_save($info) { $is_existing = FALSE; $existing_type = !empty($info->old_type) ? $info->old_type : $info->type; $is_existing = (bool) db\query_range('SELECT 1 FROM {node_type} WHERE type = :type', 0, 1, array(':type' => $existing_type))->fetchField(); $type = type_set_defaults($info); $fields = array( 'type' => (string) $type->type, 'name' => (string) $type->name, 'base' => (string) $type->base, 'has_title' => (int) $type->has_title, 'title_label' => (string) $type->title_label, 'description' => (string) $type->description, 'help' => (string) $type->help, 'custom' => (int) $type->custom, 'modified' => (int) $type->modified, 'locked' => (int) $type->locked, 'disabled' => (int) $type->disabled, 'module' => $type->module, ); if ($is_existing) { db\update('node_type') ->fields($fields) ->condition('type', $existing_type) ->execute(); if (!empty($type->old_type) && $type->old_type != $type->type) { field\attach_rename_bundle('node', $type->old_type, $type->type); } drupal\invoke_all('node', 'type_update', $type); $status = SAVED_UPDATED; } else { $fields['orig_type'] = (string) $type->orig_type; db\insert('node_type') ->fields($fields) ->execute(); field\attach_create_bundle('node', $type->type); drupal\invoke_all('node', 'type_insert', $type); $status = SAVED_NEW; } // Clear the node type cache. drupal\static_reset('drupal\node\types_build'); return $status; } /** * Add default body field to a node type. * * @public * * @param $type * A node type object. * @param $label * The label for the body instance. * * @return * Body field instance. */ function add_body_field($type, $label = 'Body') { // Add or remove the body field, as needed. $field = field\info_field('body'); $instance = field\info_instance('node', 'body', $type->type); if (empty($field)) { $field = array( 'field_name' => 'body', 'type' => 'text_with_summary', 'entity_types' => array('node'), 'translatable' => TRUE, ); $field = field\create_field($field); } if (empty($instance)) { $instance = array( 'field_name' => 'body', 'entity_type' => 'node', 'bundle' => $type->type, 'label' => $label, 'widget_type' => 'text_textarea_with_summary', 'settings' => array('display_summary' => TRUE), 'display' => array( 'default' => array( 'label' => 'hidden', 'type' => 'text_default', ), 'teaser' => array( 'label' => 'hidden', 'type' => 'text_summary_or_trimmed', ), ), ); $instance = field\create_instance($instance); } return $instance; } /** * @implements field__extra_fields() */ function field__extra_fields() { $extra = array(); foreach (type_get_types() as $type) { if ($type->has_title) { $extra['node'][$type->type] = array( 'form' => array( 'title' => array( 'label' => $type->title_label, 'description' => drupal\t("Node module element"), 'weight' => -5, ), ), ); } } return $extra; } /** * Deletes a node type from the database. * * @public * * @param $type * The machine-readable name of the node type to be deleted. */ function type_delete($type) { $info = type_get_type($type); db\delete('node_type') ->condition('type', $type) ->execute(); field\attach_delete_bundle('node', $type); drupal\invoke_all('node', 'type_delete', $info); // Clear the node type cache. drupal\static_reset('drupal\node\types_build'); } /** * Updates all nodes of one type to be of another type. * * @public * * @param $old_type * The current node type of the nodes. * @param $type * The new node type of the nodes. * * @return * The number of nodes whose node type field was modified. */ function type_update_nodes($old_type, $type) { return db\update('node') ->fields(array('type' => $type)) ->condition('type', $old_type) ->execute(); } /** * Builds and returns the list of available node types. * * The list of types is built by invoking hook_node_info() on all modules and * comparing this information with the node types in the {node_type} table. * These two information sources are not synchronized during module installation * until node_types_rebuild() is called. * * @param $rebuild * TRUE to rebuild node types. Equivalent to calling node_types_rebuild(). * @return * Associative array with two components: * - names: Associative array of the names of node types, keyed by the type. * - types: Associative array of node type objects, keyed by the type. * Both of these arrays will include new types that have been defined by * hook_node_info() implementations but not yet saved in the {node_type} * table. These are indicated in the type object by $type->is_new being set * to the value 1. These arrays will also include obsolete types: types that * were previously defined by modules that have now been disabled, or for * whatever reason are no longer being defined in hook_node_info() * implementations, but are still in the database. These are indicated in the * type object by $type->disabled being set to TRUE. */ function types_build($rebuild = FALSE) { if (!$rebuild) { $_node_types = &drupal\static(__FUNCTION__); if (is_object($_node_types)) { return $_node_types; } } $_node_types = (object)array('types' => array(), 'names' => array()); foreach (drupal\implements('node', 'info') as $module) { $info_array = drupal\invoke($module, 'node', 'info'); foreach ($info_array as $type => $info) { $info['type'] = $type; $_node_types->types[$type] = type_set_defaults($info); $_node_types->types[$type]->module = $module; $_node_types->names[$type] = $info['name']; } } $query = db\select('node_type', 'nt') ->addTag('translatable') ->addTag('node_type_access') ->fields('nt') ->orderBy('nt.type', 'ASC'); if (!$rebuild) { $query->condition('disabled', 0); } foreach ($query->execute() as $type_object) { $type_db = $type_object->type; // Original disabled value. $disabled = $type_object->disabled; // Check for node types from disabled modules and mark their types for removal. // Types defined by the node module in the database (rather than by a separate // module using hook_node_info) have a base value of 'node_content'. The isset() // check prevents errors on old (pre-Drupal 7) databases. if (isset($type_object->base) && $type_object->base != 'node_content' && empty($info_array[$type_db])) { $type_object->disabled = TRUE; } if (isset($info_array[$type_db])) { $type_object->disabled = FALSE; } if (!isset($_node_types->types[$type_db]) || $type_object->modified) { $_node_types->types[$type_db] = $type_object; $_node_types->names[$type_db] = $type_object->name; if ($type_db != $type_object->orig_type) { unset($_node_types->types[$type_object->orig_type]); unset($_node_types->names[$type_object->orig_type]); } } $_node_types->types[$type_db]->disabled = $type_object->disabled; $_node_types->types[$type_db]->disabled_changed = $disabled != $type_object->disabled; } if ($rebuild) { foreach ($_node_types->types as $type => $type_object) { if (!empty($type_object->is_new) || !empty($type_object->disabled_changed)) { node_type_save($type_object); } } } asort($_node_types->names); return $_node_types; } /** * Set the default values for a node type. * * The defaults are for a type defined through hook_node_info(). * When populating a custom node type $info should have the 'custom' * key set to 1. * * @public * * @param $info * An object or array containing values to override the defaults. * * @return * A node type object. */ function type_set_defaults($info = array()) { $type = &drupal\static(__FUNCTION__); if (!isset($type)) { $type = new stdClass(); $type->type = ''; $type->name = ''; $type->base = ''; $type->description = ''; $type->help = ''; $type->custom = 0; $type->modified = 0; $type->locked = 1; $type->disabled = 0; $type->is_new = 1; $type->has_title = 1; $type->title_label = 'Title'; } $new_type = clone $type; $info = (array) $info; foreach ($info as $key => $data) { $new_type->$key = $data; } // If the type has no title, set an empty label. if (!$new_type->has_title) { $new_type->title_label = ''; } if (empty($new_type->module)) { $new_type->module = $new_type->base == 'node_content' ? 'node' : ''; } $new_type->orig_type = isset($info['type']) ? $info['type'] : ''; return $new_type; } /** * @implements rdf__mapping() */ function rdf__mapping() { return array( array( 'type' => 'node', 'bundle' => RDF_DEFAULT_BUNDLE, 'mapping' => array( 'rdftype' => array('sioc:Item', 'foaf:Document'), 'title' => array( 'predicates' => array('dc:title'), ), 'created' => array( 'predicates' => array('dc:date', 'dc:created'), 'datatype' => 'xsd:dateTime', 'callback' => 'date_iso8601', ), 'changed' => array( 'predicates' => array('dc:modified'), 'datatype' => 'xsd:dateTime', 'callback' => 'date_iso8601', ), 'body' => array( 'predicates' => array('content:encoded'), ), 'uid' => array( 'predicates' => array('sioc:has_creator'), 'type' => 'rel', ), 'name' => array( 'predicates' => array('foaf:name'), ), 'comment_count' => array( 'predicates' => array('sioc:num_replies'), 'datatype' => 'xsd:integer', ), 'last_activity' => array( 'predicates' => array('sioc:last_activity_date'), 'datatype' => 'xsd:dateTime', 'callback' => 'date_iso8601', ), ), ), ); } /** * Determine whether a node hook exists. * * @public * * @param $node * A node object or a string containing the node type. * @param $hook * A string containing the name of the hook. * @return * TRUE if the $hook exists in the node type of $node. */ function hook($node, $hook) { $base = type_get_base($node); return drupal\hook($base, 'node', $hook); } /** * Invoke a node hook. * * @public * * @param $node * A node object or a string containing the node type. * @param $hook * A string containing the name of the hook. * @param $a2, $a3, $a4 * Arguments to pass on to the hook, after the $node argument. * @return * The returned value of the invoked hook. */ function invoke($node, $hook, $a2 = NULL, $a3 = NULL, $a4 = NULL) { if (hook($node, $hook)) { $base = type_get_base($node); $function = $base . '\node__' . $hook; return ($function($node, $a2, $a3, $a4)); } } /** * Load node entities from the database. * * This function should be used whenever you need to load more than one node * from the database. Nodes are loaded into memory and will not require * database access if loaded again during the same page request. * * @public * * @see entity_load() * * @param $nids * An array of node IDs. * @param $conditions * An array of conditions on the {node} table in the form 'field' => $value. * @param $reset * Whether to reset the internal node_load cache. * * @return * An array of node objects indexed by nid. */ function load_multiple($nids = array(), $conditions = array(), $reset = FALSE) { return drupal\entity_load('node', $nids, $conditions, $reset); } /** * Load a node object from the database. * * @public * * @param $nid * The node ID. * @param $vid * The revision ID. * @param $reset * Whether to reset the load_multiple cache. * * @return * A fully-populated node object. */ function load($nid = NULL, $vid = NULL, $reset = FALSE) { $nids = (isset($nid) ? array($nid) : array()); $conditions = (isset($vid) ? array('vid' => $vid) : array()); $node = load_multiple($nids, $conditions, $reset); return $node ? reset($node) : FALSE; } /** * Prepares a node object for editing. * * Fills in a few default values, and then invokes hook_prepare() on the node * type module, and hook_node_prepare() on all modules. */ function object_prepare($node) { // Set up default values, if required. $node_options = drupal\variable_get('node_options_' . $node->type, array('status', 'promote')); // If this is a new node, fill in the default values. if (!isset($node->nid) || isset($node->is_new)) { foreach (array('status', 'promote', 'sticky') as $key) { // Multistep node forms might have filled in something already. if (!isset($node->$key)) { $node->$key = (int) in_array($key, $node_options); } } global $user; $node->uid = $user->uid; $node->created = REQUEST_TIME; } else { $node->date = drupal\format_date($node->created, 'custom', 'Y-m-d H:i:s O'); // Remove the log message from the original node object. $node->log = NULL; } // Always use the default revision setting. $node->revision = in_array('revision', $node_options); invoke($node, 'prepare'); drupal\invoke_all('node', 'prepare', $node); } /** * Perform validation checks on the given node. */ function validate($node, $form, &$form_state) { $type = type_get_type($node); if (isset($node->nid) && (last_changed($node->nid) > $node->changed)) { drupal\form_set_error('changed', drupal\t('The content on this page has either been modified by another user, or you have already submitted modifications using this form. As a result, your changes cannot be saved.')); } // Validate the "authored by" field. if (!empty($node->name) && !($account = user\load_by_name($node->name))) { // The use of empty() is mandatory in the context of usernames // as the empty string denotes the anonymous user. In case we // are dealing with an anonymous user we set the user ID to 0. drupal\form_set_error('name', drupal\t("The username %name does not exist.", array('%name' => $node->name))); } // Validate the "authored on" field. if (!empty($node->date) && strtotime($node->date) === FALSE) { drupal\form_set_error('date', drupal\t('You have to specify a valid date.')); } // Invoke hook node__validate. Can't use invoke() or drupal\invoke_all(), // because $form_state must be receivable by reference. foreach (drupal\implements('node', 'validate') as $module) { $function = $module . '\node__validate'; $function($node, $form, $form_state); } } /** * Prepare node for saving by populating author and creation date. */ function submit($node) { global $user; // A user might assign the node author by entering a user name in the node // form, which we then need to translate to a user ID. if (isset($node->name)) { if ($account = user\load_by_name($node->name)) { $node->uid = $account->uid; } else { $node->uid = 0; } } $node->created = !empty($node->date) ? strtotime($node->date) : REQUEST_TIME; $node->validated = TRUE; return $node; } /** * Save changes to a node or add a new node. * * @public * * @param $node * The $node object to be saved. If $node->nid is * omitted (or $node->is_new is TRUE), a new node will be added. */ function save($node) { $transaction = db\transaction(); try { field\attach_presave('node', $node); global $user; // Determine if we will be inserting a new node. if (!isset($node->is_new)) { $node->is_new = empty($node->nid); } // Set the timestamp fields. if (empty($node->created)) { $node->created = REQUEST_TIME; } // The changed timestamp is always updated for bookkeeping purposes, // for example: revisions, searching, etc. $node->changed = REQUEST_TIME; $node->timestamp = REQUEST_TIME; $update_node = TRUE; // Let modules modify the node before it is saved to the database. drupal\invoke_all('node', 'presave', $node); if ($node->is_new || !empty($node->revision)) { // When inserting either a new node or a new node revision, $node->log // must be set because {node_revision}.log is a text column and therefore // cannot have a default value. However, it might not be set at this // point (for example, if the user submitting a node form does not have // permission to create revisions), so we ensure that it is at least an // empty string in that case. // @todo: Make the {node_revision}.log column nullable so that we can // remove this check. if (!isset($node->log)) { $node->log = ''; } } elseif (empty($node->log)) { // If we are updating an existing node without adding a new revision, we // need to make sure $node->log is unset whenever it is empty. As long as // $node->log is unset, drupal\write_record() will not attempt to update // the existing database column when re-saving the revision; therefore, // this code allows us to avoid clobbering an existing log entry with an // empty one. unset($node->log); } // When saving a new node revision, unset any existing $node->vid so as to // ensure that a new revision will actually be created, then store the old // revision ID in a separate property for use by node hook implementations. if (!$node->is_new && !empty($node->revision) && $node->vid) { $node->old_vid = $node->vid; unset($node->vid); } // Save the node and node revision. if ($node->is_new) { // For new nodes, save new records for both the node itself and the node // revision. drupal\write_record('node', $node); save_revision($node, $user->uid); $op = 'insert'; } else { // For existing nodes, update the node record which matches the value of // $node->nid. drupal\write_record('node', $node, 'nid'); // Then, if a new node revision was requested, save a new record for // that; otherwise, update the node revision record which matches the // value of $node->vid. if (!empty($node->revision)) { save_revision($node, $user->uid); } else { save_revision($node, $user->uid, 'vid'); $update_node = FALSE; } $op = 'update'; } if ($update_node) { db\update('node') ->fields(array('vid' => $node->vid)) ->condition('nid', $node->nid) ->execute(); } // Call the node specific callback (if any). This can be // node_invoke($node, 'insert') or // node_invoke($node, 'update'). invoke($node, $op); // Save fields. $function = "field\attach_$op"; $function('node', $node); drupal\invoke_all('node', $op, $node); drupal\invoke_all('entity', $op, $node, 'node'); // Update the node access table for this node. There's no need to delete // existing records if the node is new. $delete = $op == 'update'; access_acquire_grants($node, $delete); // Clear internal properties. unset($node->is_new); // Ignore slave server temporarily to give time for the // saved node to be propagated to the slave. db\ignore_slave(); } catch (Exception $e) { $transaction->rollback('node'); drupal\watchdog_exception('node', $e); throw $e; } } /** * Helper function to save a revision with the uid of the current user. * * Node is taken by reference, because drupal\write_record() updates the * $node with the revision id, and we need to pass that back to the caller. */ function save_revision($node, $uid, $update = NULL) { $temp_uid = $node->uid; $node->uid = $uid; if (isset($update)) { drupal\write_record('node_revision', $node, $update); } else { drupal\write_record('node_revision', $node); } $node->uid = $temp_uid; } /** * Delete a node. * * @public * * @param $nid * A node ID. */ function delete($nid) { delete_multiple(array($nid)); } /** * Delete multiple nodes. * * @public * * @param $nids * An array of node IDs. */ function delete_multiple($nids) { if (!empty($nids)) { $nodes = load_multiple($nids, array()); foreach ($nodes as $nid => $node) { // Call the node-specific callback (if any): invoke($node, 'delete'); drupal\invoke_all('node', 'delete', $node); drupal\invoke_all('entity', 'delete', $node, 'node'); field\attach_delete('node', $node); // Remove this node from the search index if needed. // This code is implemented in node module rather than in search module, // because node module is implementing search module's API, not the other // way around. if (drupal\module_exists('search')) { search\reindex($nid, 'node'); } } // Delete after calling hooks so that they can query node tables as needed. db\delete('node') ->condition('nid', $nids, 'IN') ->execute(); db\delete('node_revision') ->condition('nid', $nids, 'IN') ->execute(); db\delete('history') ->condition('nid', $nids, 'IN') ->execute(); db\delete('node_access') ->condition('nid', $nids, 'IN') ->execute(); // Clear the page and block and load_multiple caches. drupal\cache_clear_all(); drupal\entity_get_controller('node')->resetCache(); } } /** * Delete a node revision. * * @public * * @param $revision_id * The revision ID to delete. */ function revision_delete($revision_id) { if ($revision = load(NULL, $revision_id)) { // Prevent deleting the current revision. $node = load($revision->nid); if ($revision_id == $node->vid) { return FALSE; } db\delete('node_revision') ->condition('nid', $revision->nid) ->condition('vid', $revision->vid) ->execute(); drupal\invoke_all('node', 'revision_delete', $revision); field\attach_delete_revision('node', $revision); return TRUE; } return FALSE; } /** * Generate an array for rendering the given node. * * @public * * @param $node * A node object. * @param $view_mode * View mode, e.g. 'full', 'teaser'... * @param $langcode * (optional) A language code to use for rendering. Defaults to the global * content language of the current request. * * @return * An array as expected by drupal\render(). */ function view($node, $view_mode = 'full', $langcode = NULL) { if (!isset($langcode)) { $langcode = $GLOBALS['language_content']->language; } // Populate $node->content with a render() array. build_content($node, $view_mode, $langcode); $build = $node->content; // We don't need duplicate rendering info in node->content. unset($node->content); $build += array( '#theme' => 'node', '#node' => $node, '#view_mode' => $view_mode, '#language' => $langcode, ); // Add contextual links for this node, except when the node is already being // displayed on its own page. Modules may alter this behavior (for example, // to restrict contextual links to certain view modes) by implementing // hook_node_view_alter(). if (!empty($node->nid) && !($view_mode == 'full' && is_page($node))) { $build['#contextual_links']['node'] = array('node', array($node->nid)); } // Allow modules to modify the structured node. $type = 'node'; drupal\alter(array('node_view', 'entity_view'), $build, $type); return $build; } /** * Builds a structured array representing the node's content. * * @public * * The content built for the node (field values, comments, file attachments or * other node components) will vary depending on the $view_mode parameter. * * Drupal core defines the following view modes for nodes, with the following * default use cases: * - full (default): node is being displayed on its own page (node/123) * - teaser: node is being displayed on the default home page listing, on * taxonomy listing pages, or on blog listing pages. * - rss: node displayed in an RSS feed. * If search.module is enabled: * - search_index: node is being indexed for search. * - search_result: node is being displayed as a search result. * If book.module is enabled: * - print: node is being displayed in print-friendly mode. * Contributed modules might define additional view modes, or use existing * view modes in additional contexts. * * @param $node * A node object. * @param $view_mode * View mode, e.g. 'full', 'teaser'... * @param $langcode * (optional) A language code to use for rendering. Defaults to the global * content language of the current request. */ function build_content($node, $view_mode = 'full', $langcode = NULL) { if (!isset($langcode)) { $langcode = $GLOBALS['language_content']->language; } // Remove previously built content, if exists. $node->content = array(); // The 'view' hook can be implemented to overwrite the default function // to display nodes. if (hook($node, 'view')) { $node = invoke($node, 'view', $view_mode); } // Build fields content. // In case of a multiple view, view_multiple() already ran the // 'prepare_view' step. An internal flag prevents the operation from running // twice. field\attach_prepare_view('node', array($node->nid => $node), $view_mode); drupal\entity_prepare_view('node', array($node->nid => $node)); $node->content += field\attach_view('node', $node, $view_mode, $langcode); // Always display a read more link on teasers because we have no way // to know when a teaser view is different than a full view. $links = array(); if ($view_mode == 'teaser') { $links['node-readmore'] = array( 'title' => drupal\t('Read more'), 'href' => 'node/' . $node->nid, 'attributes' => array('rel' => 'tag', 'title' => strip_tags($node->title)) ); } $node->content['links'] = array( '#theme' => 'links__node', '#links' => $links, '#attributes' => array('class' => array('links', 'inline')), ); // Allow modules to make their own additions to the node. drupal\invoke_all('node', 'view', $node, $view_mode, $langcode); drupal\invoke_all('entity', 'view', $node, 'node', $view_mode, $langcode); } /** * Generate an array which displays a node detail page. * * @public * * @param $node * A node object. * @param $message * A flag which sets a page title relevant to the revision being viewed. * @return * A $page element suitable for use by drupal\page_render(). */ function show($node, $message = FALSE) { if ($message) { drupal\set_title(t('Revision of %title from %date', array('%title' => $node->title, '%date' => format_date($node->revision_timestamp))), PASS_THROUGH); } // Update the history table, stating that this user viewed this node. tag_new($node); // For markup consistency with other pages, use view_multiple() rather than view(). return view_multiple(array($node->nid => $node), 'full'); } /** * Returns whether the current page is the full page view of the passed in node. * * @public * * @param $node * A node object. */ function is_page($node) { $page_node = drupal\menu_get_object(); return (!empty($page_node) ? $page_node->nid == $node->nid : FALSE); } /** * Process variables for node.tpl.php * * Most themes utilize their own copy of node.tpl.php. The default is located * inside "modules/node/node.tpl.php". Look in there for the full list of * variables. * * The $variables array contains the following arguments: * - $node * - $view_mode * - $page * * @see node.tpl.php */ function node__theme__preprocess_node(&$variables) { $variables['view_mode'] = $variables['elements']['#view_mode']; // Provide a distinct $teaser boolean. $variables['teaser'] = $variables['view_mode'] == 'teaser'; $variables['node'] = $variables['elements']['#node']; $node = $variables['node']; $variables['date'] = drupal\format_date($node->created); $variables['name'] = drupal\theme('username', array('account' => $node)); $uri = drupal\entity_uri('node', $node); $variables['node_url'] = drupal\url($uri['path'], $uri['options']); $variables['title'] = drupal\check_plain($node->title); $variables['page'] = $variables['view_mode'] == 'full' && is_page($node); if (!empty($node->in_preview)) { unset($node->content['links']); } // Flatten the node object's member fields. $variables = array_merge((array) $node, $variables); // Helpful $content variable for templates. foreach (element_children($variables['elements']) as $key) { $variables['content'][$key] = $variables['elements'][$key]; } // Make the field variables available with the appropriate language. field\attach_preprocess('node', $node, $variables['content'], $variables); // Display post information only on certain node types. if (drupal\variable_get('node_submitted_' . $node->type, TRUE)) { $variables['display_submitted'] = TRUE; $variables['user_picture'] = drupal\theme_get_setting('toggle_node_user_picture') ? drupal\theme('user_picture', array('account' => $node)) : ''; } else { $variables['display_submitted'] = FALSE; $variables['user_picture'] = ''; } // Gather node classes. $variables['classes_array'][] = drupal\html_class('node-' . $node->type); if ($variables['promote']) { $variables['classes_array'][] = 'node-promoted'; } if ($variables['sticky']) { $variables['classes_array'][] = 'node-sticky'; } if (!$variables['status']) { $variables['classes_array'][] = 'node-unpublished'; } if ($variables['teaser']) { $variables['classes_array'][] = 'node-teaser'; } if (isset($variables['preview'])) { $variables['classes_array'][] = 'node-preview'; } // Clean up name so there are no underscores. $variables['theme_hook_suggestions'][] = 'node__' . $node->type; $variables['theme_hook_suggestions'][] = 'node__' . $node->nid; } /** * @implements system__permission() */ function system__permission() { $perms = array( 'bypass node access' => array( 'title' => drupal\t('Bypass content access control'), 'description' => drupal\t('View, edit and delete all content regardless of permission restrictions.'), 'restrict access' => TRUE, ), 'administer content types' => array( 'title' => drupal\t('Administer content types'), 'restrict access' => TRUE, ), 'administer nodes' => array( 'title' => drupal\t('Administer content'), 'restrict access' => TRUE, ), 'access content overview' => array( 'title' => drupal\t('Access the content overview page'), ), 'access content' => array( 'title' => drupal\t('View published content'), ), 'view own unpublished content' => array( 'title' => drupal\t('View own unpublished content'), ), 'view revisions' => array( 'title' => drupal\t('View content revisions'), ), 'revert revisions' => array( 'title' => drupal\t('Revert content revisions'), ), 'delete revisions' => array( 'title' => drupal\t('Delete content revisions'), ), ); // Generate standard node permissions for all applicable node types. foreach (permissions_get_configured_types() as $type) { $perms += list_permissions($type); } return $perms; } /** * Gather the rankings from the the hook_ranking implementations. * * @param $query * A query object that has been extended with the Search DB Extender. */ function rankings(SelectQueryExtender $query) { if ($ranking = drupal\invoke_all('node', 'ranking')) { $tables = &$query->getTables(); foreach ($ranking as $rank => $values) { if ($node_rank = drupal\variable_get('node_rank_' . $rank, 0)) { // If the table defined in the ranking isn't already joined, then add it. if (isset($values['join']) && !isset($tables[$values['join']['alias']])) { $query->addJoin($values['join']['type'], $values['join']['table'], $values['join']['alias'], $values['join']['on']); } $arguments = isset($values['arguments']) ? $values['arguments'] : array(); $query->addScore($values['score'], $arguments, $node_rank); } } } } /** * @implements search__info() */ function search__info() { return array( 'title' => 'Content', 'path' => 'node', ); } /** * @implements search__access() */ function search__access() { return user\access('access content'); } /** * @implements search__reset() */ function search__reset() { db\update('search_dataset') ->fields(array('reindex' => REQUEST_TIME)) ->condition('type', 'node') ->execute(); } /** * @implements search__status() */ function search__status() { $total = db\query('SELECT COUNT(*) FROM {node}')->fetchField(); $remaining = db\query("SELECT COUNT(*) FROM {node} n LEFT JOIN {search_dataset} d ON d.type = 'node' AND d.sid = n.nid WHERE d.sid IS NULL OR d.reindex <> 0")->fetchField(); return array('remaining' => $remaining, 'total' => $total); } /** * @implements search__admin() */ function search__admin() { // Output form for defining rank factor weights. $form['content_ranking'] = array( '#type' => 'fieldset', '#title' => drupal\t('Content ranking'), ); $form['content_ranking']['#theme'] = 'node_search_admin'; $form['content_ranking']['info'] = array( '#value' => '' . drupal\t('The following numbers control which properties the content search should favor when ordering the results. Higher numbers mean more influence, zero means the property is ignored. Changing these numbers does not require the search index to be rebuilt. Changes take effect immediately.') . '' ); // Note: reversed to reflect that higher number = higher ranking. $options = drupal\map_assoc(range(0, 10)); foreach (drupal\invoke_all('ranking') as $var => $values) { $form['content_ranking']['factors']['node_rank_' . $var] = array( '#title' => $values['title'], '#type' => 'select', '#options' => $options, '#default_value' => drupal\variable_get('node_rank_' . $var, 0), ); } return $form; } /** * @implements search__execute() */ function search__execute($keys = NULL, $conditions = NULL) { // Build matching conditions $query = db\select('search_index', 'i', array('target' => 'slave'))->extend('SearchQuery')->extend('PagerDefault'); $query->join('node', 'n', 'n.nid = i.sid'); $query ->condition('n.status', 1) ->addTag('node_access') ->searchExpression($keys, 'node'); // Insert special keywords. $query->setOption('type', 'n.type'); $query->setOption('language', 'n.language'); if ($query->setOption('term', 'ti.tid')) { $query->join('taxonomy_index', 'ti', 'n.nid = ti.nid'); } // Only continue if the first pass query matches. if (!$query->executeFirstPass()) { return array(); } // Add the ranking expressions. rankings($query); // Load results. $find = $query ->limit(10) ->execute(); $results = array(); foreach ($find as $item) { // Render the node. $node = load($item->sid); $build = view($node, 'search_result'); unset($build['#theme']); $node->rendered = drupal\render($build); // Fetch comments for snippet. $node->rendered .= ' ' . drupal\invoke('comment', 'comment', 'node_update_index', $node); $extra = drupal\invoke_all('node', 'search_result', $node); $uri = drupal\entity_uri('node', $node); $results[] = array( 'link' => drupal\url($uri['path'], array_merge($uri['options'], array('absolute' => TRUE))), 'type' => drupal\check_plain(type_get_name($node)), 'title' => $node->title, 'user' => drupal\theme('system', 'username', array('account' => $node)), 'date' => $node->changed, 'node' => $node, 'extra' => $extra, 'score' => $item->calculated_score, 'snippet' => search\excerpt($keys, $node->rendered), ); } return $results; } /** * @implements search__ranking() */ function search__ranking() { // Create the ranking array and add the basic ranking options. $ranking = array( 'relevance' => array( 'title' => drupal\t('Keyword relevance'), // Average relevance values hover around 0.15 'score' => 'i.relevance', ), 'sticky' => array( 'title' => drupal\t('Content is sticky at top of lists'), // The sticky flag is either 0 or 1, which is automatically normalized. 'score' => 'n.sticky', ), 'promote' => array( 'title' => drupal\t('Content is promoted to the front page'), // The promote flag is either 0 or 1, which is automatically normalized. 'score' => 'n.promote', ), ); // Add relevance based on creation or changed date. if ($node_cron_last = drupal\variable_get('node_cron_last', 0)) { $ranking['recent'] = array( 'title' => drupal\t('Recently posted'), // Exponential decay with half-life of 6 months, starting at last indexed node 'score' => 'POW(2.0, (GREATEST(n.created, n.changed) - :node_cron_last) * 6.43e-8)', 'arguments' => array(':node_cron_last' => $node_cron_last), ); } return $ranking; } /** * @implements user__cancel() */ function user__cancel($edit, $account, $method) { switch ($method) { case 'user_cancel_block_unpublish': // Unpublish nodes (current revisions). drupal\module_load_include('inc', 'node', 'node.admin'); $nodes = db\select('node', 'n') ->fields('n', array('nid')) ->condition('uid', $account->uid) ->execute() ->fetchCol(); mass_update($nodes, array('status' => 0)); break; case 'user_cancel_reassign': // Anonymize nodes (current revisions). drupal\module_load_include('inc', 'node', 'node.admin'); $nodes = db\select('node', 'n') ->fields('n', array('nid')) ->condition('uid', $account->uid) ->execute() ->fetchCol(); mass_update($nodes, array('uid' => 0)); // Anonymize old revisions. db\update('node_revision') ->fields(array('uid' => 0)) ->condition('uid', $account->uid) ->execute(); // Clean history. db\delete('history') ->condition('uid', $account->uid) ->execute(); break; } } /** * @implements user__delete() */ function user__delete($account) { // Delete nodes (current revisions). // @todo Introduce mass_delete() or make mass_update() more flexible. $nodes = db\select('node', 'n') ->fields('n', array('nid')) ->condition('uid', $account->uid) ->execute() ->fetchCol(); delete_multiple($nodes); // Delete old revisions. $revisions = db\query('SELECT vid FROM {node_revision} WHERE uid = :uid', array(':uid' => $account->uid))->fetchCol(); foreach ($revisions as $revision) { revision_delete($revision); } // Clean history. db\delete('history') ->condition('uid', $account->uid) ->execute(); } /** * Returns HTML for the content ranking part of the search settings admin page. * * @param $variables * An associative array containing: * - form: A render element representing the form. * * @ingroup themeable */ function node__theme__search_admin($variables) { $form = $variables['form']; $output = drupal\render($form['info']); $header = array(t('Factor'), drupal\t('Weight')); foreach (drupal\element_children($form['factors']) as $key) { $row = array(); $row[] = $form['factors'][$key]['#title']; $form['factors'][$key]['#title_display'] = 'invisible'; $row[] = drupal\render($form['factors'][$key]); $rows[] = $row; } $output .= drupal\theme('table', array('header' => $header, 'rows' => $rows)); $output .= drupal\render_children($form); return $output; } function revision_access($node, $op = 'view') { $access = &drupal\static(__FUNCTION__, array()); if (!isset($access[$node->vid])) { // To save additional calls to the database, return early if the user // doesn't have the required permissions. $map = array('view' => 'view revisions', 'update' => 'revert revisions', 'delete' => 'delete revisions'); if (isset($map[$op]) && (!user\access($map[$op]) && !user\access('administer nodes'))) { $access[$node->vid] = FALSE; return FALSE; } $node_current_revision = load($node->nid); $is_current_revision = $node_current_revision->vid == $node->vid; // There should be at least two revisions. If the vid of the given node // and the vid of the current revision differs, then we already have two // different revisions so there is no need for a separate database check. // Also, if you try to revert to or delete the current revision, that's // not good. if ($is_current_revision && (db\query('SELECT COUNT(vid) FROM {node_revision} WHERE nid = :nid', array(':nid' => $node->nid))->fetchField() == 1 || $op == 'update' || $op == 'delete')) { $access[$node->vid] = FALSE; } elseif (user\access('administer nodes')) { $access[$node->vid] = TRUE; } else { // First check the access to the current revision and finally, if the // node passed in is not the current revision then access to that, too. $access[$node->vid] = node\access($op, $node_current_revision) && ($is_current_revision || node\access($op, $node)); } } return $access[$node->vid]; } function add_access() { $types = type_get_types(); foreach ($types as $type) { if (hook($type->type, 'form') && node\access('create', $type->type)) { return TRUE; } } if (user\access('administer content types')) { // There are no content types defined that the user has permission to create, // but the user does have the permission to administer the content types, so // grant them access to the page anyway. return TRUE; } return FALSE; } /** * @implements system__menu() */ function system__menu() { $items['admin/content'] = array( 'title' => 'Content', 'description' => 'Find and manage content.', 'page callback' => 'drupal\get_form', 'page arguments' => array('drupal\node\admin_content'), 'access arguments' => array('access content overview'), 'weight' => -10, 'file' => 'node.admin.inc', ); $items['admin/content/node'] = array( 'title' => 'Content', 'description' => "Administer content", 'type' => MENU_DEFAULT_LOCAL_TASK, 'weight' => -10, ); $items['admin/reports/status/rebuild'] = array( 'title' => 'Rebuild permissions', 'page callback' => 'drupal\get_form', 'page arguments' => array('\drupal\node\configure_rebuild_confirm'), // Any user than can potentially trigger a access_needs_rebuild(TRUE) // has to be allowed access to the 'node access rebuild' confirm form. 'access arguments' => array('access administration pages'), 'type' => MENU_CALLBACK, 'file' => 'node.admin.inc', ); $items['admin/structure/types'] = array( 'title' => 'Content types', 'description' => 'Manage content types, including default status, front page promotion, comment settings, etc.', 'page callback' => 'drupal\node\overview_types', 'access arguments' => array('administer content types'), 'file' => 'content_types.inc', ); $items['admin/structure/types/list'] = array( 'title' => 'List', 'type' => MENU_DEFAULT_LOCAL_TASK, 'weight' => -10, ); $items['admin/structure/types/add'] = array( 'title' => 'Add content type', 'page callback' => 'drupal\get_form', 'page arguments' => array('drupal\node\type_form'), 'access arguments' => array('administer content types'), 'type' => MENU_LOCAL_ACTION, 'file' => 'content_types.inc', ); $items['admin/structure/types/manage/%node_type'] = array( 'title' => 'Edit content type', 'title callback' => 'drupal\node\type_page_title', 'title arguments' => array(4), 'page callback' => 'drupal\get_form', 'page arguments' => array('drupal\node\type_form', 4), 'access arguments' => array('administer content types'), 'file' => 'content_types.inc', ); $items['admin/structure/types/manage/%node_type/edit'] = array( 'title' => 'Edit', 'type' => MENU_DEFAULT_LOCAL_TASK, ); $items['admin/structure/types/manage/%node_type/delete'] = array( 'title' => 'Delete', 'page arguments' => array('drupal\node\type_delete_confirm', 4), 'access arguments' => array('administer content types'), 'file' => 'content_types.inc', ); $items['node'] = array( 'page callback' => 'drupal\node\page_default', 'access arguments' => array('access content'), // Required to make 'node/add' appear on the top-level of 'navigation' menu. 'menu_name' => '', 'type' => MENU_CALLBACK, ); $items['node/add'] = array( 'title' => 'Add content', 'page callback' => 'drupal\node\add_page', 'access callback' => 'drupal\node\add_access', 'menu_name' => 'navigation', 'theme callback' => 'drupal\node\custom_theme', 'file' => 'node.pages.inc', ); $items['rss.xml'] = array( 'title' => 'RSS feed', 'page callback' => 'drupal\node\feed', 'access arguments' => array('access content'), 'type' => MENU_CALLBACK, ); // @todo Remove this loop when we have a 'description callback' property. // Reset internal static cache of types_build(), forces to rebuild the // node type information. drupal\static_reset('drupal\node\types_build'); foreach (type_get_types() as $type) { $type_url_str = str_replace('_', '-', $type->type); $items['node/add/' . $type_url_str] = array( 'title' => $type->name, 'title callback' => 'drupal\check_plain', 'page callback' => 'drupal\node\add', 'page arguments' => array($type->type), 'access callback' => 'drupal\node\access', 'access arguments' => array('create', $type->type), 'description' => $type->description, 'file' => 'node.pages.inc', ); } $items['node/%node'] = array( 'title callback' => 'drupal\node\page_title', 'title arguments' => array(1), // The page callback also invokes drupal\set_title() in case // the menu router's title is overridden by a menu link. 'page callback' => 'drupal\node\page_view', 'page arguments' => array(1), 'access callback' => 'drupal\node\access', 'access arguments' => array('view', 1), ); $items['node/%node/view'] = array( 'title' => 'View', 'type' => MENU_DEFAULT_LOCAL_TASK, 'weight' => -10, ); $items['node/%node/edit'] = array( 'title' => 'Edit', 'page callback' => 'drupal\node\page_edit', 'page arguments' => array(1), 'access callback' => 'drupal\node\access', 'access arguments' => array('update', 1), 'theme callback' => 'drupal\node\custom_theme', 'weight' => 0, 'type' => MENU_LOCAL_TASK, 'context' => MENU_CONTEXT_PAGE | MENU_CONTEXT_INLINE, 'file' => 'node.pages.inc', ); $items['node/%node/delete'] = array( 'title' => 'Delete', 'page callback' => 'drupal\get_form', 'page arguments' => array('drupal\node\delete_confirm', 1), 'access callback' => 'drupal\node\access', 'access arguments' => array('delete', 1), 'theme callback' => 'drupal\node\custom_theme', 'weight' => 1, 'type' => MENU_LOCAL_TASK, 'context' => MENU_CONTEXT_INLINE, 'file' => 'node.pages.inc', ); $items['node/%node/revisions'] = array( 'title' => 'Revisions', 'page callback' => 'drupal\node\revision_overview', 'page arguments' => array(1), 'access callback' => 'drupal\node\revision_access', 'access arguments' => array(1), 'theme callback' => 'drupal\node\custom_theme', 'weight' => 2, 'type' => MENU_LOCAL_TASK, 'file' => 'node.pages.inc', ); $items['node/%node/revisions/%/view'] = array( 'title' => 'Revisions', 'load arguments' => array(3), 'page callback' => 'drupal\node\show', 'page arguments' => array(1, TRUE), 'access callback' => 'drupal\node\revision_access', 'access arguments' => array(1), ); $items['node/%node/revisions/%/revert'] = array( 'title' => 'Revert to earlier revision', 'load arguments' => array(3), 'page callback' => 'drupal\get_form', 'page arguments' => array('drupal\node\revision_revert_confirm', 1), 'access callback' => 'drupal\node\revision_access', 'access arguments' => array(1, 'update'), 'theme callback' => 'drupal\node\custom_theme', 'file' => 'node.pages.inc', ); $items['node/%node/revisions/%/delete'] = array( 'title' => 'Delete earlier revision', 'load arguments' => array(3), 'page callback' => 'drupal\get_form', 'page arguments' => array('drupal\node\revision_delete_confirm', 1), 'access callback' => 'drupal\node\revision_access', 'access arguments' => array(1, 'delete'), 'theme callback' => 'drupal\node\custom_theme', 'file' => 'node.pages.inc', ); return $items; } /** * @implements system__menu_local_tasks_alter() */ function system__menu_local_tasks_alter(&$data, $router_item, $root_path) { // Add action link to 'node/add' on 'admin/content' page. if ($root_path == 'admin/content') { $item = drupal\menu_get_item('node/add'); if ($item['access']) { $data['actions']['output'][] = array( '#theme' => 'menu_local_action', '#link' => $item, ); } } } /** * Title callback for a node type. */ function type_page_title($type) { return $type->name; } /** * Title callback. */ function page_title($node) { return $node->title; } /** * Theme callback for creating and editing nodes. */ function custom_theme() { // Use the administration theme if the site is configured to use it for // nodes. if (drupal\variable_get('node_admin_theme')) { return drupal\variable_get('admin_theme'); } } function last_changed($nid) { return db\query('SELECT changed FROM {node} WHERE nid = :nid', array(':nid' => $nid))->fetch()->changed; } /** * Return a list of all the existing revision numbers. */ function revision_list($node) { $revisions = array(); $result = db\query('SELECT r.vid, r.title, r.log, r.uid, n.vid AS current_vid, r.timestamp, u.name FROM {node_revision} r LEFT JOIN {node} n ON n.vid = r.vid INNER JOIN {users} u ON u.uid = r.uid WHERE r.nid = :nid ORDER BY r.vid DESC', array(':nid' => $node->nid)); foreach ($result as $revision) { $revisions[$revision->vid] = $revision; } return $revisions; } /** * @implements block__info() */ function block__info() { $blocks['syndicate']['info'] = drupal\t('Syndicate'); // Not worth caching. $blocks['syndicate']['cache'] = DRUPAL_NO_CACHE; $blocks['recent']['info'] = drupal\t('Recent content'); return $blocks; } /** * @implements block__view() */ function block__view($delta = '') { $block = array(); switch ($delta) { case 'syndicate': $block['subject'] = drupal\t('Syndicate'); $block['content'] = drupal\theme('feed_icon', array('url' => 'rss.xml', 'title' => drupal\t('Syndicate'))); break; case 'recent': if (user\access('access content')) { $block['subject'] = drupal\t('Recent content'); if ($nodes = get_recent(drupal\variable_get('node_recent_block_count', 10))) { $block['content'] = drupal\theme('node_recent_block', array( 'nodes' => $nodes, )); } else { $block['content'] = drupal\t("No content available."); } } break; } return $block; } /** * @implements block__configure() */ function block__configure($delta = '') { $form = array(); if ($delta == 'recent') { $form['node_recent_block_count'] = array( '#type' => 'select', '#title' => drupal\t('Number of recent content items to display'), '#default_value' => drupal\variable_get('node_recent_block_count', 10), '#options' => drupal\map_assoc(array(2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 25, 30)), ); } return $form; } /** * @implements block__save() */ function block__save($delta = '', $edit = array()) { if ($delta == 'recent') { drupal\variable_set('node_recent_block_count', $edit['node_recent_block_count']); } } /** * Find the most recent nodes that are available to the current user. * * @public * * @param $number * (optional) The maximum number of nodes to find. Defaults to 10. * * @return * An array of partial node objects or an empty array if there are no recent * nodes visible to the current user. */ function get_recent($number = 10) { $query = db\select('node', 'n'); if (!user\access('bypass node access')) { // If the user is able to view their own unpublished nodes, allow them // to see these in addition to published nodes. Check that they actually // have some unpublished nodes to view before adding the condition. if (user\access('view own unpublished content') && $own_unpublished = db\query('SELECT nid FROM {node} WHERE uid = :uid AND status = :status', array(':uid' => $GLOBALS['user']->uid, ':status' => NODE_NOT_PUBLISHED))->fetchCol()) { $query->condition(db\or() ->condition('n.status', NODE_PUBLISHED) ->condition('n.nid', $own_unpublished, 'IN') ); } else { // If not, restrict the query to published nodes. $query->condition('n.status', NODE_PUBLISHED); } } $nids = $query ->fields('n', array('nid')) ->orderBy('changed', 'DESC') ->range(0, $number) ->addTag('node_access') ->execute() ->fetchCol(); $nodes = load_multiple($nids); return $nodes ? $nodes : array(); } /** * Returns HTML for a list of recent content. * * @param $variables * An associative array containing: * - nodes: An array of recent node objects. * * @ingroup themeable */ function node__theme__recent_block($variables) { $rows = array(); $output = ''; $l_options = array('query' => drupal\get_destination()); foreach ($variables['nodes'] as $node) { $row = array(); $row[] = array( 'data' => drupal\theme('node_recent_content', array('node' => $node)), 'class' => 'title-author', ); $row[] = array( 'data' => node\access('update', $node) ? l(t('edit'), 'node/' . $node->nid . '/edit', $l_options) : '', 'class' => 'edit', ); $row[] = array( 'data' => node\access('delete', $node) ? l(t('delete'), 'node/' . $node->nid . '/delete', $l_options) : '', 'class' => 'delete', ); $rows[] = $row; } if ($rows) { $output = drupal\theme('table', array('rows' => $rows)); if (user\access('access content overview')) { $output .= drupal\theme('more_link', array('url' => 'admin/content', 'title' => drupal\t('Show more content'))); } } return $output; } /** * Returns HTML for a recent node to be displayed in the recent content block. * * @param $variables * An associative array containing: * - node: A node object. * * @ingroup themeable */ function node__theme__recent_content($variables) { $node = $variables['node']; $output = '
'; $output .= drupal\l($node->title, 'node/' . $node->nid); $output .= drupal\theme('mark', array('type' => mark($node->nid, $node->changed))); $output .= '
'; $output .= drupal\theme('username', array('account' => user\load($node->uid))); $output .= '
'; return $output; } /** * Adds node-type specific visibility options to add block form. * * @implements system__form_alter__FORMID() * @see block\add_block_form() */ function system__form_alter__block_add_block_form(&$form, &$form_state) { form_block_admin_configure_alter($form, $form_state); } /** * Adds node-type specific visibility options to block configuration form. * * @implements system__form_alter__FORMID() * @see block\admin_configure() */ function system__form_alter__block_admin_configure(&$form, &$form_state) { $default_type_options = db\query("SELECT type FROM {block_node_type} WHERE module = :module AND delta = :delta", array( ':module' => $form['module']['#value'], ':delta' => $form['delta']['#value'], ))->fetchCol(); $form['visibility']['node_type'] = array( '#type' => 'fieldset', '#title' => drupal\t('Content types'), '#collapsible' => TRUE, '#collapsed' => TRUE, '#group' => 'visibility', '#weight' => 5, ); $form['visibility']['node_type']['types'] = array( '#type' => 'checkboxes', '#title' => drupal\t('Show block for specific content types'), '#default_value' => $default_type_options, '#options' => type_get_names(), '#description' => drupal\t('Show this block only on pages that display content of the given type(s). If you select no types, there will be no type-specific limitation.'), ); $form['#submit'][] = 'form_block_admin_configure_submit'; } /** * Form submit handler for block configuration form. * * @see form__alter_block__admin_configure() */ function form_block_admin_configure_submit($form, &$form_state) { db\delete('block_node_type') ->condition('module', $form_state['values']['module']) ->condition('delta', $form_state['values']['delta']) ->execute(); $query = db\insert('block_node_type')->fields(array('type', 'module', 'delta')); foreach (array_filter($form_state['values']['types']) as $type) { $query->values(array( 'type' => $type, 'module' => $form_state['values']['module'], 'delta' => $form_state['values']['delta'], )); } $query->execute(); } /** * Adds node specific submit handler to delete custom block form. * * @implements system__form_alter__FORMID() * @see block_custom_block_delete() */ function system__form_alter__block_custom_block_delete(&$form, &$form_state) { $form['#submit'][] = 'drupal\node\form_block_custom_block_delete_submit'; } /** * Form submit handler for custom block delete form. * * @see system__form_alter__block_custom_block_delete() */ function form_block_custom_block_delete_submit($form, &$form_state) { db\delete('block_node_type') ->condition('module', 'block') ->condition('delta', $form_state['values']['bid']) ->execute(); } /** * Cleanup {block_node_type} table from modules' blocks. * * @implements system__modules_uninstalled() */ function system__modules_uninstalled($modules) { db\delete('block_node_type') ->condition('module', $modules, 'IN') ->execute(); } /** * Check the content type specific visibilty settings. * Remove the block if the visibility conditions are not met. * * @implements block__list_alter() */ function block__list_alter(&$blocks) { global $theme_key; // Build an array of node types for each block. $block_node_types = array(); $result = db\query('SELECT module, delta, type FROM {block_node_type}'); foreach ($result as $record) { $block_node_types[$record->module][$record->delta][$record->type] = TRUE; } $node = drupal\menu_get_object(); $node_types = type_get_types(); if (arg(0) == 'node' && arg(1) == 'add' && arg(2)) { $node_add_arg = strtr(arg(2), '-', '_'); } foreach ($blocks as $key => $block) { if (!isset($block->theme) || !isset($block->status) || $block->theme != $theme_key || $block->status != 1) { // This block was added by a contrib module, leave it in the list. continue; } // If a block has no node types associated, it is displayed for every type. // For blocks with node types associated, if the node type does not match // the settings from this block, remove it from the block list. if (isset($block_node_types[$block->module][$block->delta])) { if (!empty($node)) { // This is a node or node edit page. if (!isset($block_node_types[$block->module][$block->delta][$node->type])) { // This block should not be displayed for this node type. unset($blocks[$key]); continue; } } elseif (isset($node_add_arg) && isset($node_types[$node_add_arg])) { // This is a node creation page if (!isset($block_node_types[$block->module][$block->delta][$node_add_arg])) { // This block should not be displayed for this node type. unset($blocks[$key]); continue; } } else { // This is not a node page, remove the block. unset($blocks[$key]); continue; } } } } /** * A generic function for generating RSS feeds from a set of nodes. * * @public * * @param $nids * An array of node IDs (nid). Defaults to FALSE so empty feeds can be * generated with passing an empty array, if no items are to be added * to the feed. * @param $channel * An associative array containing title, link, description and other keys, * to be parsed by drupal\format_rss_channel() and format_xml_elements(). * A list of channel elements can be found at the @link http://cyber.law.harvard.edu/rss/rss.html RSS 2.0 Specification. @endlink * The link should be an absolute URL. */ function feed($nids = FALSE, $channel = array()) { global $base_url, $language_content; if ($nids === FALSE) { $nids = db\select('node', 'n') ->fields('n', array('nid', 'created')) ->condition('n.promote', 1) ->condition('status', 1) ->orderBy('n.created', 'DESC') ->range(0, drupal\variable_get('feed_default_items', 10)) ->addTag('node_access') ->execute() ->fetchCol(); } $item_length = drupal\variable_get('feed_item_length', 'fulltext'); $namespaces = array('xmlns:dc' => 'http://purl.org/dc/elements/1.1/'); $teaser = ($item_length == 'teaser'); // Load all nodes to be rendered. $nodes = load_multiple($nids); $items = ''; foreach ($nodes as $node) { $item_text = ''; $node->link = drupal\url("node/$node->nid", array('absolute' => TRUE)); $node->rss_namespaces = array(); $node->rss_elements = array( array('key' => 'pubDate', 'value' => gmdate('r', $node->created)), array('key' => 'dc:creator', 'value' => $node->name), array('key' => 'guid', 'value' => $node->nid . ' at ' . $base_url, 'attributes' => array('isPermaLink' => 'false')) ); // The node gets built and modules add to or modify $node->rss_elements // and $node->rss_namespaces. $build = view($node, 'rss'); unset($build['#theme']); if (!empty($node->rss_namespaces)) { $namespaces = array_merge($namespaces, $node->rss_namespaces); } if ($item_length != 'title') { // We render node contents and force links to be last. $build['links']['#weight'] = 1000; $item_text .= drupal\render($build); } $items .= drupal\format_rss_item($node->title, $node->link, $item_text, $node->rss_elements); } $channel_defaults = array( 'version' => '2.0', 'title' => drupal\variable_get('site_name', 'Drupal'), 'link' => $base_url, 'description' => drupal\variable_get('feed_description', ''), 'language' => $language_content->language ); $channel_extras = array_diff_key($channel, $channel_defaults); $channel = array_merge($channel_defaults, $channel); $output = "\n"; $output .= "\n"; $output .= drupal\format_rss_channel($channel['title'], $channel['link'], $channel['description'], $items, $channel['language'], $channel_extras); $output .= "\n"; drupal\add_http_header('Content-Type', 'application/rss+xml; charset=utf-8'); print $output; } /** * Construct a drupal\render() style array from an array of loaded nodes. * * @param $nodes * An array of nodes as returned by load_multiple(). * @param $view_mode * View mode, e.g. 'full', 'teaser'... * @param $weight * An integer representing the weight of the first node in the list. * @param $langcode * (optional) A language code to use for rendering. Defaults to the global * content language of the current request. * * @return * An array in the format expected by drupal\render(). */ function view_multiple($nodes, $view_mode = 'teaser', $weight = 0, $langcode = NULL) { field\attach_prepare_view('node', $nodes, $view_mode); drupal\entity_prepare_view('node', $nodes); $build = array(); foreach ($nodes as $node) { $build['nodes'][$node->nid] = view($node, $view_mode, $langcode); $build['nodes'][$node->nid]['#weight'] = $weight; $weight++; } $build['nodes']['#sorted'] = TRUE; return $build; } /** * Menu callback; Generate a listing of promoted nodes. */ function page_default() { $select = db\select('node', 'n') ->fields('n', array('nid', 'sticky', 'created')) ->condition('promote', 1) ->condition('status', 1) ->orderBy('sticky', 'DESC') ->orderBy('created', 'DESC') ->extend('PagerDefault') ->limit(drupal\variable_get('default_nodes_main', 10)) ->addTag('node_access'); $nids = $select->execute()->fetchCol(); if (!empty($nids)) { $nodes = load_multiple($nids); $build = view_multiple($nodes); $feed_url = drupal\url('rss.xml', array('absolute' => TRUE)); drupal\add_feed($feed_url, drupal\variable_get('site_name', 'Drupal') . ' ' . drupal\t('RSS')); $build['pager'] = array( '#theme' => 'pager', '#weight' => 5, ); drupal\set_title(''); } else { drupal\set_title(t('Welcome to @site-name', array('@site-name' => drupal\variable_get('site_name', 'Drupal'))), PASS_THROUGH); $default_message = '

' . drupal\t('No front page content has been created yet.') . '

'; $default_links = array(); if (add_access()) { $default_links[] = l(t('Add new content'), 'node/add'); } if (!empty($default_links)) { $default_message .= drupal\theme('item_list', array('items' => $default_links)); } $build['default_message'] = array( '#markup' => $default_message, '#prefix' => '
', '#suffix' => '
', ); } return $build; } /** * Menu callback; view a single node. */ function page_view($node) { // If there is a menu link to this node, the link becomes the last part // of the active trail, and the link name becomes the page title. // Thus, we must explicitly set the page title to be the node title. drupal\set_title($node->title); $uri = drupal\entity_uri('node', $node); // Set the node path as the canonical URL to prevent duplicate content. drupal\add_html_head_link(array('rel' => 'canonical', 'href' => drupal\url($uri['path'], $uri['options'])), TRUE); // Set the non-aliased path as a default shortlink. drupal\add_html_head_link(array('rel' => 'shortlink', 'href' => drupal\url($uri['path'], array_merge($uri['options'], array('alias' => TRUE)))), TRUE); return show($node); } /** * @implements seatch__update_index() */ function search__update_index() { $limit = (int)drupal\variable_get('search_cron_limit', 100); $result = db\query_range("SELECT n.nid FROM {node} n LEFT JOIN {search_dataset} d ON d.type = 'node' AND d.sid = n.nid WHERE d.sid IS NULL OR d.reindex <> 0 ORDER BY d.reindex ASC, n.nid ASC", 0, $limit, array(), array('target' => 'slave')); foreach ($result as $node) { index_node($node); } } /** * Index a single node. * * @param $node * The node to index. */ function index_node($node) { $node = load($node->nid); // Save the changed time of the most recent indexed node, for the search // results half-life calculation. drupal\variable_set('node_cron_last', $node->changed); // Render the node. $build = view($node, 'search_index'); unset($build['#theme']); $node->rendered = drupal\render($build); $text = '

' . drupal\check_plain($node->title) . '

' . $node->rendered; // Fetch extra data normally not visible $extra = drupal\invoke_all('node_update_index', $node); foreach ($extra as $t) { $text .= $t; } // Update index search\index($node->nid, 'node', $text); } /** * @implements system__form_alter__FORM_ID() */ function system__form_alter__search_form(&$form, $form_state) { if (isset($form['module']) && $form['module']['#value'] == 'node' && user\access('use advanced search')) { // Keyword boxes: $form['advanced'] = array( '#type' => 'fieldset', '#title' => "Advanced search", '#collapsible' => TRUE, '#collapsed' => TRUE, '#attributes' => array('class' => array('search-advanced')), ); $form['advanced']['keywords'] = array( '#prefix' => '
', '#suffix' => '
', ); $form['advanced']['keywords']['or'] = array( '#type' => 'textfield', '#title' => drupal\t('Containing any of the words'), '#size' => 30, '#maxlength' => 255, ); $form['advanced']['keywords']['phrase'] = array( '#type' => 'textfield', '#title' => drupal\t('Containing the phrase'), '#size' => 30, '#maxlength' => 255, ); $form['advanced']['keywords']['negative'] = array( '#type' => 'textfield', '#title' => drupal\t('Containing none of the words'), '#size' => 30, '#maxlength' => 255, ); // Node types: $types = array_map('check_plain', type_get_names()); $form['advanced']['type'] = array( '#type' => 'checkboxes', '#title' => drupal\t('Only of the type(s)'), '#prefix' => '
', '#suffix' => '
', '#options' => $types, ); $form['advanced']['submit'] = array( '#type' => 'submit', '#value' => drupal\t('Advanced search'), '#prefix' => '
', '#suffix' => '
', ); // Languages: $language_options = array(); foreach (drupal\language_list('language') as $key => $entity) { $language_options[$key] = $entity->name; } if (count($language_options) > 1) { $form['advanced']['language'] = array( '#type' => 'checkboxes', '#title' => drupal\t('Languages'), '#prefix' => '
', '#suffix' => '
', '#options' => $language_options, ); } $form['#validate'][] = 'node_search_validate'; } } /** * Form API callback for the search form. Registered in system__form_alter(). */ function search_validate($form, &$form_state) { // Initialize using any existing basic search keywords. $keys = $form_state['values']['processed_keys']; // Insert extra restrictions into the search keywords string. if (isset($form_state['values']['type']) && is_array($form_state['values']['type'])) { // Retrieve selected types - Forms API sets the value of unselected // checkboxes to 0. $form_state['values']['type'] = array_filter($form_state['values']['type']); if (count($form_state['values']['type'])) { $keys = search\expression_insert($keys, 'type', implode(',', array_keys($form_state['values']['type']))); } } if (isset($form_state['values']['term']) && is_array($form_state['values']['term']) && count($form_state['values']['term'])) { $keys = search\expression_insert($keys, 'term', implode(',', $form_state['values']['term'])); } if (isset($form_state['values']['language']) && is_array($form_state['values']['language']) && count($form_state['values']['language'])) { $keys = search\expression_insert($keys, 'language', implode(',', array_filter($form_state['values']['language']))); } if ($form_state['values']['or'] != '') { if (preg_match_all('/ ("[^"]+"|[^" ]+)/i', ' ' . $form_state['values']['or'], $matches)) { $keys .= ' ' . implode(' OR ', $matches[1]); } } if ($form_state['values']['negative'] != '') { if (preg_match_all('/ ("[^"]+"|[^" ]+)/i', ' ' . $form_state['values']['negative'], $matches)) { $keys .= ' -' . implode(' -', $matches[1]); } } if ($form_state['values']['phrase'] != '') { $keys .= ' "' . str_replace('"', ' ', $form_state['values']['phrase']) . '"'; } if (!empty($keys)) { drupal\form_set_value($form['basic']['processed_keys'], trim($keys), $form_state); } } /** * @defgroup node_access Node access rights * @{ * The node access system determines who can do what to which nodes. * * In determining access rights for a node, access() first checks * whether the user has the "bypass node access" permission. Such users have * unrestricted access to all nodes. user 1 will always pass this check. * * Next, all implementations of hook_node_access() will be called. Each * implementation may explicitly allow, explicitly deny, or ignore the access * request. If at least one module says to deny the request, it will be rejected. * If no modules deny the request and at least one says to allow it, the request * will be permitted. * * If all modules ignore the access request, then the node_access table is used * to determine access. All node access modules are queried using * hook_node_grants() to assemble a list of "grant IDs" for the user. This list * is compared against the table. If any row contains the node ID in question * (or 0, which stands for "all nodes"), one of the grant IDs returned, and a * value of TRUE for the operation in question, then access is granted. Note * that this table is a list of grants; any matching row is sufficient to * grant access to the node. * * In node listings, the process above is followed except that * hook_node_access() is not called on each node for performance reasons and for * proper functioning of the pager system. When adding a node listing to your * module, be sure to use a dynamic query created by db\select() and add a tag * of "node_access" to ensure that only nodes to which the user has access * are retrieved. * * Note: Even a single module returning NODE_ACCESS_DENY from hook_node_access() * will block access to the node. Therefore, implementers should take care to * not deny access unless they really intend to. Unless a module wishes to * actively deny access it should return NODE_ACCESS_IGNORE (or simply return * nothing) to allow other modules or the node_access table to control access. * * To see how to write a node access module of your own, see * node_access_example.module. */ /** * Determine whether the current user may perform the given operation on the * specified node. * * @param $op * The operation to be performed on the node. Possible values are: * - "view" * - "update" * - "delete" * - "create" * @param $node * The node object on which the operation is to be performed, or node type * (e.g. 'forum') for "create" operation. * @param $account * Optional, a user object representing the user for whom the operation is to * be performed. Determines access for a user other than the current user. * @return * TRUE if the operation may be performed, FALSE otherwise. */ function access($op, $node, $account = NULL) { global $user; $rights = &drupal\static(__FUNCTION__, array()); if (!$node || !in_array($op, array('view', 'update', 'delete', 'create'), TRUE)) { // If there was no node to check against, or the $op was not one of the // supported ones, we return access denied. return FALSE; } // If no user object is supplied, the access check is for the current user. if (empty($account)) { $account = $user; } // $node may be either an object or a node type. Since node types cannot be // an integer, use either nid or type as the static cache id. $cid = is_object($node) ? $node->nid : $node; // If we've already checked access for this node, user and op, return from // cache. if (isset($rights[$account->uid][$cid][$op])) { return $rights[$account->uid][$cid][$op]; } if (user\access('bypass node access', $account)) { $rights[$account->uid][$cid][$op] = TRUE; return TRUE; } if (!user\access('access content', $account)) { $rights[$account->uid][$cid][$op] = FALSE; return FALSE; } // We grant access to the node if both of the following conditions are met: // - No modules say to deny access. // - At least one module says to grant access. // If no module specified either allow or deny, we fall back to the // node_access table. $access = drupal\invoke_all('node_access', $node, $op, $account); if (in_array(NODE_ACCESS_DENY, $access, TRUE)) { $rights[$account->uid][$cid][$op] = FALSE; return FALSE; } elseif (in_array(NODE_ACCESS_ALLOW, $access, TRUE)) { $rights[$account->uid][$cid][$op] = TRUE; return TRUE; } // Check if authors can view their own unpublished nodes. if ($op == 'view' && !$node->status && user\access('view own unpublished content', $account) && $account->uid == $node->uid && $account->uid != 0) { $rights[$account->uid][$cid][$op] = TRUE; return TRUE; } // If the module did not override the access rights, use those set in the // node_access table. if ($op != 'create' && $node->nid) { if (drupal\module_implements('node_grants')) { $query = db\select('node_access'); $query->addExpression('1'); $query->condition('grant_' . $op, 1, '>='); $nids = db\or()->condition('nid', $node->nid); if ($node->status) { $nids->condition('nid', 0); } $query->condition($nids); $query->range(0, 1); $grants = db\or(); foreach (access_grants($op, $account) as $realm => $gids) { foreach ($gids as $gid) { $grants->condition(db\and() ->condition('gid', $gid) ->condition('realm', $realm) ); } } if (count($grants) > 0) { $query->condition($grants); } $result = (bool) $query ->execute() ->fetchField(); $rights[$account->uid][$cid][$op] = $result; return $result; } elseif (is_object($node) && $op == 'view' && $node->status) { // If no modules implement hook_node_grants(), the default behaviour is to // allow all users to view published nodes, so reflect that here. $rights[$account->uid][$cid][$op] = TRUE; return TRUE; } } return FALSE; } /** * @implements node__access() */ function node__access($node, $op, $account) { $type = is_string($node) ? $node : $node->type; if (in_array($type, permissions_get_configured_types())) { if ($op == 'create' && user\access('create ' . $type . ' content', $account)) { return NODE_ACCESS_ALLOW; } if ($op == 'update') { if (user\access('edit any ' . $type . ' content', $account) || (user\access('edit own ' . $type . ' content', $account) && ($account->uid == $node->uid))) { return NODE_ACCESS_ALLOW; } } if ($op == 'delete') { if (user\access('delete any ' . $type . ' content', $account) || (user\access('delete own ' . $type . ' content', $account) && ($account->uid == $node->uid))) { return NODE_ACCESS_ALLOW; } } } return NODE_ACCESS_IGNORE; } /** * Helper function to generate standard node permission list for a given type. * * @public * * @param $type * The machine-readable name of the node type. * @return array * An array of permission names and descriptions. */ function list_permissions($type) { $info = type_get_type($type); $type = drupal\check_plain($info->type); // Build standard list of node permissions for this type. $perms = array( "create $type content" => array( 'title' => drupal\t("%type_name: Create new content", array('%type_name' => $info->name)), ), "edit own $type content" => array( 'title' => drupal\t("%type_name: Edit own content", array('%type_name' => $info->name)), ), "edit any $type content" => array( 'title' => drupal\t("%type_name: Edit any content", array('%type_name' => $info->name)), ), "delete own $type content" => array( 'title' => drupal\t("%type_name: Delete own content", array('%type_name' => $info->name)), ), "delete any $type content" => array( 'title' => drupal\t("%type_name: Delete any content", array('%type_name' => $info->name)), ), ); return $perms; } /** * Returns an array of node types that should be managed by permissions. * * By default, this will include all node types in the system. To exclude a * specific node from getting permissions defined for it, set the * node_permissions_$type variable to 0. Core does not provide an interface * for doing so, however, contrib modules may exclude their own nodes in * hook_install(). Alternatively, contrib modules may configure all node types * at once, or decide to apply some other hook_node_access() implementation * to some or all node types. * * @public * * @return * An array of node types managed by this module. */ function permissions_get_configured_types() { $configured_types = array(); foreach (type_get_types() as $type => $info) { if (drupal\variable_get('node_permissions_' . $type, 1)) { $configured_types[] = $type; } } return $configured_types; } /** * Fetch an array of permission IDs granted to the given user ID. * * The implementation here provides only the universal "all" grant. A node * access module should implement hook_node_grants() to provide a grant * list for the user. * * After the default grants have been loaded, we allow modules to alter * the grants array by reference. This hook allows for complex business * logic to be applied when integrating multiple node access modules. * * @public * * @param $op * The operation that the user is trying to perform. * @param $account * The user object for the user performing the operation. If omitted, the * current user is used. * @return * An associative array in which the keys are realms, and the values are * arrays of grants for those realms. */ function access_grants($op, $account = NULL) { if (!isset($account)) { $account = $GLOBALS['user']; } // Fetch node access grants from other modules. $grants = drupal\invoke_all('node_grants', $account, $op); // Allow modules to alter the assigned grants. drupal\alter('node_grants', $grants, $account, $op); return array_merge(array('all' => array(0)), $grants); } /** * Determine whether the user has a global viewing grant for all nodes. * * @public */ function access_view_all_nodes() { $access = &drupal\static(__FUNCTION__); if (!isset($access)) { // If no modules implement the node access system, access is always true. if (!drupal\module_implements('node_grants')) { $access = TRUE; } else { $query = db\select('node_access'); $query->addExpression('COUNT(*)'); $query ->condition('nid', 0) ->condition('grant_view', 1, '>='); $grants = db\or(); foreach (access_grants('view') as $realm => $gids) { foreach ($gids as $gid) { $grants->condition(db\and() ->condition('gid', $gid) ->condition('realm', $realm) ); } } if (count($grants) > 0 ) { $query->condition($grants); } $access = $query ->execute() ->fetchField(); } } return $access; } /** * This is the hook_query_alter() for queries tagged with 'node_access'. * It adds node access checks for the user account given by the 'account' * meta-data (or global $user if not provided), for an operation given by * the 'op' meta-data (or 'view' if not provided; other possible values are * 'update' and 'delete'). * * @implements system__query_alter__TAG() */ function system__query_alter__node_access(QueryAlterableInterface $query) { query_node_access_alter($query, 'node', 'node'); } /** * This function implements the same functionality as * node_query_node_access_alter() for the SQL field storage engine. Node access * conditions are added for field values belonging to nodes only. * * @implements system__query_alter__TAG() */ function system__node_query_alter__entity_field_access(QueryAlterableInterface $query) { query_node_access_alter($query, $query->getMetaData('base_table'), 'entity'); } /** * Helper for node access functions. * * @param $query * The query to add conditions to. * @param $base_table * The table holding node ids. * @param $type * Either 'node' or 'entity' depending on what sort of query it is. See * node_query_node_access_alter() and node_query_entity_field_access_alter() * for more. */ function query_node_access_alter($query, $base_table, $type) { global $user; // Read meta-data from query, if provided. if (!$account = $query->getMetaData('account')) { $account = $user; } if (!$op = $query->getMetaData('op')) { $op = 'view'; } // If $account can bypass node access, or there are no node access // modules, we don't need to alter the query. if (user\access('bypass node access', $account)) { return; } if (!count(drupal\module_implements('node_grants'))) { return; } // Prevent duplicate records. $query->distinct(); // Find all instances of the {node} table being joined -- could appear // more than once in the query, and could be aliased. Join each one to // the node_access table. $tables = $query->getTables(); $grants = access_grants($op, $account); if ($type == 'entity') { // The original query looked something like: // @code // SELECT nid FROM sometable s // INNER JOIN node_access na ON na.nid = s.nid // WHERE ($node_access_conditions) // @endcode // // Our query will look like: // @code // SELECT entity_type, entity_id // FROM field_data_something s // LEFT JOIN node_access na ON s.entity_id = na.nid // WHERE (entity_type = 'node' AND $node_access_conditions) OR (entity_type <> 'node') // @endcode // // So instead of directly adding to the query object, we need to collect // in a separate db\and() object and then at the end add it to the query. $entity_conditions = db\and(); } foreach ($tables as $nalias => $tableinfo) { $table = $tableinfo['table']; if (!($table instanceof SelectQueryInterface) && $table == $base_table) { // The node_access table has the access grants for any given node so JOIN // it to the table containing the nid which can be either the node // table or a field value table. if ($type == 'node') { $access_alias = $query->join('node_access', 'na', '%alias.nid = ' . $nalias . '.nid'); } else { $access_alias = $query->leftJoin('node_access', 'na', '%alias.nid = ' . $nalias . '.entity_id'); $base_alias = $nalias; } $grant_conditions = db\or(); // If any grant exists for the specified user, then user has access // to the node for the specified operation. foreach ($grants as $realm => $gids) { foreach ($gids as $gid) { $grant_conditions->condition(db\and() ->condition($access_alias . '.gid', $gid) ->condition($access_alias . '.realm', $realm) ); } } $count = count($grant_conditions->conditions()); if ($type == 'node') { if ($count) { $query->condition($grant_conditions); } $query->condition($access_alias . '.grant_' . $op, 1, '>='); } else { if ($count) { $entity_conditions->condition($grant_conditions); } $entity_conditions->condition($access_alias . '.grant_' . $op, 1, '>='); } } } if ($type == 'entity' && count($entity_conditions->conditions())) { // All the node access conditions are only for field values belonging to // nodes. $etid = drupal\variable_get('field_sql_storage_node_etid'); $entity_conditions->condition("$base_alias.etid", $etid); $or = db\or(); $or->condition($entity_conditions); // If the field value belongs to a non-node entity type then this function // does not do anything with it. $or->condition("$base_alias.etid", $etid, '<>'); // Add the compiled set of rules to the query. $query->condition($or); } } /** * Gets the list of node access grants and writes them to the database. * * This function is called when a node is saved, and can also be called by * modules if something other than a node save causes node access permissions to * change. It collects all node access grants for the node from * hook_node_access_records() implementations, allows these grants to be altered * via hook_node_access_records_alter() implementations, and saves the collected * and altered grants to the database. * * @public * * @param $node * The $node to acquire grants for. * * @param $delete * Whether to delete existing node access records before inserting new ones. * Defaults to TRUE. */ function access_acquire_grants($node, $delete = TRUE) { $grants = drupal\invoke_all('node_access_records', $node); // Let modules alter the grants. drupal\alter('node_access_records', $grants, $node); // If no grants are set and the node is published, then use the default grant. if (empty($grants) && !empty($node->status)) { $grants[] = array('realm' => 'all', 'gid' => 0, 'grant_view' => 1, 'grant_update' => 0, 'grant_delete' => 0); } else { // Retain grants by highest priority. $grant_by_priority = array(); foreach ($grants as $g) { $grant_by_priority[intval($g['priority'])][] = $g; } krsort($grant_by_priority); $grants = array_shift($grant_by_priority); } access_write_grants$node, $grants, NULL, $delete); } /** * Writes a list of grants to the database, deleting any previously saved ones. * * If a realm is provided, it will only delete grants from that realm, but it * will always delete a grant from the 'all' realm. Modules that utilize * node_access can use this function when doing mass updates due to widespread * permission changes. * * @public * * @param $node * The $node being written to. All that is necessary is that it contains a * nid. * @param $grants * A list of grants to write. Each grant is an array that must contain the * following keys: realm, gid, grant_view, grant_update, grant_delete. * The realm is specified by a particular module; the gid is as well, and * is a module-defined id to define grant privileges. each grant_* field * is a boolean value. * @param $realm * If provided, only read/write grants for that realm. * @param $delete * If false, do not delete records. This is only for optimization purposes, * and assumes the caller has already performed a mass delete of some form. */ function access_write_grants$node, $grants, $realm = NULL, $delete = TRUE) { if ($delete) { $query = db\delete('node_access')->condition('nid', $node->nid); if ($realm) { $query->condition('realm', array($realm, 'all'), 'IN'); } $query->execute(); } // Only perform work when node_access modules are active. if (!empty($grants) && count(drupal\module_implements('node_grants'))) { $query = db\insert('node_access')->fields(array('nid', 'realm', 'gid', 'grant_view', 'grant_update', 'grant_delete')); foreach ($grants as $grant) { if ($realm && $realm != $grant['realm']) { continue; } // Only write grants; denies are implicit. if ($grant['grant_view'] || $grant['grant_update'] || $grant['grant_delete']) { $grant['nid'] = $node->nid; $query->values($grant); } } $query->execute(); } } /** * Flag / unflag the node access grants for rebuilding, or read the current * value of the flag. * * When the flag is set, a message is displayed to users with 'access * administration pages' permission, pointing to the 'rebuild' confirm form. * This can be used as an alternative to direct node_access_rebuild calls, * allowing administrators to decide when they want to perform the actual * (possibly time consuming) rebuild. * When unsure the current user is an administrator, node_access_rebuild * should be used instead. * * @param $rebuild * (Optional) The boolean value to be written. * @return * (If no value was provided for $rebuild) The current value of the flag. */ function access_needs_rebuild($rebuild = NULL) { if (!isset($rebuild)) { return drupal\variable_get('node_access_needs_rebuild', FALSE); } elseif ($rebuild) { drupal\variable_set('node_access_needs_rebuild', TRUE); } else { drupal\variable_del('node_access_needs_rebuild'); } } /** * Rebuild the node access database. This is occasionally needed by modules * that make system-wide changes to access levels. * * When the rebuild is required by an admin-triggered action (e.g module * settings form), calling access_needs_rebuild(TRUE) instead of * access_rebuild() lets the user perform his changes and actually * rebuild only once he is done. * * Note : As of Drupal 6, node access modules are not required to (and actually * should not) call access_rebuild() in hook_enable/disable anymore. * * @public * * @see access_needs_rebuild() * * @param $batch_mode * Set to TRUE to process in 'batch' mode, spawning processing over several * HTTP requests (thus avoiding the risk of PHP timeout if the site has a * large number of nodes). * hook_update_N and any form submit handler are safe contexts to use the * 'batch mode'. Less decidable cases (such as calls from hook_user, * hook_taxonomy, etc...) might consider using the non-batch mode. */ function access_rebuild($batch_mode = FALSE) { db\delete('node_access')->execute(); // Only recalculate if the site is using a node_access module. if (count(drupal\module_implements('node_grants'))) { if ($batch_mode) { $batch = array( 'title' => drupal\t('Rebuilding content access permissions'), 'operations' => array( array('drupal\node\access_rebuild_batch_operation', array()), ), 'finished' => 'drupal\node\access_rebuild_batch_finished' ); drupal\batch_set($batch); } else { // Try to allocate enough time to rebuild node grants drupal\set_time_limit(240); $nids = db\query("SELECT nid FROM {node}")->fetchCol(); foreach ($nids as $nid) { $node = load($nid, NULL, TRUE); // To preserve database integrity, only acquire grants if the node // loads successfully. if (!empty($node)) { access_acquire_grants($node); } } } } else { // Not using any node_access modules. Add the default grant. db\insert('node_access') ->fields(array( 'nid' => 0, 'realm' => 'all', 'gid' => 0, 'grant_view' => 1, 'grant_update' => 0, 'grant_delete' => 0, )) ->execute(); } if (!isset($batch)) { drupal\set_message(drupal\t('Content permissions have been rebuilt.')); access_needs_rebuild(FALSE); drupal\cache_clear_all(); } } /** * Batch operation for node_access_rebuild_batch. * * This is a multistep operation : we go through all nodes by packs of 20. * The batch processing engine interrupts processing and sends progress * feedback after 1 second execution time. */ function access_rebuild_batch_operation(&$context) { if (empty($context['sandbox'])) { // Initiate multistep processing. $context['sandbox']['progress'] = 0; $context['sandbox']['current_node'] = 0; $context['sandbox']['max'] = db\query('SELECT COUNT(DISTINCT nid) FROM {node}')->fetchField(); } // Process the next 20 nodes. $limit = 20; $nids = db\query_range("SELECT nid FROM {node} WHERE nid > :nid ORDER BY nid ASC", 0, $limit, array(':nid' => $context['sandbox']['current_node']))->fetchCol(); $nodes = load_multiple($nids, array(), TRUE); foreach ($nodes as $nid => $node) { // To preserve database integrity, only acquire grants if the node // loads successfully. if (!empty($node)) { access_acquire_grants($node); } $context['sandbox']['progress']++; $context['sandbox']['current_node'] = $nid; } // Multistep processing : report progress. if ($context['sandbox']['progress'] != $context['sandbox']['max']) { $context['finished'] = $context['sandbox']['progress'] / $context['sandbox']['max']; } } /** * Post-processing for node_access_rebuild_batch. */ function access_rebuild_batch_finished($success, $results, $operations) { if ($success) { drupal\set_message(t('The content access permissions have been rebuilt.')); access_needs_rebuild(FALSE); } else { drupal\set_message(t('The content access permissions have not been properly rebuilt.'), 'error'); } drupal\cache_clear_all(); } /** * @} End of "defgroup node_access". */ /** * @defgroup node_content Hook implementations for user-created content types. * @{ */ /** * @implements system__form() */ function system__form($node, $form_state) { // It is impossible to define a content type without implementing hook_form() // @todo: remove this requirement. $form = array(); $type = type_get_type($node); if ($type->has_title) { $form['title'] = array( '#type' => 'textfield', '#title' => drupal\check_plain($type->title_label), '#required' => TRUE, '#default_value' => $node->title, '#maxlength' => 255, '#weight' => -5, ); } return $form; } /** * @} End of "defgroup node_content". */ /** * All node forms share the same form handler. * * @implements system__forms() */ function system__forms() { $forms = array(); if ($types = type_get_types()) { foreach (array_keys($types) as $type) { $forms[$type . '_node_form']['callback'] = 'node_form'; } } return $forms; } /** * @implements action__info() */ function action__info() { return array( 'publish_action' => array( 'type' => 'node', 'label' => drupal\t('Publish content'), 'configurable' => FALSE, 'behavior' => array('changes_property'), 'triggers' => array('node_presave', 'comment_insert', 'comment_update', 'comment_delete'), ), 'unpublish_action' => array( 'type' => 'node', 'label' => drupal\t('Unpublish content'), 'configurable' => FALSE, 'behavior' => array('changes_property'), 'triggers' => array('node_presave', 'comment_insert', 'comment_update', 'comment_delete'), ), 'make_sticky_action' => array( 'type' => 'node', 'label' => drupal\t('Make content sticky'), 'configurable' => FALSE, 'behavior' => array('changes_property'), 'triggers' => array('node_presave', 'comment_insert', 'comment_update', 'comment_delete'), ), 'make_unsticky_action' => array( 'type' => 'node', 'label' => drupal\t('Make content unsticky'), 'configurable' => FALSE, 'behavior' => array('changes_property'), 'triggers' => array('node_presave', 'comment_insert', 'comment_update', 'comment_delete'), ), 'promote_action' => array( 'type' => 'node', 'label' => drupal\t('Promote content to front page'), 'configurable' => FALSE, 'behavior' => array('changes_property'), 'triggers' => array('node_presave', 'comment_insert', 'comment_update', 'comment_delete'), ), 'unpromote_action' => array( 'type' => 'node', 'label' => drupal\t('Remove content from front page'), 'configurable' => FALSE, 'behavior' => array('changes_property'), 'triggers' => array('node_presave', 'comment_insert', 'comment_update', 'comment_delete'), ), 'assign_owner_action' => array( 'type' => 'node', 'label' => drupal\t('Change the author of content'), 'configurable' => TRUE, 'behavior' => array('changes_property'), 'triggers' => array('node_presave', 'comment_insert', 'comment_update', 'comment_delete'), ), 'save_action' => array( 'type' => 'node', 'label' => drupal\t('Save content'), 'configurable' => FALSE, 'triggers' => array('comment_insert', 'comment_update', 'comment_delete'), ), 'unpublish_by_keyword_action' => array( 'type' => 'node', 'label' => drupal\t('Unpublish content containing keyword(s)'), 'configurable' => TRUE, 'triggers' => array('node_presave', 'node_insert', 'node_update'), ), ); } /** * Sets the status of a node to 1 (published). * * @ingroup actions */ function publish_action($node, $context = array()) { $node->status = NODE_PUBLISHED; drupal\watchdog('action', 'Set @type %title to published.', array('@type' => type_get_name($node), '%title' => $node->title)); } /** * Sets the status of a node to 0 (unpublished). * * @ingroup actions */ function unpublish_action($node, $context = array()) { $node->status = NODE_NOT_PUBLISHED; drupal\watchdog('action', 'Set @type %title to unpublished.', array('@type' => type_get_name($node), '%title' => $node->title)); } /** * Sets the sticky-at-top-of-list property of a node to 1. * * @ingroup actions */ function make_sticky_action($node, $context = array()) { $node->sticky = NODE_STICKY; drupal\watchdog('action', 'Set @type %title to sticky.', array('@type' => type_get_name($node), '%title' => $node->title)); } /** * Sets the sticky-at-top-of-list property of a node to 0. * * @ingroup actions */ function make_unsticky_action($node, $context = array()) { $node->sticky = NODE_NOT_STICKY; drupal\watchdog('action', 'Set @type %title to unsticky.', array('@type' => type_get_name($node), '%title' => $node->title)); } /** * Sets the promote property of a node to 1. * * @ingroup actions */ function promote_action($node, $context = array()) { $node->promote = NODE_PROMOTED; drupal\watchdog('action', 'Promoted @type %title to front page.', array('@type' => type_get_name($node), '%title' => $node->title)); } /** * Sets the promote property of a node to 0. * * @ingroup actions */ function unpromote_action($node, $context = array()) { $node->promote = NODE_NOT_PROMOTED; drupal\watchdog('action', 'Removed @type %title from front page.', array('@type' => type_get_name($node), '%title' => $node->title)); } /** * Saves a node. * * @ingroup actions */ function save_action($node) { save($node); drupal\watchdog('action', 'Saved @type %title', array('@type' => type_get_name($node), '%title' => $node->title)); } /** * Assigns ownership of a node to a user. * * @param $node * A node object to modify. * @param $context * Array with the following elements: * - 'owner_uid': User ID to assign to the node. * * @ingroup actions */ function assign_owner_action($node, $context) { $node->uid = $context['owner_uid']; $owner_name = db\query("SELECT name FROM {users} WHERE uid = :uid", array(':uid' => $context['owner_uid']))->fetchField(); drupal\watchdog('action', 'Changed owner of @type %title to uid %name.', array('@type' => type_get_name($node), '%title' => $node->title, '%name' => $owner_name)); } /** * Generates the settings form for node_assign_owner_action(). */ function assign_owner_action_form($context) { $description = drupal\t('The username of the user to which you would like to assign ownership.'); $count = db\query("SELECT COUNT(*) FROM {users}")->fetchField(); $owner_name = ''; if (isset($context['owner_uid'])) { $owner_name = db\query("SELECT name FROM {users} WHERE uid = :uid", array(':uid' => $context['owner_uid']))->fetchField(); } // Use dropdown for fewer than 200 users; textbox for more than that. if (intval($count) < 200) { $options = array(); $result = db\query("SELECT uid, name FROM {users} WHERE uid > 0 ORDER BY name"); foreach ($result as $data) { $options[$data->name] = $data->name; } $form['owner_name'] = array( '#type' => 'select', '#title' => drupal\t('Username'), '#default_value' => $owner_name, '#options' => $options, '#description' => $description, ); } else { $form['owner_name'] = array( '#type' => 'textfield', '#title' => drupal\t('Username'), '#default_value' => $owner_name, '#autocomplete_path' => 'user/autocomplete', '#size' => '6', '#maxlength' => '60', '#description' => $description, ); } return $form; } /** * Validates settings form for node_assign_owner_action(). */ function assign_owner_action_validate($form, $form_state) { $exists = (bool) db\query_range('SELECT 1 FROM {users} WHERE name = :name', 0, 1, array(':name' => $form_state['values']['owner_name']))->fetchField(); if (!$exists) { drupal\form_set_error('owner_name', drupal\t('Enter a valid username.')); } } /** * Saves settings form for node_assign_owner_action(). */ function assign_owner_action_submit($form, $form_state) { // Username can change, so we need to store the ID, not the username. $uid = db\query('SELECT uid from {users} WHERE name = :name', array(':name' => $form_state['values']['owner_name']))->fetchField(); return array('owner_uid' => $uid); } /** * Generates settings form for node_unpublish_by_keyword_action(). */ function unpublish_by_keyword_action_form($context) { $form['keywords'] = array( '#title' => drupal\t("Keywords"), '#type' => 'textarea', '#description' => drupal\t("The content will be unpublished if it contains any of the phrases above. Use a case-sensitive, comma-separated list of phrases. Example: funny, bungee jumping, \"Company, Inc.\""), '#default_value' => isset($context['keywords']) ? drupal\implode_tags($context['keywords']) : '', ); return $form; } /** * Saves settings form for node_unpublish_by_keyword_action(). */ function unpublish_by_keyword_action_submit($form, $form_state) { return array('keywords' => drupal\explode_tags($form_state['values']['keywords'])); } /** * Unpublishes a node containing certain keywords. * * @param $node * A node object to modify. * @param $context * Array with the following elements: * - 'keywords': Array of keywords. If any keyword is present in the rendered * node, the node's status flag is set to unpublished. * * @ingroup actions */ function unpublish_by_keyword_action($node, $context) { foreach ($context['keywords'] as $keyword) { $elements = view(clone $node); if (strpos(drupal\render($elements), $keyword) !== FALSE || strpos($node->title, $keyword) !== FALSE) { $node->status = NODE_NOT_PUBLISHED; drupal\watchdog('action', 'Set @type %title to unpublished.', array('@type' => type_get_name($node), '%title' => $node->title)); break; } } } /** * @implements system__requirements() */ function system__requirements($phase) { $requirements = array(); // Ensure translations don't break at install time $t = drupal\get_t(); // Only show rebuild button if there are either 0, or 2 or more, rows // in the {node_access} table, or if there are modules that // implement hook_node_grants(). $grant_count = db\query('SELECT COUNT(*) FROM {node_access}')->fetchField(); if ($grant_count != 1 || count(drupal\module_implements('node_grants')) > 0) { $value = drupal\format_plural($grant_count, "One permission in use", "@count permissions in use", array('@count' => $grant_count)); } else { $value = $t("Disabled"); } $description = $t("If the site is experiencing problems with permissions to content, you may have to rebuild the permissions cache. Rebuilding will remove all privileges to content and replace them with permissions based on the current modules and settings. Rebuilding may take some time if there is a lot of content or complex permission settings. After rebuilding has completed, content will automatically use the new permissions."); $requirements['node_access'] = array( 'title' => $t("Node Access Permissions"), 'value' => $value, 'description' => $description . ' ' . drupal\l(drupal\t("Rebuild permissions"), 'admin/reports/status/rebuild'), ); return $requirements; } /** * @implements system__modules_enabled() */ function system__modules_enabled($modules) { // Check if any of the newly enabled modules require the node_access table to // be rebuilt. if (!access_needs_rebuild() && array_intersect($modules, drupal\module_implements('node_grants'))) { access_needs_rebuild(TRUE); } } /** * Controller class for nodes. * * This extends the DrupalDefaultEntityController class, adding required * special handling for node objects. */ class NodeController extends DrupalDefaultEntityController { protected function attachLoad(&$nodes, $revision_id = FALSE) { // Create an array of nodes for each content type and pass this to the // object type specific callback. $typed_nodes = array(); foreach ($nodes as $id => $entity) { $typed_nodes[$entity->type][$id] = $entity; } // Call object type specific callbacks on each typed array of nodes. foreach ($typed_nodes as $node_type => $nodes_of_type) { if (hook($node_type, 'load')) { $function = type_get_base($node_type) . '_load'; $function($nodes_of_type); } } $this->hookLoadArguments[] = array_keys($typed_nodes); parent::attachLoad($nodes, $revision_id); } protected function buildQuery($ids, $conditions = array(), $revision_id = FALSE) { // Ensure that uid is taken from the {node} table, // alias timestamp to revision_timestamp and add revision_uid. $query = parent::buildQuery($ids, $conditions, $revision_id); $fields =& $query->getFields(); unset($fields['timestamp']); $query->addField('revision', 'timestamp', 'revision_timestamp'); $fields['uid']['table'] = 'base'; $query->addField('revision', 'uid', 'revision_uid'); return $query; } } /** * @implements system__file_download_access() */ function system__file_download_access($field, $entity_type, $entity) { if ($entity_type == 'node') { return access('view', $entity); } }