Exemple #1
0
 public function loadMootools()
 {
     if (KUNENA_JOOMLA_COMPAT == '1.5') {
         jimport('joomla.plugin.helper');
         $mtupgrade = JPluginHelper::isEnabled('system', 'mtupgrade');
         if (!$mtupgrade) {
             $app = JFactory::getApplication();
             if (!class_exists('JHTMLBehavior')) {
                 if (is_dir(JPATH_PLUGINS . '/system/mtupgrade')) {
                     JHTML::addIncludePath(JPATH_PLUGINS . '/system/mtupgrade');
                 } else {
                     // TODO: translate
                     KunenaError::warning('<em>System - MooTools Upgrade</em> plug-in is not installed into your system. Many features, including the BBCode editor, may be broken.', 'notice');
                 }
             }
         }
         JHTML::_('behavior.mootools');
         // Get the MooTools version string
         $mtversion = preg_replace('/[^\\d\\.]/', '', JFactory::getApplication()->get('MooToolsVersion'));
         if (version_compare($mtversion, '1.2.4', '<')) {
             // TODO: translate
             KunenaError::warning('Your site is not using <em>System - MooTools Upgrade</em> (or compatible) plug-in. Many features, including the BBCode editor, may be broken.');
         }
     } else {
         // Joomla 1.6+
         JHTML::_('behavior.framework', true);
     }
     if (KunenaFactory::getConfig()->debug) {
         // Debugging Mootools issues
         CKunenaTools::addScript(KUNENA_DIRECTURL . 'template/default/js/debug-min.js');
     }
 }
Exemple #2
0
 /**
  * onAfterInitialise handler
  *
  * Adds the mtupgrade folder to the list of directories to search for JHTML helpers.
  *
  * @access	public
  * @return null
  */
 function onAfterInitialise()
 {
     $app = JFactory::getApplication();
     if ($app->isAdmin() and $this->params->get('admin_version') == "0" or $app->isSite() and $this->params->get('site_version') == "0") {
         JHTML::addIncludePath(JPATH_PLUGINS . DS . 'system' . DS . 'mtupgrade');
     }
 }
Exemple #3
0
 /**
  * Constructor
  *
  * @access  protected
  * @return  void
  * @since   1.5.5
  */
 function __construct($config = array())
 {
     parent::__construct($config);
     $this->_ambit = JoomAmbit::getInstance();
     $this->_config = JoomConfig::getInstance();
     $this->_mainframe = JFactory::getApplication('administrator');
     $this->_user = JFactory::getUser();
     $this->_doc = JFactory::getDocument();
     $this->_doc->addStyleSheet($this->_ambit->getStyleSheet('admin.joomgallery.css'));
     JHtmlBehavior::framework();
     $this->_doc->addScript($this->_ambit->getScript('admin.js'));
     JoomHelper::addSubmenu();
     JHTML::addIncludePath(JPATH_COMPONENT . '/helpers/html');
     // Check for available updates
     if (!($checked = $this->_mainframe->getUserState('joom.update.checked'))) {
         $controller = JRequest::getCmd('controller');
         if ($this->_config->get('jg_checkupdate') && $controller && $controller != 'control') {
             $dated_extensions = JoomExtensions::checkUpdate();
             if (count($dated_extensions)) {
                 $this->_mainframe->enqueueMessage(JText::_('COM_JOOMGALLERY_ADMENU_SYSTEM_NOT_UPTODATE'), 'warning');
                 $this->_mainframe->setUserState('joom.update.checked', -1);
             } else {
                 $this->_mainframe->setUserState('joom.update.checked', 1);
             }
         }
     } else {
         if ($checked == -1) {
             $controller = JRequest::getCmd('controller');
             if ($controller && $controller != 'control') {
                 $this->_mainframe->enqueueMessage(JText::_('COM_JOOMGALLERY_ADMENU_SYSTEM_NOT_UPTODATE'), 'warning');
             }
         }
     }
 }
    function cbTabHandler() {

        if(!file_exists(JPATH_SITE.DS.'components'.DS.'com_bids'.DS.'bids.php')) {
            return "<div>You must First install <a href='http://www.thefactory.ro/shop/joomla-components/auction-factory.html'> Auction Factory </a></div>";
        }

        //need the whole framework loaded so we can access the price_item classes, in order to get the correct price for current user (verified, powerseller,...)
        require_once(JPATH_ADMINISTRATOR.DS.'components'.DS.'com_bids'.DS.'thefactory'.DS.'application'.DS.'application.class.php');

        $cnfigfile = JPATH_ROOT.DS.'administrator'.DS.'components'.DS.'com_bids'.DS.'application.ini';
        $MyApp = JTheFactoryApplication::getInstance($cnfigfile, true);

        JTable::addIncludePath(JPATH_ADMINISTRATOR.DS.'components'.DS.'com_bids'.DS.'tables');
        JHTML::addIncludePath(JPATH_SITE.DS.'components'.DS.'com_bids'.DS.'helpers'.DS.'html');

        require_once(JPATH_ROOT.DS.'components'.DS.'com_bids'.DS.'options.php');
        require_once(JPATH_ROOT.DS.'components'.DS.'com_bids'.DS.'defines.php');

        require_once(JPATH_SITE.DS.'components'.DS.'com_bids'.DS.'helpers'.DS.'bids.php');
        BidsHelper::LoadHelperClasses();

        JFactory::getLanguage()->load('com_bids');

        parent::cbTabHandler();
    }
