Ejemplo n.º 1
0
 /**
  * The constructor of a class
  *
  * @param	array	$config		An optional associative array of configuration settings.
  *
  * @return	void
  * @since	1.0
  */
 public function __construct($name = 'toolbar', $form = null, $actionPrefix = '', $useAcl = false)
 {
     parent::__construct($name);
     $this->_formName = $form ? $form : $name . 'Form';
     $this->addButtonPath(JPATH_LIBRARIES . DS . 'migur' . DS . 'library' . DS . 'button');
     $this->_actionPrefix = $actionPrefix;
     $this->_useAcl = $useAcl;
 }
Ejemplo n.º 2
0
 /**
  * Constructor
  *
  * @param	String	Define the submenu name.
  */
 public function __construct($name = 'toolbar')
 {
     parent::__construct($name);
 }
Ejemplo n.º 3
0
 function __construct($name)
 {
     parent::__construct($name);
     $inIFrame = true;
 }