comparison sites/all/modules/ctools/plugins/arguments/node_edit.inc @ 0:ff03f76ab3fe

initial version
author danieleb <danielebarchiesi@me.com>
date Wed, 21 Aug 2013 18:51:11 +0100
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:ff03f76ab3fe
1 <?php
2
3 /**
4 * @file
5 *
6 * Plugin to provide an argument handler for a Node edit form
7 */
8
9 /**
10 * Plugins are described by creating a $plugin array which will be used
11 * by the system that includes this file.
12 */
13 $plugin = array(
14 'title' => t("Node edit form: node ID"),
15 // keyword to use for %substitution
16 'keyword' => 'node',
17 'description' => t('Creates a node edit form context from a node ID argument.'),
18 'context' => 'ctools_node_edit_context',
19 'placeholder form' => array(
20 '#type' => 'textfield',
21 '#description' => t('Enter the node ID of a node for this argument'),
22 ),
23 );
24
25 /**
26 * Discover if this argument gives us the node we crave.
27 */
28 function ctools_node_edit_context($arg = NULL, $conf = NULL, $empty = FALSE) {
29 // If unset it wants a generic, unfilled context.
30 if ($empty) {
31 return ctools_context_create_empty('node_edit_form');
32 }
33
34 // We can accept either a node object or a pure nid.
35 if (is_object($arg)) {
36 return ctools_context_create('node_edit_form', $arg);
37 }
38
39 if (!is_numeric($arg)) {
40 return FALSE;
41 }
42
43 $node = node_load($arg);
44 if (!$node) {
45 return NULL;
46 }
47
48 // This will perform a node_access check, so we don't have to.
49 return ctools_context_create('node_edit_form', $node);
50 }
51