41 lines
862 B
PHP
41 lines
862 B
PHP
<?php
|
|
|
|
/**
|
|
* @file
|
|
* Definition of Views\node\Plugin\views\argument_default\Node.
|
|
*/
|
|
|
|
namespace Views\node\Plugin\views\argument_default;
|
|
|
|
use Drupal\Core\Annotation\Plugin;
|
|
use Drupal\Core\Annotation\Translation;
|
|
use Drupal\views\Plugin\views\argument_default\ArgumentDefaultPluginBase;
|
|
|
|
/**
|
|
* Default argument plugin to extract a node via menu_get_object
|
|
*
|
|
* This plugin actually has no options so it odes not need to do a great deal.
|
|
*
|
|
* @Plugin(
|
|
* id = "node",
|
|
* module = "node",
|
|
* title = @Translation("Content ID from URL")
|
|
* )
|
|
*/
|
|
class Node extends ArgumentDefaultPluginBase {
|
|
|
|
function get_argument() {
|
|
foreach (range(1, 3) as $i) {
|
|
$node = menu_get_object('node', $i);
|
|
if (!empty($node)) {
|
|
return $node->nid;
|
|
}
|
|
}
|
|
|
|
if (arg(0) == 'node' && is_numeric(arg(1))) {
|
|
return arg(1);
|
|
}
|
|
}
|
|
|
|
}
|