mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 09:04:53 +01:00
63 lines
2.0 KiB
PHP
63 lines
2.0 KiB
PHP
<?php
|
|
/**
|
|
* EGroupware - eTemplate serverside button widget
|
|
*
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
* @package etemplate
|
|
* @subpackage api
|
|
* @link http://www.egroupware.org
|
|
* @author Ralf Becker <RalfBecker@outdoor-training.de>
|
|
* @copyright 2002-11 by RalfBecker@outdoor-training.de
|
|
* @version $Id$
|
|
*/
|
|
|
|
/**
|
|
* eTemplate button widget
|
|
*/
|
|
class etemplate_widget_button extends etemplate_widget
|
|
{
|
|
/**
|
|
* Validate buttons
|
|
*
|
|
* Readonly buttons can NOT be pressed!
|
|
*
|
|
* @param string $cname current namespace
|
|
* @param array $expand values for keys 'c', 'row', 'c_', 'row_', 'cont'
|
|
* @param array $content
|
|
* @param array &$validated=array() validated content
|
|
* @return boolean true if no validation error, false otherwise
|
|
*/
|
|
public function validate($cname, array $expand, array $content, &$validated=array())
|
|
{
|
|
$form_name = self::form_name($cname, $this->id, $expand);
|
|
//error_log(__METHOD__."('$cname', ".array2string($expand).", ...) $this: get_array(\$content, '$form_name')=".array2string(self::get_array($content, $form_name)));
|
|
|
|
if (!$this->is_readonly($cname, $form_name))
|
|
{
|
|
$value = self::get_array($content, $form_name);
|
|
|
|
if(
|
|
// Handle case of not existing $row_cont[id], eg: create[]
|
|
is_array($value) && count($value) == 1 ||
|
|
// check === true, as get_array() ignores a "[]" postfix and returns array() eg. for a not existing $row_cont[id] in "delete[$row_cont[id]]"
|
|
$value == true
|
|
)
|
|
{
|
|
$valid =& self::get_array($validated, $form_name, true);
|
|
$valid = is_array($value) ? $value : 'pressed';
|
|
|
|
// recored pressed button globally, was in the template object before, not sure self::$request is the right place ...
|
|
if ($this->type == 'cancel' || $form_name == 'cancel' || substr($form_name,-10) == '[cancel]')
|
|
{
|
|
self::$request->canceled = true;
|
|
}
|
|
else
|
|
{
|
|
self::$request->button_pressed = true;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
etemplate_widget::registerWidget('etemplate_widget_button', array('button','buttononly'));
|