Exemple #5
0
 function __construct($config = array())
 {
     global $mainframe, $option;
     JHTML::addIncludePath(HOTELGUIDE_HELPERS_HTML);
     $document =& JFactory::getDocument();
     $document->addStyleSheet('components/com_hotelguide/assets/css/hotelguidebackend.css');
     parent::__construct($config);
     $component_context = $option . '.';
     $view_context = $option . '.' . $this->getName() . '.';
 }
Exemple #6
0
 /**
  * Returns the HTML for a category select box form field.
  *
  * @access  protected
  * @return  object    The category select box form field.
  * @since   2.0
  */
 function getInput()
 {
     require_once JPATH_ROOT . '/modules/mod_btimagegallery/helpers/helper.php';
     $helper = new BTImageGalleryHelper();
     if ($helper->checkJGalleryComponent()) {
         require_once JPATH_ADMINISTRATOR . '/components/com_joomgallery/includes/defines.php';
         JLoader::register('JoomExtensions', JPATH_ADMINISTRATOR . '/components/' . _JOOM_OPTION . '/helpers/extensions.php');
         JLoader::register('JoomHelper', JPATH_BASE . '/components/' . _JOOM_OPTION . '/helpers/helper.php');
         JLoader::register('JoomConfig', JPATH_BASE . '/components/' . _JOOM_OPTION . '/helpers/config.php');
         JLoader::register('JoomAmbit', JPATH_BASE . '/components/' . _JOOM_OPTION . '/helpers/ambit.php');
         JTable::addIncludePath(JPATH_ADMINISTRATOR . '/components/' . _JOOM_OPTION . '/tables');
         JHTML::addIncludePath(JPATH_BASE . '/components/' . _JOOM_OPTION . '/helpers/html');
         $class = $this->element['class'] ? (string) $this->element['class'] : '';
         if ($this->element['required'] && $this->element['required'] == true && strpos($class, 'required') === false) {
             if (!empty($class)) {
                 $class .= ' ';
             }
             $class .= 'required';
         }
         if ($this->element['validate'] && (string) $this->element['validate'] == 'joompositivenumeric') {
             $doc =& JFactory::getDocument();
             // Add a validation script for form validation
             $js_validate = "\n            window.addEvent('domready', function() {\n              document.formvalidator.setHandler('joompositivenumeric', function(value) {\n                regex=/^[1-9]+[0-9]*\$/;\n                return regex.test(value);\n              })\n            });";
             $doc->addScriptDeclaration($js_validate);
             // Element class needs attribute validate-...
             if (!empty($class)) {
                 $class .= ' ';
             }
             $class .= 'validate-' . (string) $this->element['validate'];
             // Add some style to make the slect box red bordered when invalid
             $css = '
         select.invalid {
           border: 1px solid red;
         }';
             $doc->addStyleDeclaration($css);
         }
         $attr = '';
         $attr .= !empty($class) ? ' class="' . $class . '"' : '';
         $attr .= (string) $this->element['disabled'] == 'true' ? ' disabled="disabled"' : '';
         $attr .= $this->element['size'] ? ' size="' . (int) $this->element['size'] . '"' : '';
         $attr .= $this->element['onchange'] ? ' onchange="' . (string) $this->element['onchange'] . '"' : '';
         $action = $this->element['action'] ? (string) $this->element['action'] : 'core.create';
         $exclude = $this->element['exclude'] ? (int) $this->element['exclude'] : null;
         $task = $this->element['task'] ? (int) $this->element['task'] : null;
         $html = JHTML::_('joomselect.categorylist', $this->value, $this->name, $attr, $exclude, '- ', $task, $action, $this->id);
         return $html;
     } else {
         $class = $this->element['class'] ? (string) $this->element['class'] : '';
         return "<div class='{$class}'>" . JText::_('MOD_BTIMAGEGALLERY_JOOMGALLERY_ALERT') . "</div>";
     }
 }
