| 1 |
<?php |
<?php |
| 2 |
// $Id: plugins.inc,v 1.152.2.5 2009/09/24 23:28:23 merlinofchaos Exp $ |
// $Id: plugins.inc,v 1.152.2.6 2009/11/11 01:08:29 merlinofchaos Exp $ |
| 3 |
/** |
/** |
| 4 |
* @file plugins.inc |
* @file plugins.inc |
| 5 |
* Built in plugins for Views output handling. |
* Built in plugins for Views output handling. |
| 181 |
), |
), |
| 182 |
), |
), |
| 183 |
'argument default' => array( |
'argument default' => array( |
| 184 |
// This type of plugin does not conform to the standard and |
'parent' => array( |
| 185 |
// uses 'fixed' as the parent rather than having a separate parent. |
'no ui' => TRUE, |
| 186 |
|
'handler' => 'views_plugin_argument_default', |
| 187 |
|
'parent' => '', |
| 188 |
|
), |
| 189 |
'fixed' => array( |
'fixed' => array( |
| 190 |
'title' => t('Fixed entry'), |
'title' => t('Fixed entry'), |
| 191 |
'handler' => 'views_plugin_argument_default', |
'handler' => 'views_plugin_argument_default_fixed', |
| 192 |
), |
), |
| 193 |
'php' => array( |
'php' => array( |
| 194 |
'title' => t('PHP Code'), |
'title' => t('PHP Code'), |
| 195 |
'handler' => 'views_plugin_argument_default_php', |
'handler' => 'views_plugin_argument_default_php', |
|
'parent' => 'fixed', |
|
| 196 |
), |
), |
| 197 |
), |
), |
| 198 |
'argument validator' => array( |
'argument validator' => array( |