Source for file block.pnformtabbedpanel.php
Documentation is available at block.pnformtabbedpanel.php
* @copyright (c) 2006, Zikula Development Team
* @link http://www.zikula.org
* @version $Id: block.pnformtabbedpanel.php 24342 2008-06-06 12:03:14Z markwest $
* @license GNU/GPL - http://www.gnu.org/copyleft/gpl.html
* @package Zikula_Template_Plugins
* Use this with the {@link pnFormTabbedPanelSet}.
* ID of parent panel set (don't touch)
* Panel index (don't touch)
return __FILE__ ; // FIXME: may be found in smarty's data???
function create(&$render, &$params)
// Locate parent panelset and register with it
$panelSet = &$this->parentPlugin;
$panelSet = &$panelSet->parentPlugin;
$panelSet->registerTabbedPanel($render, $this, $this->title);
$style = ($this->selected ? '' : ' style="display:none"');
function renderEnd(&$render)
function smarty_block_pnformtabbedpanel($params, $content, &$render)
return $render->pnFormRegisterBlock('pnFormTabbedPanel', $params, $content);
|