Exemple #7
0
 function __construct()
 {
     JHtml::_('behavior.framework');
     $this->itempath = JPATH_COMPONENT_ADMINISTRATOR . DS . 'pricing' . DS . $this->itemname;
     $config = array('view_path' => $this->itempath . DS . "views");
     JLoader::register('JBidAdminComissionToolbar', $this->itempath . DS . 'toolbars' . DS . 'toolbar.php');
     JLoader::register('JBidAdminComissionHelper', $this->itempath . DS . 'helpers' . DS . 'helper.php');
     jimport('joomla.application.component.model');
     JModel::addIncludePath($this->itempath . DS . 'models');
     JTable::addIncludePath($this->itempath . DS . 'tables');
     JHTML::addIncludePath($this->itempath . DS . 'helpers' . DS . 'html');
     $lang = JFactory::getLanguage();
     $lang->load(APP_PREFIX . '.' . $this->itemname);
     $input = JFactory::getApplication()->input;
     $this->commissionType = $input->get('commissionType');
     parent::__construct($config);
 }
 /**
  * Class loader method
  *
  * Additional arguments may be supplied and are passed to the sub-class.
  * Additional include paths are also able to be specified for third-party use
  *
  * @param	string	The name of helper method to load, (prefix).(class).function
  *                  prefix and class are optional and can be used to load custom
  *                  html helpers.
  */
 function _($type)
 {
     //Initialise variables
     $prefix = 'JHTML';
     $file = '';
     $func = $type;
     // Check to see if we need to load a helper file
     $parts = explode('.', $type);
     switch (count($parts)) {
         case 3:
             $prefix = preg_replace('#[^A-Z0-9_]#i', '', $parts[0]);
             $file = preg_replace('#[^A-Z0-9_]#i', '', $parts[1]);
             $func = preg_replace('#[^A-Z0-9_]#i', '', $parts[2]);
             break;
         case 2:
             $file = preg_replace('#[^A-Z0-9_]#i', '', $parts[0]);
             $func = preg_replace('#[^A-Z0-9_]#i', '', $parts[1]);
             break;
     }
     $className = $prefix . ucfirst($file);
     if (!class_exists($className)) {
         jimport('joomla.filesystem.path');
         if ($path = JPath::find(JHTML::addIncludePath(), strtolower($file) . '.php')) {
             require_once $path;
             if (!class_exists($className)) {
                 JError::raiseWarning(0, $className . '::' . $func . ' not found in file.');
                 return false;
             }
         } else {
             JError::raiseWarning(0, $prefix . $file . ' not supported. File not found.');
             return false;
         }
     }
     if (is_callable(array($className, $func))) {
         $temp = func_get_args();
         array_shift($temp);
         $args = array();
         foreach ($temp as $k => $v) {
             $args[] =& $temp[$k];
         }
         return call_user_func_array(array($className, $func), $args);
     } else {
         JError::raiseWarning(0, $className . '::' . $func . ' not supported.');
         return false;
     }
 }
Exemple #9
0
	function __construct($config = array()) {
		parent::__construct($config);
		JHTML::addIncludePath(OSEMSC_F_HELPER);
		// add detect
		$detect = new Mobile_Detect();
		//$this->isMobile = $detect->isMobile();
		$this->isMobile = false;
		$view = JRequest::getCmd('view');
		if ($this->isMobile && !empty($view) && in_array($view, array('login', 'register', 'member'))) {
			// Any mobile device.
			$this->setLayout('mobile');
			JRequest::setvar('tmpl', 'component');
			oseHtml::loadTouchJs();
			oseHTML::stylesheet('components/com_osemsc/assets/css/msc5mobile.css', '1.5');
		} else {
			$jversion = (JOOMLA16 == true) ? '1.6' : '1.5';
			oseHTML::script('media/system/js/core.js', $jversion);
			$this->loadViewJs();
		}
	}
