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


PHP Config::getCantidadArticulosRecientes方法代码示例

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


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

示例1: ultimosArticulos

 public function ultimosArticulos()
 {
     $this->helper->categoriaJson = 'portada';
     $this->helper->nombreJson = 'ultimosarticulos';
     $existeJson = $this->helper->existeJson('ultimosarticulos');
     $max = Config::getMaxCaracteres();
     $limite = !empty($this->atributos) ? $this->atributos : Config::getCantidadArticulosRecientes();
     if ($existeJson) {
         return $this->helper->leerJson(true);
     } else {
         $articulos = JaPaginasQuery::create()->addJoin('ja_paginas.categoria', 'ja_categorias.id', Criteria::INNER_JOIN)->addJoin('ja_paginas.autor', 'ja_usuarios.id', Criteria::INNER_JOIN)->addAsColumn('Autor', "concat(ja_usuarios.Nombre, ' ', ja_usuarios.Apellidos)")->addAsColumn('Categoria', 'ja_categorias.Titulo')->addAsColumn('Estado', "if(length(Estado) = 0, 'pendiente', Estado)")->addAsColumn('Leermas', "f_cortartexto(Leermas, Contenido, " . $max . ")")->filterByCategoria(0, Criteria::NOT_EQUAL)->filterByCategoria(1, Criteria::NOT_EQUAL)->orderByFechaCreado(Criteria::DESC)->limit($limite)->find();
         $this->helper->crearJson($articulos->toArray());
         if (Config::$DEBUG) {
             $this->log(__FUNCTION__ . ' | ' . $this->debug->getLastExecutedQuery(), Logger::DEBUG);
         }
         return $this->helper->leerJson(true);
     }
 }
开发者ID:alejandrososa,项目名称:angularja,代码行数:18,代码来源:JaPaginas.php


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