0byt3m1n1
Path:
/
data
/
applications
/
aps
/
tikiwiki
/
14.1-0
/
standard
/
htdocs
/
lib
/
core
/
Tracker
/
Field
/
[
Home
]
File: Action.php
<?php // (c) Copyright 2002-2015 by authors of the Tiki Wiki CMS Groupware Project // // All Rights Reserved. See copyright.txt for details and a complete list of authors. // Licensed under the GNU LESSER GENERAL PUBLIC LICENSE. See license.txt for details. // $Id: Action.php 53803 2015-02-06 00:42:50Z jyhem $ class Tracker_Field_Action implements Tracker_Field_Interface { public static function getTypes() { return array( 'x' => array( 'name' => tr('Action'), 'description' => tr('Create a form which will be posted somewhere, not necessarily trackers or even Tiki.'), 'help' => 'Action Tracker Field', 'prefs' => array('trackerfield_action'), 'tags' => array('experimental'), 'default' => 'n', 'params' => array( 'label' => array( 'name' => tr('Name'), 'description' => tr('The title of the button'), 'filter' => 'text', 'legacy_index' => 0, ), 'post' => array( 'name' => tr('Post'), 'description' => tr('The protocol to use at the form: either get or post'), 'filter' => 'text', 'legacy_index' => 1, ), 'script' => array( 'name' => tr('Script'), 'description' => tr('The arbitrary url of the destination of the form'), 'filter' => 'text', 'example' => 'tiki-index.php', 'legacy_index' => 2, ), 'parameters' => array( 'name' => tr('Parameters'), 'description' => tr('Here page:fieldname can be repeated several times, it specifies the variable names to pass in the form, as well as value taken from the current item from field named fieldname. highlight=test can also be repeated and is useful for fixed values as params to pass to the form.'), 'filter' => 'text', 'count' => '*', 'example' => 'page:fieldname', 'legacy_index' => 3, ), ), ), ); } function getFieldData(array $requestData = array()) { return array(); } function renderInput($context = array()) { return null; } function renderOutput($context = array()) { return null; } function watchCompare($new, $old) { return null; } }