%PDF- %PDF-
| Direktori : /home1/lightco1/www/administrator/components/com_poweradmin/helpers/html/toolbar/ |
| Current File : //home1/lightco1/www/administrator/components/com_poweradmin/helpers/html/toolbar/jsnbutton.php |
<?php
/*------------------------------------------------------------------------
# JSN PowerAdmin
# ------------------------------------------------------------------------
# author JoomlaShine.com Team
# copyright Copyright (C) 2012 JoomlaShine.com. All Rights Reserved.
# Websites: http://www.joomlashine.com
# Technical Support: Feedback - http://www.joomlashine.com/joomlashine/contact-us.html
# @license - http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL
# @version $Id: jsnbutton.php 12506 2012-05-09 03:55:24Z hiennh $
-------------------------------------------------------------------------*/
defined('JPATH_PLATFORM') or die;
/**
* Button base class
*
* The JButton is the base class for all JButton types
*
* @package Joomla.Platform
* @subpackage HTML
* @since 11.1
*/
abstract class JSNButton extends JObject
{
/**
* element name
*
* This has to be set in the final renderer classes.
*
* @var string
*/
protected $_name = null;
/**
* reference to the object that instantiated the element
*
* @var object
*/
protected $_parent = null;
/**
* Constructor
*/
public function __construct($parent = null)
{
$this->_parent = $parent;
}
/**
* Get the element name
*
* @return string type of the parameter
*/
public function getName()
{
return $this->_name;
}
/**
*
* Render toolbar button
*
* @param String $definition
*/
public function render(&$definition)
{
/*
* Initialise some variables
*/
$html = null;
$id = call_user_func_array(array(&$this, 'fetchId'), $definition);
$action = call_user_func_array(array(&$this, 'fetchButton'), $definition);
// Build id attribute
if ($id) {
$id = strtolower($id);
$id = "id=\"$id\"";
}
// Build the HTML Button
$html .= "<div class=\"btn-wrapper\" $id>\n";
$html .= $action;
$html .= "</div>\n";
return $html;
}
/**
* Method to get the CSS class name for an icon identifier
*
* Can be redefined in the final class
*
* @param string $identifier Icon identification string
* @return string CSS class name
* @since 11.1
*/
public function fetchIconClass($identifier)
{
return "icon-32-$identifier";
}
}