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


PHP JRequest::getVAr方法代码示例

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


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

示例1: getTemplates

 /**
  * <p>public static function get/load the templates object in the database</p>
  * @param boolean $onlyPublish - to get/load only the template that is publish (publish = 1)
  * @param boolean $onlyDefault - to load only the default template (premium = 1)
  * @param mixed $templateSearch - the template to be seach
  * @param int $start - start of query
  * @param int $limit - limit of query
  * @param availability - show only available templates
  */
 public static function getTemplates($onlyPublish = true, $onlyDefault = false, $templateSearch = '', $start = -1, $limit = -1, $setSort = null, $onlyavailable = -1)
 {
     $db = JFactory::getDBO();
     $query = 'SELECT * FROM `#__jnews_templates` ';
     $where[] = $onlyPublish ? ' `published`=1 ' : ' `published`<>-1 ';
     $where[] = $onlyDefault ? ' `premium`=1 ' : ' `premium`<>-1 ';
     //if the search of template is not empty
     //if the value is a numeric, we consider it as the template_id so we search by template_id
     if (!empty($templateSearch)) {
         if (is_numeric($templateSearch)) {
             $where[] = ' `template_id` =' . $templateSearch;
         } else {
             $where[] = ' (name LIKE \'%' . $templateSearch . '%\' OR namekey LIKE \'%' . $templateSearch . '%\') ';
         }
     }
     $query .= count($where) ? " WHERE " . implode(' AND ', $where) : "";
     if ($onlyavailable == 1 && JRequest::getVAr('task') == 'assign') {
         $query .= ' AND `availability`=1 ';
     }
     if (!empty($setSort)) {
         $s = is_int($setSort->orderValue) ? "{$setSort->orderValue}" : "`{$setSort->orderValue}`";
         $query .= "ORDER BY {$s} {$setSort->orderDir}";
     } else {
         $query .= 'ORDER BY `premium` DESC, `created` DESC, `published` DESC, `ordering` ASC,  `name` ASC';
     }
     if ($start != -1 && $limit != -1) {
         $query .= ' LIMIT ' . $start . ', ' . $limit;
     }
     $db->setQuery($query);
     $templates = $db->loadObjectlist();
     return $templates;
 }
开发者ID:naka211,项目名称:kkvn,代码行数:41,代码来源:class.templates.php


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