mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:50 +01:00
82 lines
2.1 KiB
PHP
82 lines
2.1 KiB
PHP
<?php
|
|
/**
|
|
* EGroupware - eTemplate serverside date widget
|
|
*
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
* @package etemplate
|
|
* @subpackage api
|
|
* @link http://www.egroupware.org
|
|
* @author Nathan Gray
|
|
* @copyright 2011 Nathan Gray
|
|
* @version $Id$
|
|
*/
|
|
|
|
/**
|
|
* eTemplate project manager widgets
|
|
*
|
|
* @todo Move to projectmanager app once etemplate_new recognises other app's widgets
|
|
*/
|
|
class etemplate_widget_projectmanager extends etemplate_widget_transformer
|
|
{
|
|
protected static $transformation = array(
|
|
'type' => array(
|
|
'projectmanager-select' => 'menupopup',
|
|
'projectmanager-pricelist' => 'menupopup',
|
|
'projectmanager-select-erole' => 'menupopup',
|
|
)
|
|
);
|
|
|
|
/**
|
|
* (Array of) comma-separated list of legacy options to automatically replace when parsing with set_attrs
|
|
*
|
|
* @var string|array
|
|
*/
|
|
protected $legacy_options = '';
|
|
|
|
/**
|
|
* Fill type options in self::$request->sel_options to be used on the client
|
|
*
|
|
* @param string $cname
|
|
*/
|
|
public function beforeSendToClient($cname)
|
|
{
|
|
$form_name = self::form_name($cname, $this->id);
|
|
if (!is_array(self::$request->sel_options[$form_name])) self::$request->sel_options[$form_name] = array();
|
|
|
|
if ($this->type)
|
|
{
|
|
// += to keep further options set by app code
|
|
$pm_widget = new projectmanager_widget();
|
|
$cell = $this->attrs + array('type'=>$this->type);
|
|
$pm_widget->pre_process($form_name, self::get_array(self::$request->content, $form_name),
|
|
$cell,
|
|
$this->attrs['readonly'],
|
|
$extension,
|
|
$template
|
|
);
|
|
self::$request->sel_options[$form_name] += $cell['sel_options'];
|
|
|
|
// if no_lang was modified, forward modification to the client
|
|
if ($cell['no_lang'] != $this->attr['no_lang'])
|
|
{
|
|
self::setElementAttribute($form_name, 'no_lang', $no_lang);
|
|
}
|
|
}
|
|
|
|
parent::beforeSendToClient($cname);
|
|
}
|
|
|
|
/**
|
|
* Validate input
|
|
*
|
|
* @todo
|
|
* @param string $cname current namespace
|
|
* @param array $content
|
|
* @param array &$validated=array() validated content
|
|
* @return boolean true if no validation error, false otherwise
|
|
*/
|
|
public function validate($cname, array $content, &$validated=array())
|
|
{
|
|
}
|
|
}
|