2013-05-10 22:39:12 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* EGroupware - eTemplate serverside Tabs 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 2013 Nathan Gray
|
|
|
|
* @version $Id$
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* eTemplate Tabs widget stacks multiple sub-templates and lets you switch between them
|
2014-03-18 12:01:46 +01:00
|
|
|
*
|
|
|
|
* Available attributes:
|
|
|
|
* - add_tabs: true: tabs contain addtional tabs, false: tabs replace tabs in template
|
|
|
|
* - tabs: array with (additional) tabs with values for following keys
|
|
|
|
* + label: label of tab
|
|
|
|
* + template: template name with optional '?'.filemtime as cache-buster
|
|
|
|
* optional:
|
|
|
|
* + prepend: true prepend tab to existing ones, false (default) append tabs
|
|
|
|
* + hidden:
|
|
|
|
* + id: optinal namespace (content attribute of template)
|
2013-05-10 22:39:12 +02:00
|
|
|
*/
|
2013-06-11 20:59:34 +02:00
|
|
|
class etemplate_widget_tabbox extends etemplate_widget
|
2013-05-10 22:39:12 +02:00
|
|
|
{
|
2013-06-11 20:59:34 +02:00
|
|
|
/**
|
2013-12-12 21:15:36 +01:00
|
|
|
* Fill additional tabs
|
|
|
|
*
|
|
|
|
* @param string $cname
|
|
|
|
*/
|
|
|
|
public function beforeSendToClient($cname)
|
|
|
|
{
|
2014-03-18 12:01:46 +01:00
|
|
|
unset($cname);
|
2013-06-11 20:59:34 +02:00
|
|
|
if($this->attrs['tabs'])
|
|
|
|
{
|
2013-12-12 21:15:36 +01:00
|
|
|
// add_tabs toggles replacing or adding to existing tabs
|
|
|
|
if(!$this->attrs['add_tabs'])
|
|
|
|
{
|
|
|
|
$this->children[1]->children = array();
|
|
|
|
}
|
2013-06-11 20:59:34 +02:00
|
|
|
foreach($this->attrs['tabs'] as $tab)
|
|
|
|
{
|
2014-03-18 12:01:46 +01:00
|
|
|
$template= clone etemplate_widget_template::instance($tab['template']);
|
|
|
|
if($tab['id']) $template->attrs['content'] = $tab['id'];
|
|
|
|
$this->children[1]->children[] = $template;
|
|
|
|
unset($template);
|
2013-06-11 20:59:34 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-10 22:39:12 +02:00
|
|
|
/**
|
|
|
|
* Validate input - just pass through, tabs doesn't care
|
|
|
|
*
|
|
|
|
* @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
|
|
|
|
* @param array $expand=array values for keys 'c', 'row', 'c_', 'row_', 'cont'
|
|
|
|
*/
|
|
|
|
public function validate($cname, array $expand, array $content, &$validated=array())
|
|
|
|
{
|
2013-07-17 11:38:37 +02:00
|
|
|
$form_name = self::form_name($cname, $this->id, $expand);
|
2013-11-12 17:38:23 +01:00
|
|
|
|
|
|
|
if (!empty($form_name))
|
2013-05-10 22:39:12 +02:00
|
|
|
{
|
|
|
|
$value = self::get_array($content, $form_name);
|
|
|
|
$valid =& self::get_array($validated, $form_name, true);
|
2014-03-18 12:01:46 +01:00
|
|
|
if (true) $valid = $value;
|
2013-05-10 22:39:12 +02:00
|
|
|
|
|
|
|
if(!$this->attrs['tabs'])
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Make sure additional tabs are processed
|
2013-12-12 21:15:36 +01:00
|
|
|
|
|
|
|
// add_tabs toggles replacing or adding to existing tabs
|
|
|
|
if(!$this->attrs['add_tabs'])
|
|
|
|
{
|
|
|
|
$this->children[1]->children = array();
|
|
|
|
}
|
2013-05-10 22:39:12 +02:00
|
|
|
foreach($this->attrs['tabs'] as $tab)
|
|
|
|
{
|
2014-03-18 12:01:46 +01:00
|
|
|
$template= clone etemplate_widget_template::instance($tab['template']);
|
|
|
|
if($tab['id'] && $content[$tab['id']]) $template->attrs['content'] = $tab['id'];
|
|
|
|
$this->children[1]->children[] = $template;
|
|
|
|
unset($template);
|
2013-05-10 22:39:12 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
etemplate_widget::registerWidget('etemplate_widget_tabbox', array('tabbox'));
|