/
home
/
assocoweys
/
avexp
/
administrator
/
components
/
com_jce
/
helpers
/
Upload File
HOME
<?php defined('_JEXEC') or die; /** * Admin helper. * * @package WF * @subpackage com_jce * @since 3.0 */ class WfHelperAdmin { /** * Configure the Submenu links. * * @param string $vName The view name. * * @return void * * @since 3.0 */ public static function addSubmenu($vName) { $uri = (string) JUri::getInstance(); $return = urlencode(base64_encode($uri)); JHtmlSidebar::addEntry( JText::_('Options'), 'index.php?option=com_config&view=component&component=com_jce&return=' . $return ); JHtmlSidebar::addEntry( JText::_('Edit Profiles'), 'index.php?option=com_jce&view=profiles', $vName == 'profiles' ); } }