当前位置: 首页>>代码示例>>PHP>>正文


PHP JFactory::GetLanguage方法代码示例

本文整理汇总了PHP中JFactory::GetLanguage方法的典型用法代码示例。如果您正苦于以下问题:PHP JFactory::GetLanguage方法的具体用法?PHP JFactory::GetLanguage怎么用?PHP JFactory::GetLanguage使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在JFactory的用法示例。


在下文中一共展示了JFactory::GetLanguage方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: __construct

 function __construct($config = array())
 {
     parent::__construct($config);
     $lang = JFactory::GetLanguage();
     $lang->load('com_djcatalog2');
     $this->registerTask('modfp', 'getFrontpageXMLData');
 }
开发者ID:jputz12,项目名称:OneNow-Vshop,代码行数:7,代码来源:controller.php

示例2: __construct

 function __construct($config = array())
 {
     parent::__construct($config);
     $lang = JFactory::GetLanguage();
     $lang->load('com_djclassifieds');
     $par = JComponentHelper::getParams('com_djclassifieds');
     $notify_days = $par->get('notify_days', '0');
     if ($notify_days > 0 && $par->get('notify_days_trigger', '1') == 2) {
         DJClassifiedsNotify::notifyExpired(5, 0);
     }
     //$this->registerTask( 'modfp',  'getFrontpageXMLData' );
 }
开发者ID:kidaa30,项目名称:lojinha,代码行数:12,代码来源:controller.php

示例3: jimport

*/
$document = JFactory::getDocument();
if (JRequest::getVar('view') == 'item') {
    if ($par->get('lightbox_type', 'slimbox') == 'picbox') {
        $assets = JURI::base(true) . '/components/com_djclassifieds/assets/picbox/';
        $document->addScript($assets . 'js/picbox.js');
        $document->addStyleSheet($assets . 'css/picbox.css');
    } else {
        $assets = JURI::base(true) . '/components/com_djclassifieds/assets/slimbox-1.8/';
        $document->addScript($assets . 'js/slimbox.js');
        $document->addStyleSheet($assets . 'css/slimbox.css');
    }
}
DJClassifiedsTheme::includeCSSfiles();
require_once JPATH_COMPONENT . DS . 'controller.php';
$lang = JFactory::GetLanguage();
if ($lang->getTag() != 'en-GB') {
    $lang = JFactory::getLanguage();
    $lang->load('com_djclassifieds', JPATH_SITE . '/components/com_djclassifieds', 'en-GB', true, false);
    if ($lang->getTag() == 'pl-PL') {
        $lang->load('com_djclassifieds', JPATH_SITE . '/components/com_djclassifieds', '', true, false);
    } else {
        $lang->load('com_djclassifieds', JPATH_SITE, '', true, false);
    }
}
$view = JRequest::getCmd('view', 'show');
if ($view == 'item' || $view == 'items' || $view == 'additem' || $view == 'payment' || $view == 'renewitem' || $view == 'profileedit' || $view == 'contact' || $view == 'checkout' || $view == 'registration') {
    $path = JPATH_COMPONENT . DS . 'controllers' . DS . $view . '.php';
    jimport('joomla.filesystem.file');
    if (JFile::exists($path)) {
        require_once $path;
开发者ID:kidaa30,项目名称:lojinha,代码行数:31,代码来源:djclassifieds.php


注:本文中的JFactory::GetLanguage方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。