Exemple #10
0
/*
 # MOD_JVLATEST_NEWS - JV Latest News
 # @version		3.x
 # ------------------------------------------------------------------------
 # author    Open Source Code Solutions Co
 # copyright Copyright (C) 2013 joomlavi.com. All Rights Reserved.
 # @license - http://www.gnu.org/licenses/gpl-2.0.html GNU/GPL or later.
 # Websites: http://www.joomlavi.com
 # Technical Support:  http://www.joomlavi.com/my-tickets.html
-------------------------------------------------------------------------*/
// No direct access to this file
defined('_JEXEC') or die('Restricted access');
$document = JFactory::getDocument();
$document->addStyleSheet(JURI::base() . 'modules/mod_jvlatest_news/tmpl/' . $jvtmpl . '/css/jvlatestnews.css');
JHTML::addIncludePath(JPATH_SITE . '/components/com_content/helpers');
JHTML::_('behavior.framework', true);
if (count($items)) {
    if (!JRequest::getVar('jvlatestnews-ajax')) {
        ?>
    <div id="jvlatestnews<?php 
        echo $module->id;
        ?>
" class="jvlatestnews <?php 
        echo $jvtmpl;
        ?>
">

    	<?php 
        if ($params->get('description') != '') {
            ?>
 function __construct($config = array())
 {
     parent::__construct($config);
     JHTML::addIncludePath(JPATH_COMPONENT . DS . 'libraries' . DS . 'html' . DS . 'helper');
 }
Exemple #12
0
// URLs
define ( 'KURL_COMPONENT', 'index.php?option=' . KUNENA_COMPONENT_NAME );
define ( 'KURL_SITE', JURI::Root () . KPATH_COMPONENT_RELATIVE . '/' );
define ( 'KURL_MEDIA', JURI::Root () . 'media/' . KUNENA_NAME . '/' );

// Register Joomla and Kunena autoloader
if (function_exists('__autoload')) spl_autoload_register('__autoload');
spl_autoload_register('KunenaAutoload');

// Give access to all Kunena tables
jimport('joomla.database.table');
JTable::addIncludePath(KPATH_ADMIN.'/libraries/tables');
// Give access to all JHTML functions
jimport('joomla.html.html');
JHTML::addIncludePath(KPATH_ADMIN.'/libraries/html/html');

/**
 * Intelligent library importer.
 *
 * @param	string	A dot syntax path.
 * @return	boolean	True on success
 * @since	1.6
 * @deprecated 2.0
 */
function kimport($path) {}

/**
 * Kunena auto loader
 *
 * @param string $class Class to be registered (case sensitive)
Exemple #13
0
 *  @license GNU/GPL
 */
//--No direct access
defined('_JEXEC') or die('Resrtricted Access');
// DS has removed from J 3.0
if (!defined('DS')) {
    define('DS', '/');
}
// Require the base controller
require_once JPATH_COMPONENT . '/controller.php';
jimport('joomla.application.component.model');
require_once JPATH_COMPONENT . '/models/model.php';
// Component Helper
jimport('joomla.application.component.helper');
//add Helperpath to JHTML
JHTML::addIncludePath(JPATH_COMPONENT . '/helpers');
//include Helper
require_once JPATH_COMPONENT . '/helpers/beallitasok.php';
//set the default view
$controller = JRequest::getWord('view', 'beallitasok');
//add submenu
BeallitasokHelper::addSubmenu($controller);
$ControllerConfig = array();
// Require specific controller if requested
if ($controller) {
    $path = JPATH_COMPONENT . '/controllers/' . $controller . '.php';
    $ControllerConfig = array('viewname' => strtolower($controller), 'mainmodel' => strtolower($controller), 'itemname' => ucfirst(strtolower($controller)));
    if (file_exists($path)) {
        require_once $path;
    } else {
        $controller = '';
Exemple #14
0
 public function __construct($subject, $config)
 {
     parent::__construct($subject, $config);
     //If com_ninja don't exist, abort execution to prevent errors
     if (!is_dir(JPATH_ADMINISTRATOR . '/components/com_ninja')) {
         return;
     }
     //If the diagnose failed, FFS don't do anything!
     if (!$this->_diagnose()) {
         return;
     }
     //@TODO this is legacy, update your code to use the right identifiers
     KFactory::map('lib.koowa.application', 'lib.joomla.application');
     KFactory::map('lib.koowa.language', 'lib.joomla.language');
     KFactory::map('lib.koowa.document', 'lib.joomla.document');
     KFactory::map('lib.koowa.user', 'lib.joomla.user');
     KFactory::map('lib.koowa.editor', 'lib.joomla.editor');
     KFactory::map('lib.koowa.database', 'lib.koowa.database.adapter.mysqli');
     /**
      * Safety Extender compatability
      *
      * @TODO suggest patch for Nooku Framework's plgSystemKoowa after testing
      *
      * @author Margus Kaidja <*****@*****.**>
      */
     if (extension_loaded("safeex") && strpos("tmpl", ini_get("safeex.url_include_proto_whitelist")) === false) {
         $s = ini_get("safeex.url_include_proto_whitelist");
         ini_set("safeex.url_include_proto_whitelist", (strlen($s) ? $s . ',' : '') . 'tmpl');
     }
     //Override JModuleHelper if j!1.6.x
     if (JVersion::isCompatible('1.6.0')) {
         $override = JPATH_ADMINISTRATOR . '/components/com_ninja/overrides/modulehelper.php';
         if (file_exists($override)) {
             require_once $override;
         }
     }
     $napiElement = JPATH_ADMINISTRATOR . '/components/com_ninja/elements/napi.php';
     if (!class_exists('JElementNapi', false) && file_exists($napiElement)) {
         require_once $napiElement;
     }
     $app = JFactory::getApplication();
     if ($app->isSite()) {
         return;
     }
     if (!is_dir(JPATH_ADMINISTRATOR . '/components/com_ninja')) {
         return;
     }
     $path = KFactory::get('admin::com.ninja.helper.application')->getPath('com_xml');
     if (!$path) {
         return;
     }
     $xml = simplexml_load_file($path);
     if (!class_exists('KRequest')) {
         return;
     }
     $name = str_replace('com_', '', KRequest::get('get.option', 'cmd'));
     if (!$xml['mootools']) {
         return;
     }
     if (version_compare($xml['mootools'], '1.2', '<')) {
         return;
     }
     if (JVersion::isCompatible('1.6.0')) {
         KFactory::get('admin::com.ninja.helper.default')->js('/mootools12.js');
         KFactory::get('admin::com.ninja.helper.default')->js('/moocompat.js');
     } else {
         JHTML::addIncludePath(JPATH_ROOT . '/administrator/components/com_ninja/html');
         //Loading Mootools 1.2
         if (class_exists('JHTMLBehavior')) {
             return;
         }
         JHTML::_('behavior.framework');
     }
 }
Exemple #15
0
<?php

/**
 * @version		0.0.1
 * @package		ARCNAAnimals
 * @author 		Phil Snell
 * @author mail	phil@snellcode.com
 * @link		http://snellcode.com
 * @copyright	Copyright (C) 2010 Phil Snell - All rights reserved.
 * @license		GNU/GPL
 */
// no direct access
defined('_JEXEC') or die('Restricted access');
jimport('joomla.application.component.view');
JHTML::addIncludePath(JPATH_COMPONENT_ADMINISTRATOR . '/helpers/html');
class ARCNAAnimalsViewAnimals extends JView
{
    /**
    /* displays the list of records 
    */
    function display($tpl = null)
    {
        // initialize variables
        $user =& JFactory::getUser();
        $uri =& JFactory::getURI();
        $state =& $this->get('state');
        $items =& $this->get('items');
        $pagination =& $this->get('pagination');
        // assign variables to template
        $this->assignRef('state', $state);
        $this->assignRef('items', $items);
Exemple #16
0
    $jomcomment = JPATH_SITE . '/plugins/content/jom_comment_bot.php';
    $jxcomments = JPATH_SITE . '/components/com_comments/comments.php';
    $jacomments1 = JPATH_SITE . '/components/com_jacomment/jacomment.php';
    $jacomments2 = JPATH_SITE . '/plugins/system/jacomment.php';
    if ($comments == 1 && file_exists($jcomments)) {
        require_once $jcomments;
        echo JComments::showComments($this->poll->id, 'com_acepolls', $this->poll->title);
    }
    if ($comments == 2 && file_exists($jomcomment)) {
        require_once $jomcomment;
        echo jomcomment($this->poll->id, "com_acepolls");
    }
    if ($comments == 3 && file_exists($jxcomments)) {
        $url = 'index.php?option=com_acepolls&view=poll&id=' . (int) $this->poll->id;
        $route = $url . ':' . $this->poll->alias . '&Itemid=' . JRequest::getInt('Itemid');
        JHTML::addIncludePath(JPATH_SITE . '/components/com_comments/helpers/html');
        JHTML::_('comments.comments', 'acepolls', $this->poll->id, $url, $route, $this->poll->title);
    }
    if ($comments == 4 && file_exists($jacomments1) && file_exists($jacomments2) && !JRequest::getInt('print')) {
        $_jacCode = "#{jacomment(.*?) contentid=(.*?) option=(.*?) contenttitle=(.*?)}#i";
        $_jacCodeDisableid = "#{jacomment(\\s)off.*}#i";
        $_jacCodeDisable = "#{jacomment(\\s)off}#i";
        if (!preg_match($_jacCode, $this->poll->title) && !preg_match($_jacCodeDisable, $this->poll->title) && !preg_match($_jacCodeDisableid, $this->poll->title)) {
            echo '{jacomment contentid=' . $this->poll->id . ' option=com_acepolls contenttitle=' . $this->poll->title . '}';
        }
    }
}
?>

<br style="clear:both" />
</div>
Exemple #17
0
JLoader::register('ApplicationTable', ZOO_ADMIN_PATH . '/tables/application.php');
JLoader::register('CategoryTable', ZOO_ADMIN_PATH . '/tables/category.php');
JLoader::register('CommentTable', ZOO_ADMIN_PATH . '/tables/comment.php');
JLoader::register('ItemTable', ZOO_ADMIN_PATH . '/tables/item.php');
JLoader::register('SubmissionTable', ZOO_ADMIN_PATH . '/tables/submission.php');
JLoader::register('TagTable', ZOO_ADMIN_PATH . '/tables/tag.php');
// register helpers
JLoader::register('ApplicationHelper', ZOO_ADMIN_PATH . '/helpers/application.php');
JLoader::register('CategoryHelper', ZOO_ADMIN_PATH . '/helpers/category.php');
JLoader::register('CommentHelper', ZOO_ADMIN_PATH . '/helpers/comment.php');
JLoader::register('ElementHelper', ZOO_ADMIN_PATH . '/helpers/element.php');
JLoader::register('ExportHelper', ZOO_ADMIN_PATH . '/helpers/export.php');
JLoader::register('HttpHelper', ZOO_ADMIN_PATH . '/helpers/http.php');
JLoader::register('ImportHelper', ZOO_ADMIN_PATH . '/helpers/import.php');
JLoader::register('InstallHelper', ZOO_ADMIN_PATH . '/helpers/install.php');
JLoader::register('ItemHelper', ZOO_ADMIN_PATH . '/helpers/item.php');
JLoader::register('RouteHelper', ZOO_ADMIN_PATH . '/helpers/route.php');
JLoader::register('SubmissionHelper', ZOO_ADMIN_PATH . '/helpers/submission.php');
JLoader::register('TypeHelper', ZOO_ADMIN_PATH . '/helpers/type.php');
JLoader::register('UserHelper', ZOO_ADMIN_PATH . '/helpers/user.php');
JLoader::register('ZooHelper', ZOO_ADMIN_PATH . '/helpers/zoo.php');
JLoader::register('ZooModuleHelper', ZOO_ADMIN_PATH . '/helpers/zoomodule.php');
// register elements
JLoader::register('Element', ZOO_ADMIN_PATH . '/elements/element/element.php');
// add jhtml path
JHTML::addIncludePath(ZOO_ADMIN_PATH . '/helpers');
// load jQuery, if not loaded before
if (!JFactory::getApplication()->get('jquery')) {
    JFactory::getApplication()->set('jquery', true);
    JHTML::script('jquery.js', ZOO_ADMIN_URI . 'libraries/jquery/');
}
<?php

/**
* @version		mod_placehere
* @package		Joomla
* @copyright	Copyright (C) 2007 Eike Pierstorff eike@diebesteallerzeiten.de
* @license		GNU/GPL, see LICENSE.php
*
* File last changed 17/07/08
*/
// no direct access
defined('_JEXEC') or die('Restricted access');
JHTML::addIncludePath(JPATH_BASE . DS . 'components' . DS . 'com_content' . DS . 'helpers');
$template = $params->get('template', 'default');
$mode = $params->get("outputmode", 1);
// it would be pointless to have beez template and table based columns
if ($template == "beez" && $mode == 1) {
    $mode = 2;
}
// Include the syndicate functions only once
require_once dirname(__FILE__) . DS . 'helper.php';
require_once dirname(__FILE__) . DS . 'helperhtml.php';
$list = modPlaceHereHelper::getList($params);
$user =& JFactory::getUser();
// Create a user access object for the user
$access = new stdClass();
$access->canEdit = $user->authorize('com_content', 'edit', 'content', 'all');
$access->canEditOwn = $user->authorize('com_content', 'edit', 'content', 'own');
$access->canPublish = $user->authorize('com_content', 'publish', 'content', 'all');
require JModuleHelper::getLayoutPath('mod_placehere', $template);
switch ($mode) {
Exemple #19
0
 /**
  * onAfterInitialise handler
  *
  * Adds the mtupgrade folder to the list of directories to search for JHTML helpers.
  *
  * @access	public
  * @return null
  */
 function onAfterInitialise()
 {
     JHTML::addIncludePath(JPATH_PLUGINS . DS . 'system' . DS . 'mtupgrade');
 }
Exemple #20
0
	public function loadMootools() {
		if (version_compare(JVERSION, '1.6','>')) {
			// Joomla 1.6+
			JHTML::_ ( 'behavior.framework', true );
		} else {
			// Joomla 1.5
			jimport ( 'joomla.plugin.helper' );
			$mtupgrade = JPluginHelper::isEnabled ( 'system', 'mtupgrade' );
			if (! $mtupgrade) {
				$app = JFactory::getApplication ();
				if (!class_exists ( 'JHTMLBehavior' )) {
					if (is_dir ( JPATH_PLUGINS . '/system/mtupgrade' )) {
						JHTML::addIncludePath ( JPATH_PLUGINS . '/system/mtupgrade' );
					} else {
						KunenaError::warning ( JText::_('COM_KUNENA_LIB_TEMPLATE_MOOTOOLS_NO_UPGRADE').' '.JText::_('COM_KUNENA_LIB_TEMPLATE_MOOTOOLS_WARNING') );
					}
				}
			}
			JHTML::_ ( 'behavior.mootools' );
			// Get the MooTools version string
			$mtversion = preg_replace('/[^\d\.]/','', JFactory::getApplication()->get('MooToolsVersion'));
			if (version_compare($mtversion, '1.2.4', '<')) {
				KunenaError::warning ( JText::_('COM_KUNENA_LIB_TEMPLATE_MOOTOOLS_LEGACY').' '.JText::_('COM_KUNENA_LIB_TEMPLATE_MOOTOOLS_WARNING') );
			}
		}

		if (JDEBUG || KunenaFactory::getConfig()->debug) {
			// Debugging Mootools issues
			$this->addScript ( 'js/debug.js' );
		}
	}
Exemple #21
0
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/
// no direct access
defined('_JEXEC') or die('Restricted access');
// Make sure the user is authorized to view this page
$user =& JFactory::getUser();
if (!$user->authorize('com_frontpage', 'manage')) {
    $mainframe->redirect('index.php', JText::_('ALERTNOTAUTH'));
}
// Set the table directory
JTable::addIncludePath(JPATH_COMPONENT . DS . DS . 'tables');
// Set the helper directory
JHTML::addIncludePath(JPATH_ADMINISTRATOR . DS . 'components' . DS . 'com_content' . DS . 'helper');
$cid = JRequest::getVar('cid', array(0), 'post', 'array');
JArrayHelper::toInteger($cid, array(0));
switch (JRequest::getCmd('task')) {
    case 'publish':
        changeFrontPage($cid, 1, $option);
        break;
    case 'unpublish':
        changeFrontPage($cid, 0, $option);
        break;
    case 'archive':
        changeFrontPage($cid, -1, $option);
        break;
    case 'remove':
        removeFrontPage($cid, $option);
        break;
Exemple #22
0
* @subpackage	Users
* @copyright	Copyright (C) 2005 - 2008 Open Source Matters. All rights reserved.
* @license	GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/
// no direct access
defined('_JEXEC') or die('Restricted access');
jimport('joomla.application.component.controller');
jimport('joomla.application.component.view');
jimport('joomla.html.pane');
JTable::addIncludePath(JPATH_COMPONENT_ADMINISTRATOR . DS . 'tables');
JHTML::addIncludePath(JPATH_COMPONENT_ADMINISTRATOR . DS . "libraries" . DS . "html");
require_once JPATH_COMPONENT_ADMINISTRATOR . DS . "libraries" . DS . "adapter.php";
/**
 * Make sure the user is authorized to view this page
 */
$user =& JFactory::getUser();
/**
 * Task to execute 
 */
$task = JRequest::getCMD('task');
/**
 * Require the base controller
 */
$controller = JRequest::getVar('controller', 'groups');
if (!is_file(JPATH_COMPONENT . DS . "controllers" . DS . $controller . ".php")) {
    JError::raiseError('noixACL 2.0', JTEXT::_("NOIXACL_CONTROLLER_DONT_EXISTS"));
Exemple #23
0
<?php

JHTML::addIncludePath(dirname(__FILE__) . DS . 'assets' . DS . 'image');
require_once dirname(__FILE__) . DS . 'index.php';
Exemple #24
0
* @version		$Id: jwf.php 1320 2009-08-03 20:47:26Z mostafa.muhammad $
* @package		Joomla
* @subpackage	JWF
* @copyright	Copyright (C) 2009 Mostafa Muhammad. All rights reserved.
* @license		GNU/GPL
*/
// no direct access
defined('_JEXEC') or die('Restricted access');
define('JWF_FRONTEND_RUNNING', 1);
//Only logged in users are allowed
$user =& JFactory::getUser();
if ($user->guest) {
    JError::raiseError(403, JText::_("Access Forbidden"));
}
jimport('joomla.application.component.controller');
JHTML::addIncludePath(JPATH_COMPONENT_ADMINISTRATOR . DS . 'helper');
JTable::addIncludePath(JPATH_COMPONENT_ADMINISTRATOR . DS . 'tables');
require_once JPATH_COMPONENT_ADMINISTRATOR . DS . 'globals.php';
// Require the base controller
require_once JPATH_COMPONENT_ADMINISTRATOR . DS . 'libs' . DS . 'plugins.php';
$GLOBALS['JWFGlobals'] = array();
$GLOBALS['JWFGlobals']['PluginManager'] = new JWFPluginManager();
$controller = JRequest::getWord('controller');
if ($controller == '') {
    $controller = 'item';
}
require_once JPATH_COMPONENT_ADMINISTRATOR . DS . 'controllers' . DS . $controller . '.php';
$classname = 'JWFController' . ucfirst($controller);
$controllerObject = new $classname(array('base_path' => JWF_BACKEND_PATH));
// Perform the Request task
$controllerObject->execute(JRequest::getVar('task'));
Exemple #25
0
define("COM_FABRIK_LIVESITE", JURI::root());
define("COM_FABRIK_LIVESITE_ROOT", JURI::getInstance()->toString(array('scheme', 'host', 'port')));
define("FABRIKFILTER_TEXT", 0);
define("FABRIKFILTER_EVAL", 1);
define("FABRIKFILTER_QUERY", 2);
define("FABRKFILTER_NOQUOTES", 3);
/** @var delimiter used to define separator in csv export */
define("COM_FABRIK_CSV_DELIMITER", ",");
define("COM_FABRIK_EXCEL_CSV_DELIMITER", ";");
/** @var string separator used in repeat elements/groups IS USED IN F3 */
define("GROUPSPLITTER", "//..*..//");
$app = JFactory::getApplication();
$input = $app->input;
// Override JHTML -needed for framework override
$version = new JVersion();
JHTML::addIncludePath(JPATH_SITE . '/components/com_fabrik/jhelpers/' . $version->RELEASE . '/');
// Register the element class with the loader
JLoader::register('JElement', JPATH_SITE . '/administrator/components/com_fabrik/element.php');
/**
 * Moved these to the plugin constructor, fixing a compat issue with Kunena, see comments there.
 */
// JLoader::import('components.com_fabrik.classes.field', JPATH_SITE . '/administrator', 'administrator.');
// JLoader::import('components.com_fabrik.classes.form', JPATH_SITE . '/administrator', 'administrator.');
require_once JPATH_ADMINISTRATOR . '/components/com_fabrik/tables/fabtable.php';
require_once COM_FABRIK_FRONTEND . '/models/fabrik.php';
require_once COM_FABRIK_FRONTEND . '/helpers/arrayhelper.php';
require_once COM_FABRIK_FRONTEND . '/helpers/html.php';
require_once COM_FABRIK_FRONTEND . '/models/parent.php';
require_once COM_FABRIK_FRONTEND . '/helpers/parent.php';
require_once COM_FABRIK_FRONTEND . '/helpers/string.php';
require_once COM_FABRIK_FRONTEND . '/models/plugin.php';
Exemple #26
0
 function __construct($config = array())
 {
     parent::__construct($config);
     //Add the helper path to the JHTML library
     JHTML::addIncludePath(JPATH_COMPONENT . DS . 'helpers');
 }
Exemple #27
0
<?php
$lang = JFactory::getLanguage();
$lang->load( 'com_bids' );

JHTML::stylesheet("mod_bids.css","modules/mod_bids/tmpl/");
JHTML::script('modules/mod_bids/assets/countdown.js');

JHTML::_('behavior.tooltip');
JHTML::addIncludePath(JPATH_ROOT.DS.'components'.DS.'com_bids'.DS.'helpers'.DS.'html');

JFactory::getLanguage()->load('com_bids');
jimport('joomla.html.parameter');

$jdoc = JFactory::getDocument();
$js = "
        var days='".JText::_('COM_BIDS_DAYS').",';
        var expired='".JText::_('COM_BIDS_EXPIRED')."';

	window.addEvent('domready', function() {
		if ((typeof moduleSetTimeLeft =='function'))
			moduleSetTimeLeft('modulebidstime{$mid}_',".count($rows).");
	});
";
$jdoc->addScriptDeclaration( $js );

$Itemid = BidsHelperTools::getMenuItemId( array("task" => "listauctions") , 1 );
?>

<table width="100%" class="mod_bids_table_vertical" cellpadding="0" cellspacing="0" border="0">
	<?php
        $i=1;
Exemple #28
0
?>
			</fieldset>
<!-- ##NOT_FAQS_END## -->	


<!-- ##NOT_FAQS_START## -->
<!--  -->
<!-- ##NOT_FAQS_END## -->	
	
		</td>
		<td width="45%" valign="top">


<?php 
if (FSTAdminHelper::Is16()) {
    JHTML::addIncludePath(array(JPATH_ADMINISTRATOR . DS . 'components' . DS . 'com_fst' . DS . 'html'));
    ?>
	

<?php 
    echo JHTML::_('fsjtabs.start');
    $title = "Version";
    echo JHTML::_('fsjtabs.panel', $title, 'cpanel-panel-' . $title, true);
    $ver_inst = FSTAdminHelper::GetInstalledVersion();
    $ver_files = FSTAdminHelper::GetVersion();
    if (FSTAdminHelper::IsFAQs()) {
        ?>
	<h3>If you like Freestyle FAQs please vote or review us at the <a href='http://extensions.joomla.org/extensions/directory-a-documentation/faq/11910' target="_blank">Joomla extensions directory</a></h3>
<?php 
    } elseif (FSTAdminHelper::IsTests()) {
        ?>
Exemple #29
0
* @subpackage	Content
* @copyright	Copyright (C) 2005 - 2010 Open Source Matters. All rights reserved.
* @license		GNU/GPL, see LICENSE.php
* Joomla! is free software. This version may have been modified pursuant
* to the GNU General Public License, and as distributed it includes or
* is derivative of works licensed under the GNU General Public License or
* other free or open source software licenses.
* See COPYRIGHT.php for copyright notices and details.
*/
// no direct access
defined('_JEXEC') or die('Restricted access');
require_once JPATH_COMPONENT . DS . 'controller.php';
require_once JPATH_COMPONENT . DS . 'helper.php';
require_once JApplicationHelper::getPath('admin_html');
// Set the helper directory
JHTML::addIncludePath(JPATH_COMPONENT . DS . 'helper');
$controller = new ContentController();
$task = JRequest::getCmd('task');
switch (strtolower($task)) {
    case 'element':
    case 'wizard':
        $controller->execute($task);
        $controller->redirect();
        break;
    case 'add':
    case 'new':
        ContentController::editContent(false);
        break;
    case 'edit':
        ContentController::editContent(true);
        break;
Exemple #30
0
 /**
  * Legacy function, use {@link JHTML::_('legend');} instead
  *
  * @deprecated	As of version 1.5
  */
 function ContentLegend()
 {
     JHTML::addIncludePath(JPATH_ADMINISTRATOR . DS . 'components' . DS . 'com_content' . DS . 'html');
     JHTML::_('grid.legend');
 }