0byt3m1n1-V2
Path:
/
home
/
a
/
c
/
a
/
academiac
/
www
/
[
Home
]
File: button.php.tar
home/academiac/www/libraries/joomla/html/toolbar/button.php 0000644 00000004046 15137260401 0020101 0 ustar 00 <?php /** * @package Joomla.Platform * @subpackage HTML * * @copyright Copyright (C) 2005 - 2014 Open Source Matters, Inc. All rights reserved. * @license GNU General Public License version 2 or later; see LICENSE */ 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 JButton 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 JButton */ protected $_parent = null; /** * Constructor * * @param object $parent The parent */ public function __construct($parent = null) { $this->_parent = $parent; } /** * Get the element name * * @return string type of the parameter */ public function getName() { return $this->_name; } /** * Get the HTML to render the button * * @param array &$definition Parameters to be passed * * @return string */ 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 = "id=\"$id\""; } // Build the HTML Button $html .= "<li class=\"button\" $id>\n"; $html .= $action; $html .= "</li>\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"; } /** * Get the button * * Defined in the final button class * * @return string * * @since 11.1 */ abstract public function fetchButton(); } home/academiac/www/administrator/components/com_admirorgallery/models/button.php 0000604 00000001456 15137336267 0024455 0 ustar 00 <?php /*------------------------------------------------------------------------ # com_admirorgallery - Admiror Gallery Component # ------------------------------------------------------------------------ # author Igor Kekeljevic & Nikola Vasiljevski # copyright Copyright (C) 2011 admiror-design-studio.com. All Rights Reserved. # @license - http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL # Websites: http://www.admiror-design-studio.com/joomla-extensions # Technical Support: Forum - http://www.vasiljevski.com/forum/index.php # Version: 4.5.0 -------------------------------------------------------------------------*/ // Check to ensure this file is included in Joomla! defined('_JEXEC') or die(); jimport( 'joomla.application.component.model' ); class AdmirorgalleryModelButton extends JModel { } home/academiac/www/components/com_admirorgallery/models/button.php 0000604 00000001401 15137423631 0021553 0 ustar 00 <?php /*------------------------------------------------------------------------ # com_admirorgallery - Admiror Gallery Component # ------------------------------------------------------------------------ # author Igor Kekeljevic & Nikola Vasiljevski # copyright Copyright (C) 2011 admiror-design-studio.com. All Rights Reserved. # @license - http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL # Websites: http://www.admiror-design-studio.com/joomla-extensions # Technical Support: Forum - http://www.vasiljevski.com/forum/index.php # Version: 4.5.0 -------------------------------------------------------------------------*/ // no direct access defined('_JEXEC') or die('Restricted access'); require_once(JPATH_COMPONENT_ADMINISTRATOR.DS.'models'.DS.'button.php'); home/academiac/www/administrator/components/com_admirorgallery/controllers/button.php 0000604 00000001622 15137500230 0025512 0 ustar 00 <?php /*------------------------------------------------------------------------ # com_admirorgallery - Admiror Gallery Component # ------------------------------------------------------------------------ # author Igor Kekeljevic & Nikola Vasiljevski # copyright Copyright (C) 2011 admiror-design-studio.com. All Rights Reserved. # @license - http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL # Websites: http://www.admiror-design-studio.com/joomla-extensions # Technical Support: Forum - http://www.vasiljevski.com/forum/index.php # Version: 4.5.0 -------------------------------------------------------------------------*/ // no direct access defined( '_JEXEC' ) or die( 'Restricted access' ); jimport( 'joomla.application.component.controller' ); class AdmirorgalleryControllerButton extends AdmirorgalleryController { /** * Constructor */ function __construct() { parent::__construct(); } } home/academiac/www/components/com_admirorgallery/controllers/button.php 0000604 00000001406 15140030215 0022625 0 ustar 00 <?php /*------------------------------------------------------------------------ # com_admirorgallery - Admiror Gallery Component # ------------------------------------------------------------------------ # author Igor Kekeljevic & Nikola Vasiljevski # copyright Copyright (C) 2011 admiror-design-studio.com. All Rights Reserved. # @license - http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL # Websites: http://www.admiror-design-studio.com/joomla-extensions # Technical Support: Forum - http://www.vasiljevski.com/forum/index.php # Version: 4.5.0 -------------------------------------------------------------------------*/ // no direct access defined('_JEXEC') or die('Restricted access'); require_once(JPATH_COMPONENT_ADMINISTRATOR.DS.'controllers'.DS.'button.php');
©
2018.