- <?php
- * @file
- * Callbacks for adding, editing, and deleting content and managing revisions.
- *
- * Also includes validation, submission and other helper functions.
- *
- * @see node_menu()
- */
-
- * Page callback: Presents the node editing form.
- *
- * @see node_menu()
- */
- function node_page_edit(Node $node) {
- $type_name = node_type_get_name($node);
- backdrop_set_title(t('Edit @type %title', array('@type' => $type_name, '%title' => $node->title)), PASS_THROUGH);
- return backdrop_get_form($node->type . '_node_form', $node);
- }
-
- * Page callback: Displays add content links for available content types.
- *
- * Redirects to node/add/[type] if only one content type is available.
- *
- * @see node_menu()
- */
- function node_add_page() {
- $content = array();
-
- foreach (node_type_get_types() as $node_type) {
- if (node_access('create', $node_type->type)) {
- $href_url_friendly = str_replace('_', '-', $node_type->type);
- $content[$node_type->type] = array(
- 'title' => t($node_type->name),
- 'href'=>'node/add/' . $href_url_friendly,
- 'localized_options' => array('html' => FALSE),
- 'description' => t($node_type->description),
- );
- }
- }
-
-
- if (count($content) !== 1) {
- backdrop_sort($content, array('title'));
- }
-
-
- else {
- $item = array_shift($content);
- backdrop_goto($item['href']);
- }
- return theme('node_add_list', array('content' => $content));
- }
-
- * Page callback: Provides the node submission form.
- *
- * @param $type
- * The node type for the submitted node.
- *
- * @return
- * Returns a node submission form.
- *
- * @see node_menu()
- */
- function node_add($type) {
- global $user;
-
- $types = node_type_get_types();
- $node = entity_create('node', array(
- 'uid' => $user->uid,
- 'name' => (isset($user->name) ? $user->name : ''),
- 'type' => $type,
- 'langcode' => LANGUAGE_NONE,
- ));
- backdrop_set_title(t('Create @name', array('@name' => t($types[$type]->name))), PASS_THROUGH);
- $output = backdrop_get_form($type . '_node_form', $node);
-
- return $output;
- }
-
- * Form validation handler for node_form().
- *
- * @see node_form_submit()
- * @see node_form_submit_build_node()
- */
- function node_form_validate($form, &$form_state) {
-
-
-
- $node = clone $form_state['node'];
- foreach ($form_state['values'] as $key => $value) {
- $node->{$key} = $value;
- }
- node_validate($node, $form, $form_state);
- entity_form_field_validate('node', $form, $form_state);
- }
-
- * Form constructor for the node add/edit form.
- *
- * @see node_form_validate()
- * @see node_form_submit()
- * @see node_form_submit_build_node()
- *
- * @ingroup forms
- */
- function node_form($form, &$form_state, Node $node) {
- $config = config('system.core');
-
-
-
-
- if (!isset($form_state['node'])) {
- node_object_prepare($node);
- $form_state['node'] = $node;
- }
- else {
- $node = $form_state['node'];
- }
- $node_type = node_type_get_type($node->type);
-
- $status = $node->nid ? $node->status : $node_type->settings['status_default'];
- $node_preview = $node_type->settings['node_preview'];
-
-
- $node_tempstore_id = isset($form_state['node_tempstore_id']) ? $form_state['node_tempstore_id'] : node_build_tempstore_id();
- $form_state['node_tempstore_id'] = $node_tempstore_id;
- if ($data = node_tempstore_load($node_tempstore_id)) {
- $node = $data;
- $form_state['entity'] = $node;
- $status = $node->status;
-
-
- if (isset($node->destination)) {
- $form['node_destination'] = array(
- '#type' => 'value',
- '#value' => $node->destination,
- );
- }
-
- node_clear_node_tempstore($node_tempstore_id);
- }
-
-
-
- $form['#attributes']['class'][0] = backdrop_html_class('node-' . $node->type . '-form');
-
- $form['help'] = array(
- '#type' => 'help',
- '#markup' => filter_xss_admin($node_type->help),
- '#access' => !empty($node_type->help),
- '#weight' => -500,
- );
-
-
-
- foreach (array('nid', 'vid', 'uid', 'created', 'type') as $key) {
- $form[$key] = array(
- '#type' => 'value',
- '#value' => isset($node->$key) ? $node->$key : NULL,
- );
- }
-
-
- $form['changed'] = array(
- '#type' => 'hidden',
- '#default_value' => isset($node->changed) ? $node->changed : NULL,
- );
-
-
-
-
- $function = node_type_get_base($node) . '_form';
- if (function_exists($function) && ($extra = $function($node, $form_state))) {
- $form = array_merge_recursive($form, $extra);
- }
-
-
- if (isset($form['title']) && !isset($form['title']['#weight'])) {
- $form['title']['#weight'] = -5;
- }
- $form['#node'] = $node;
-
- if ($node_type->settings['language'] && module_exists('language')) {
- $language_options = array();
- foreach (language_list(TRUE) as $langcode => $language) {
- $option_label = $language->name;
- if (isset($language->native)) {
- $option_label .= ' (' . $language->native . ')';
- }
- $language_options[$langcode] = $option_label;
- }
- $form['langcode'] = array(
- '#type' => 'select',
- '#title' => t('Language'),
- '#default_value' => (isset($node->langcode) ? $node->langcode : ''),
- '#options' => $language_options,
- '#empty_value' => LANGUAGE_NONE,
- );
- }
- else {
- $form['langcode'] = array(
- '#type' => 'value',
-
-
- '#value' => !isset($form['#node']->nid) ? LANGUAGE_NONE : $node->langcode,
- );
- }
-
- $form['additional_settings'] = array(
- '#type' => 'vertical_tabs',
- '#weight' => 99,
- );
-
-
-
- $form['revision_information'] = array(
- '#type' => 'fieldset',
- '#title' => t('Revision information'),
- '#collapsible' => TRUE,
-
- '#collapsed' => !$node->revision,
- '#group' => 'additional_settings',
- '#attributes' => array(
- 'class' => array('node-form-revision-information'),
- ),
- '#attached' => array(
- 'js' => array(backdrop_get_path('module', 'node') . '/js/node.js'),
- ),
- '#weight' => 20,
- '#access' => $node->nid && $node_type->settings['revision_enabled'] && ($node->revision || user_access('administer nodes')),
- );
- $form['revision_information']['revision'] = array(
- '#type' => 'checkbox',
- '#title' => t('Create new revision'),
- '#default_value' => $node->revision,
- '#access' => user_access('administer nodes'),
- );
-
-
-
- if (!$node->revision) {
- $form['revision_information']['revision']['#states'] = array(
- 'checked' => array(
- 'textarea[name="log"]' => array('empty' => FALSE),
- ),
- );
- }
- $form['revision_information']['log'] = array(
- '#type' => 'textarea',
- '#title' => t('Revision log message'),
- '#rows' => 4,
- '#default_value' => !empty($node->log) ? $node->log : '',
- '#description' => t('Briefly describe the changes you have made.'),
- );
-
-
- $form['author'] = array(
- '#type' => 'fieldset',
- '#access' => user_access('administer nodes'),
- '#title' => t('Authoring information'),
- '#collapsible' => TRUE,
- '#collapsed' => TRUE,
- '#group' => 'additional_settings',
- '#attributes' => array(
- 'class' => array('node-form-author'),
- ),
- '#attached' => array(
- 'js' => array(
- backdrop_get_path('module', 'node') . '/js/node.js',
- array(
- 'type' => 'setting',
- 'data' => array('anonymous' => $config->get('anonymous')),
- ),
- ),
- ),
- '#weight' => -5,
- );
- $form['author']['name'] = array(
- '#type' => 'textfield',
- '#title' => t('Authored by'),
- '#maxlength' => 60,
- '#autocomplete_path' => 'user/autocomplete',
- '#default_value' => !empty($node->name) ? $node->name : '',
- '#weight' => -1,
- '#description' => t('Leave blank for %anonymous.', array('%anonymous' => $config->getTranslated('anonymous'))),
- );
- $form['author']['date'] = array(
- '#type' => 'html_datetime',
- '#title' => t('Authored on'),
- '#default_value' => array(
- 'date' => format_date($node->created, 'custom', DATE_FORMAT_DATE),
- 'time' => format_date($node->created, 'custom', DATE_FORMAT_TIME),
- ),
- '#attributes' => array(
- 'date' => array(
- 'min' => '1970-01-01',
- 'max' => '2037-12-31',
- 'placeholder' => t('e.g. @date', array(
- '@date' => format_date(REQUEST_TIME, 'custom', DATE_FORMAT_DATE)
- )),
- ),
- 'time' => array(
- 'placeholder' => t('e.g. @date', array(
- '@date' => format_date(REQUEST_TIME, 'custom', DATE_FORMAT_TIME)
- )),
- ),
- ),
- '#description' => t('Leave blank to use the current time.'),
- );
-
-
- $form['options'] = array(
- '#type' => 'fieldset',
- '#access' => user_access('administer nodes'),
- '#title' => t('Publishing options'),
- '#collapsible' => TRUE,
- '#collapsed' => TRUE,
- '#group' => 'additional_settings',
- '#attributes' => array(
- 'class' => array('node-form-options'),
- ),
- '#attached' => array(
- 'js' => array(backdrop_get_path('module', 'node') . '/js/node.js'),
- ),
- '#weight' => -10,
- );
-
- if ($node->scheduled && $node_type->settings['scheduling_enabled']) {
- $status = NODE_SCHEDULED;
- }
- $form['options']['status'] = array(
- '#type' => 'radios',
- '#options' => array(
- NODE_PUBLISHED => $node->nid ? t('Published') : t('Publish now'),
- NODE_NOT_PUBLISHED => t('Draft'),
- NODE_SCHEDULED => t('Schedule for later'),
- ),
- '#default_value' => $status,
- '#description' => t('Content saved as draft is only accessible to the content creator or site administrators.'),
- );
-
-
- if ($node_type->settings['scheduling_enabled']) {
- $form['options']['status']['#description'] .= ' ' . t('Content set to "Schedule for later" will be saved as draft when the content is created, but will be automatically published on the date and time selected.');
-
-
- $scheduled_date = $node->scheduled ? $node->scheduled : REQUEST_TIME + 86400;
- $form['options']['scheduled'] = array(
- '#type' => 'html_datetime',
- '#title' => t('Publish on'),
- '#default_value' => array(
- 'date' => format_date($scheduled_date, 'custom', DATE_FORMAT_DATE),
- 'time' => format_date($scheduled_date, 'custom', DATE_FORMAT_TIME),
- ),
- '#attributes' => array(
- 'date' => array(
- 'min' => format_date(REQUEST_TIME, 'custom', DATE_FORMAT_DATE),
- 'max' => '2037-12-31',
- 'placeholder' => t('e.g. @date', array(
- '@date' => format_date(REQUEST_TIME, 'custom', DATE_FORMAT_DATE)
- )),
- ),
- 'time' => array(
- 'placeholder' => t('e.g. @date', array(
- '@date' => format_date(REQUEST_TIME, 'custom', DATE_FORMAT_TIME)
- )),
- ),
- ),
- '#states' => array(
- 'visible' => array(
- ':input[name="status"]' => array('value' => NODE_SCHEDULED),
- ),
- ),
- );
- }
- else {
- $form['options']['status'][NODE_SCHEDULED]['#access'] = FALSE;
- }
-
-
- $form['options']['promote'] = array(
- '#type' => 'checkbox',
- '#title' => t('Promoted'),
- '#default_value' => $node->promote,
- '#access' => $node_type->settings['promote_enabled'],
- );
- $form['options']['sticky'] = array(
- '#type' => 'checkbox',
- '#title' => t('Sticky at top of lists'),
- '#default_value' => $node->sticky,
- '#access' => $node_type->settings['sticky_enabled'],
- );
-
-
- if (isset($_GET['destination'])) {
- $path = $_GET['destination'];
- }
- elseif (isset($_SERVER['HTTP_REFERER'])) {
- $path = $_SERVER['HTTP_REFERER'];
-
- if (strpos($path, 'node/preview')) {
- if (isset($node->nid)) {
- $path = 'node/' . $node->nid;
- }
- else {
-
- $path = '<front>';
- }
- }
- }
- elseif (isset($node->nid)) {
- $path = 'node/' . $node->nid;
- }
- else {
- $path = '<front>';
- }
- $options = backdrop_parse_url($path);
- $options['attributes']['class'][] = 'form-cancel';
-
-
- $form['actions'] = array('#type' => 'actions');
- $form['actions']['submit'] = array(
- '#type' => 'submit',
- '#access' => (!form_get_errors()),
- '#value' => t('Save'),
- '#weight' => 5,
- '#submit' => array('node_form_submit'),
- );
- $form['actions']['preview'] = array(
- '#type' => 'submit',
- '#access' => (!form_get_errors() && $node_preview != BACKDROP_DISABLED),
- '#value' => t('Preview'),
- '#weight' => 6,
- '#submit' => array('node_form_preview'),
- );
- if (!empty($node->nid) && node_access('delete', $node)) {
-
- $form['actions']['delete'] = array(
- '#type' => 'link',
- '#title' => t('Delete'),
- '#href' => "node/{$node->nid}/delete",
- '#options' => array(
- 'query' => isset($_GET['destination']) ? backdrop_get_destination() : array(),
- 'attributes' => array('class' => array('button', 'button-secondary', 'form-delete'))
- ),
- '#weight' => 15,
- );
- }
- $form['actions']['cancel'] = array(
- '#type' => 'link',
- '#title' => t('Cancel'),
- '#href' => $options['path'],
- '#options' => $options,
- '#weight' => 20,
- );
-
-
-
-
-
-
- $form['#validate'][] = 'node_form_validate';
- if (!isset($form['#submit']) && function_exists($node->type . '_node_form_submit')) {
- $form['#submit'][] = $node->type . '_node_form_submit';
- }
- $form += array('#submit' => array());
-
- field_attach_form('node', $node, $form, $form_state, $node->langcode);
- return $form;
- }
-
- * Form submission handler that redirects to the node preview().
- *
- * @see node_form_validate()
- * @see node_form_submit_build_node()
- *
- * @since 1.11.0
- */
- function node_form_preview($form, &$form_state) {
- $node_tempstore_id = $form_state['node_tempstore_id'];
- $old_status = $form_state['values']['status'];
- $node = node_form_submit_build_node($form, $form_state);
- $node->old_status = $old_status;
-
- node_set_node_tempstore($node, $node_tempstore_id);
- $form_state['redirect'] = 'node/preview/' . str_replace('_', '-', $node->type) . '/' . $node_tempstore_id;
- if (isset($_GET['destination'])) {
- $_GET['destination'] = $form_state['redirect'];
- }
- }
-
- * Form submission handler that saves the node for node_form().
- *
- * @see node_form_validate()
- * @see node_form_submit_build_node()
- */
- function node_form_submit($form, &$form_state) {
- $original_status = $form_state['node']->status && $form_state['node']->nid;
- $node = node_form_submit_build_node($form, $form_state);
- $insert = empty($node->nid);
- $node->save();
- $node_link = l(t('view'), 'node/' . $node->nid);
- $type = node_type_get_name($node);
- $watchdog_args = array('@type' => $node->type, '%title' => $node->title);
- $t_args = array('@type' => $type, '%title' => $node->title, '@scheduled' => format_date($node->scheduled), '@interval' => format_interval($node->scheduled - REQUEST_TIME));
- $message = '';
-
- if ($node->scheduled) {
- if (!empty($original_status)) {
- $message = t('@type has been unpublished. It is scheduled to be republished on @scheduled (@interval from now).', $t_args);
- }
- else {
- $message = t('@type will be published on @scheduled (@interval from now).', $t_args);
- }
- }
- if ($insert) {
- watchdog('content', '@type: added %title.', $watchdog_args, WATCHDOG_NOTICE, $node_link);
- $message = $message ? $message : t('@type %title has been created.', $t_args);
- }
- else {
- watchdog('content', '@type: updated %title.', $watchdog_args, WATCHDOG_NOTICE, $node_link);
- $message = $message ? $message : t('@type %title has been updated.', $t_args);
- }
- backdrop_set_message($message);
-
- if ($node->nid) {
- $form_state['values']['nid'] = $node->nid;
- $form_state['nid'] = $node->nid;
-
-
- $form_state['redirect'] = '<front>';
- if (node_access('view', $node)) {
- $form_state['redirect'] = 'node/' . $node->nid;
-
-
-
- $type = node_type_get_type($node);
- $bypass_hidden_path = user_access('view hidden paths');
- if ($type->settings['hidden_path'] && !$bypass_hidden_path) {
- $form_state['redirect'] = 'node/' . $node->nid . '/edit';
- }
- }
- }
- else {
-
-
- backdrop_set_message(t('The post could not be saved.'), 'error');
- $form_state['rebuild'] = TRUE;
- }
- }
-
- * Generates a node preview.
- *
- * @param $node_tempstore_id
- * The tempstore ID of the node being previewed.
- * @param $node_type
- * The node type of the node being previewed.
- *
- * @return
- * An HTML-formatted string of a node preview.
- *
- * @see node_form_preview()
- *
- * @since 1.11.0
- */
- function node_preview($node_tempstore_id, $node_type) {
-
-
- if (!$node = node_get_node_tempstore($node_tempstore_id)) {
- backdrop_set_message(t('The preview ID is invalid or the stored preview has expired.'), 'error');
- backdrop_goto('node/add/' . $node_type);
- }
-
-
- $node->status = TRUE;
-
- _field_invoke_multiple('load', 'node', array($node->nid => $node));
-
- if (isset($node->name)) {
-
-
- if ($user = user_load_by_name($node->name)) {
- $node->uid = $user->uid;
- }
- else {
- $node->uid = 0;
- }
- }
- elseif ($node->uid) {
- $user = user_load($node->uid);
- $node->name = $user->name;
- }
-
- $node->changed = REQUEST_TIME;
-
-
- $view_mode = empty($_GET['view_mode']) ? 'full' : $_GET['view_mode'];
-
-
- if ($view_mode == 'full' || $view_mode == 'default') {
- backdrop_set_title($node->title);
- $node->in_preview = TRUE;
- }
-
- $build = array();
- $build['#attached']['js'][] = backdrop_get_path('module', 'node') . '/js/node.preview.js';
- $build['#attached']['css'][] = backdrop_get_path('module', 'node') . '/css/node.preview.css';
- $build['preview_form_select'] = array(
- '#type' => 'container',
- '#attributes' => array(
- 'class' => array('node-preview-container', 'container-inline')
- ),
- );
-
- $form = backdrop_get_form('node_preview_banner_form', $node, $node_tempstore_id);
- $build['preview_form_select']['view-mode'] = $form;
- $build['preview'] = node_view($node, $view_mode);
- return $build;
- }
-
- * Get the preview form selection box.
- *
- * @param $node
- * A node entity.
- * @param $node_tempstore_id
- * The tempstore ID of the node being previewed.
- *
- * @return array $form
- * The form which provides access to node preview operations.
- *
- * @since 1.11.0
- */
- function node_preview_banner_form(array $form, array $form_state, Node $node, $node_tempstore_id) {
-
- $view_mode_options = array();
-
-
- $entity_info = entity_get_info('node');
- $view_modes = $entity_info['view modes'];
- if (is_array($view_modes)) {
- backdrop_sort($view_modes, array('label' => SORT_STRING));
- }
-
- foreach ($view_modes as $key => $info) {
- if (!in_array($key, array('rss', 'search_index', 'search_result'))) {
- $view_mode_options[$key] = $info['label'];
- }
-
-
- if ($key == 'full') {
- $view_mode_options[$key] = t('Default');
- }
- }
-
- $path = 'node/add/' . str_replace('_', '-', $node->bundle());
- if (!empty($node->nid)) {
- $path = 'node/' . $node->nid . '/edit';
- }
- $query = array('node_tempstore_id' => $node_tempstore_id);
- $url = url($path, array('query' => $query, 'absolute' => TRUE));
-
-
- $view_mode = empty($_GET['view_mode']) ? 'full' : $_GET['view_mode'];
-
- $form['node'] = array(
- '#type' => 'value',
- '#value' => $node,
- );
-
- $form['node_tempstore_id'] = array(
- '#type' => 'value',
- '#value' => $node_tempstore_id,
- );
-
- $form['backlink'] = array(
- '#type' => 'link',
- '#title' => t('Back to content editing'),
- '#href' => $url,
- '#attributes' => array('class' => array('node-preview-backlink')),
- );
-
- $form['view_mode'] = array(
- '#type' => 'select',
- '#title' => t('Select a display mode'),
- '#options' => $view_mode_options,
- '#default_value' => $view_mode,
- '#attributes' => array(
- 'onChange' => 'this.form.submit()',
- 'class' => array('node-preview-display-mode', 'preview-button'),
- )
- );
-
-
- $form['view_mode_submit'] = array(
- '#type' => 'submit',
- '#name' => 'op',
- '#submit' => array('node_preview_banner_form_view_mode_submit'),
- '#value' => t('Switch'),
- '#attributes' => array(
- 'class' => array('node-preview-switch-button', 'preview-button', 'js-hide')
- )
- );
- $form['preview_node_submit'] = array(
- '#type' => 'submit',
- '#submit' => array('node_preview_banner_form_node_submit'),
- '#value' => t('Save'),
- '#attributes' => array(
- 'class' => array('node-preview-save-button', 'preview-button'),
- )
- );
- $form['#theme'] = 'node_preview_banner_form';
-
- return $form;
- }
-
- * Submit handler for the node preview banner form.
- *
- * @see node_preview_banner_form()
- *
- * @since 1.11.0
- */
- function node_preview_banner_form_node_submit(array $form, array &$form_state) {
- form_load_include($form_state, 'inc', 'node', 'node.pages');
- $node = $form_state['values']['node'];
- node_object_prepare($node);
- $type = $node->type;
- $build = array();
- $build['node'] = $node;
- $build['values']['status'] = $node->old_status;
- $build['values']['scheduled'] = $node->scheduled;
- $build['values']['op'] = t('Save');
- backdrop_form_submit($type . '_node_form', $build, $node);
- $errors = form_get_errors();
- if (!empty($errors)) {
- foreach ($errors as $field_name => $message) {
- watchdog('node', '%field: %message', array('%message'=> $message, '%field' => $field_name));
- }
- }
- else {
-
- $destination = '<front>';
- if (node_access('view', $node)) {
- $destination = 'node/' . $node->nid;
-
-
- $type = node_type_get_type($node);
- $bypass_hidden_path = user_access('view hidden paths');
- if ($type->settings['hidden_path'] && !$bypass_hidden_path) {
- $destination = 'node/' . $node->nid . '/edit';
- }
- }
- backdrop_goto($destination);
- }
- }
-
- * Submit handler for the node preview view mode selection form.
- *
- * @see node_preview_banner_form()
- */
- function node_preview_banner_form_view_mode_submit(array $form, array &$form_state) {
- $node = $form_state['values']['node'];
- $node_tempstore_id = $form_state['values']['node_tempstore_id'];
- $form_state['redirect'] = array('node/preview/' . str_replace('_', '-', $node->type) . '/' . $node_tempstore_id, array('query' => array('view_mode' => $form_state['values']['view_mode'])));
- }
-
- * Updates the form state's node entity by processing this submission's values.
- *
- * This is the default builder function for the node form. It is called during
- * the "Save" submit handler to retrieve the entity to save. This function can
- * also be called by a "Next" button of a wizard to update the form state's
- * entity with the current step's values before proceeding to the next step.
- *
- * @see node_form()
- * @see node_form_validate()
- * @see node_form_submit()
- */
- function node_form_submit_build_node($form, &$form_state) {
-
-
-
-
-
-
-
- unset($form_state['submit_handlers']);
- $node = $form_state['node'];
-
-
- $form_state['values']['status'] = (int) $form_state['values']['status'];
- if ($form_state['values']['status'] === NODE_SCHEDULED) {
- if (is_array($form_state['values']['scheduled'])) {
- $form_state['values']['scheduled'] = $form_state['values']['scheduled']['date'] . ' ' . $form_state['values']['scheduled']['time'];
- }
- $schedule_date = new BackdropDateTime($form_state['values']['scheduled']);
- $form_state['values']['scheduled'] = $schedule_date->format('U');
- $form_state['values']['status'] = NODE_NOT_PUBLISHED;
- }
-
- else {
- $form_state['values']['scheduled'] = 0;
- }
-
- form_execute_handlers('submit', $form, $form_state);
- entity_form_submit_build_entity('node', $node, $form, $form_state);
- node_submit($node);
- foreach (module_implements('node_submit') as $module) {
- $function = $module . '_node_submit';
- $function($node, $form, $form_state);
- }
- return $node;
- }
-
- * Page callback: Form constructor for node deletion confirmation form.
- *
- * @see node_menu()
- * @see node_delete_confirm_submit()
- */
- function node_delete_confirm($form, &$form_state, $node) {
- $form['#node'] = $node;
-
- $form['nid'] = array('#type' => 'value', '#value' => $node->nid);
- return confirm_form($form,
- t('Are you sure you want to delete %title?', array('%title' => $node->title)),
- 'node/' . $node->nid,
- t('This action cannot be undone.'),
- t('Delete'),
- t('Cancel')
- );
- }
-
- * Form submission handler for node_delete_confirm().
- *
- * @see node_delete_confirm()
- */
- function node_delete_confirm_submit($form, &$form_state) {
- if ($form_state['values']['confirm']) {
- $node = node_load($form_state['values']['nid']);
- node_delete($form_state['values']['nid']);
- watchdog('content', '@type: deleted %title.', array('@type' => $node->type, '%title' => $node->title));
- backdrop_set_message(t('@type %title has been deleted.', array('@type' => node_type_get_name($node), '%title' => $node->title)));
- }
-
- $form_state['redirect'] = '<front>';
- }
-
- * Page callback: Generates an overview table of older revisions of a node.
- *
- * @param Node $node
- * A node object.
- *
- * @return array
- * An array as expected by backdrop_render().
- *
- * @see node_menu()
- */
- function node_revision_overview($node) {
- backdrop_set_title(t('Revisions for %title', array('%title' => $node->title)), PASS_THROUGH);
-
- $header = array(t('Revision'), t('Operations'));
-
- $revisions = node_revision_list($node);
-
- $rows = array();
- $revert_permission = FALSE;
- if ((user_access('revert revisions') || user_access('administer nodes')) && node_access('update', $node)) {
- $revert_permission = TRUE;
- }
- $delete_permission = FALSE;
- if ((user_access('delete revisions') || user_access('administer nodes')) && node_access('delete', $node)) {
- $delete_permission = TRUE;
- }
- foreach ($revisions as $revision) {
- $row = array();
- if ($revision->current_vid > 0) {
- $row[] = array('data' => t('!date by !username', array('!date' => l(format_date($revision->timestamp, 'short'), "node/$node->nid"), '!username' => theme('username', array('account' => $revision))))
- . (($revision->log != '') ? '<p class="revision-log">' . filter_xss($revision->log) . '</p>' : ''),
- 'class' => array('revision-current'));
- $row[] = array('data' => backdrop_placeholder(t('current revision')), 'class' => array('revision-current'));
- }
- else {
- $row[] = t('!date by !username', array('!date' => l(format_date($revision->timestamp, 'short'), "node/$node->nid/revisions/$revision->vid/view"), '!username' => theme('username', array('account' => $revision))))
- . (($revision->log != '') ? '<p class="revision-log">' . filter_xss($revision->log) . '</p>' : '');
- if ($revert_permission) {
- $links['revert'] = array(
- 'title' => t('Revert'),
- 'href' => "node/$node->nid/revisions/$revision->vid/revert",
- );
- }
- if ($delete_permission) {
- $links['delete'] = array(
- 'title' => t('Delete'),
- 'href' => "node/$node->nid/revisions/$revision->vid/delete",
- );
- }
- $row[] = array(
- 'data' => array(
- '#type' => 'operations',
- '#links' => $links,
- ),
- );
- }
- $rows[] = $row;
- }
-
- $build['node_revisions_table'] = array(
- '#theme' => 'table',
- '#rows' => $rows,
- '#header' => $header,
- '#attached' => array (
- 'css' => array(backdrop_get_path('module', 'node') . '/css/node.admin.css'),
- ),
- );
-
- return $build;
- }
-
- * Asks for confirmation of the reversion to prevent against CSRF attacks.
- *
- * @param int $node_revision
- * The node revision ID.
- *
- * @return array
- * An array as expected by backdrop_render().
- *
- * @see node_menu()
- * @see node_revision_revert_confirm_submit()
- *
- * @ingroup forms
- */
- function node_revision_revert_confirm($form, $form_state, $node_revision) {
- $form['#node_revision'] = $node_revision;
- return confirm_form($form, t('Are you sure you want to revert to the revision from %revision-date?', array('%revision-date' => format_date($node_revision->revision_timestamp))), 'node/' . $node_revision->nid . '/revisions', '', t('Revert'), t('Cancel'));
- }
-
- * Form submission handler for node_revision_revert_confirm().
- */
- function node_revision_revert_confirm_submit($form, &$form_state) {
- $node_revision = $form['#node_revision'];
- $node_revision->revision = 1;
-
- $node_revision->setIsActiveRevision();
-
-
-
- $original_revision_timestamp = $node_revision->revision_timestamp;
-
- $node_revision->log = t('Copy of the revision from %date.', array('%date' => format_date($original_revision_timestamp)));
-
- $node_revision->save();
-
- watchdog('content', '@type: reverted %title revision %revision.', array('@type' => $node_revision->type, '%title' => $node_revision->title, '%revision' => $node_revision->vid));
- backdrop_set_message(t('@type %title has been reverted back to the revision from %revision-date.', array('@type' => node_type_get_name($node_revision), '%title' => $node_revision->title, '%revision-date' => format_date($original_revision_timestamp))));
- $form_state['redirect'] = 'node/' . $node_revision->nid . '/revisions';
- }
-
- * Form constructor for the revision deletion confirmation form.
- *
- * This form prevents against CSRF attacks.
- *
- * @param $node_revision
- * The node revision ID.
- *
- * @return
- * An array as expected by backdrop_render().
- *
- * @see node_menu()
- * @see node_revision_delete_confirm_submit()
- *
- * @ingroup forms
- */
- function node_revision_delete_confirm($form, $form_state, $node_revision) {
- $form['#node_revision'] = $node_revision;
- return confirm_form($form, t('Are you sure you want to delete the revision from %revision-date?', array('%revision-date' => format_date($node_revision->revision_timestamp))), 'node/' . $node_revision->nid . '/revisions', t('This action cannot be undone.'), t('Delete'), t('Cancel'));
- }
-
- * Form submission handler for node_revision_delete_confirm().
- */
- function node_revision_delete_confirm_submit($form, &$form_state) {
- $node_revision = $form['#node_revision'];
- node_revision_delete($node_revision->vid);
-
- watchdog('content', '@type: deleted %title revision %revision.', array('@type' => $node_revision->type, '%title' => $node_revision->title, '%revision' => $node_revision->vid));
- backdrop_set_message(t('Revision from %revision-date of @type %title has been deleted.', array('%revision-date' => format_date($node_revision->revision_timestamp), '@type' => node_type_get_name($node_revision), '%title' => $node_revision->title)));
- $form_state['redirect'] = 'node/' . $node_revision->nid;
- if (db_query('SELECT COUNT(vid) FROM {node_revision} WHERE nid = :nid', array(':nid' => $node_revision->nid))->fetchField() > 1) {
- $form_state['redirect'] .= '/revisions';
- }
- }
-
- * Autocomplete callback for nodes by title.
- *
- * Searches for a node by title, but then identifies it by nid, so the actual
- * returned value can be used later by the form.
- *
- * The returned $matches array has
- * - key: The title, with the identifying nid in brackets, like "Some node
- * title [3325]"
- * - value: the title which will is displayed in the autocomplete pulldown.
- *
- * Note that we must use a key style that can be parsed successfully and
- * unambiguously. For example, if we might have node titles that could have
- * [3325] in them, then we'd have to use a more restrictive token.
- *
- * @param string $string
- * The string that will be searched.
- */
- function node_autocomplete($string = '') {
- $matches = array();
- if ($string) {
- if (is_numeric($string)) {
- $result = db_select('node')
- ->fields('node', array('nid', 'title'))
- ->condition('nid', $string)
- ->addTag('node_access')
- ->execute();
- foreach ($result as $node) {
- $matches[$node->title . " [$node->nid]"] = check_plain($node->title) . ' [' .$node->nid . ']';
- }
- }
- $result = db_select('node')
- ->fields('node', array('nid', 'title'))
- ->condition('title', db_like($string) . '%', 'LIKE')
- ->addTag('node_access')
- ->range(0, 10)
- ->execute();
- foreach ($result as $node) {
- $matches[$node->title . " [$node->nid]"] = check_plain($node->title) . ' [' .$node->nid . ']';
- }
- }
-
- backdrop_json_output($matches);
- }
-
- * Node title validation handler.
- *
- * Validate handler to convert our string like "Some node title [3325]" into a
- * nid.
- *
- * In case the user did not actually use the autocomplete or have a valid string
- * there, we'll try to look up a result anyway giving it our best guess.
- *
- * Since the user chose a unique node, we must now use the same one in our
- * submit handler, which means we need to look in the string for the nid.
- *
- * @param $string
- * The string to validate.
- * @return $nid
- * A node ID if matched, or NULL if no match.
- *
- * @see node_autocomplete()
- */
- function node_autocomplete_validate($string) {
- $matches = array();
- $nid = 0;
-
-
-
- $result = preg_match('/\[([0-9]+)\]$/', $string, $matches);
- if ($result > 0) {
-
-
- $nid = $matches[$result];
-
- $node = node_load($nid);
- if (empty($node)) {
- return NULL;
- }
- }
-
- elseif (is_numeric($string) && node_load($string)) {
- $nid = (int) $string;
- }
-
- else {
- $nid = db_select('node')
- ->fields('node', array('nid'))
- ->condition('title', db_like($string) . '%', 'LIKE')
- ->addTag('node_access')
- ->range(0, 1)
- ->execute()
- ->fetchField();
- }
-
- return (!empty($nid)) ? $nid : NULL;
- }