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


PHP Articles::find方法代码示例

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


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

示例1: actionEdit

 /**
  * 更新文章
  * 
  */
 function actionEdit()
 {
     $form = Form_Admin_News::createForm('article', url('article/edit'));
     $newId = $this->_context->id;
     $news = Articles::find('id =?', $newId)->query();
     $form->import($news);
     if ($this->_context->isPOST() && $form->validate($_POST)) {
         try {
             $news->changeProps($form->values());
             $news->save();
             return $this->_redirectMessage('更新文章信息成功', '如果你不做出选择系统将自动跳转', url('article/index'), 3);
         } catch (QValidator_ValidateFailedException $ex) {
             $form->invalidate($ex);
         }
     }
     $this->_view['form'] = $form;
 }
开发者ID:BGCX262,项目名称:zxhproject-svn-to-git,代码行数:21,代码来源:article_controller.php

示例2: searchAction

 /**
  * Searches for articles
  */
 public function searchAction()
 {
     $numberPage = 1;
     if ($this->request->isPost()) {
         $query = Criteria::fromInput($this->di, "Articles", $_POST);
         $this->persistent->parameters = $query->getParams();
     } else {
         $numberPage = $this->request->getQuery("page", "int");
     }
     $parameters = $this->persistent->parameters;
     if (!is_array($parameters)) {
         $parameters = array();
     }
     $parameters["order"] = "id";
     $articles = Articles::find($parameters);
     if (count($articles) == 0) {
         $this->flash->notice("The search did not find any articles");
         return $this->dispatcher->forward(array("controller" => "articles", "action" => "index"));
     }
     $paginator = new Paginator(array("data" => $articles, "limit" => 10, "page" => $numberPage));
     $this->view->page = $paginator->getPaginate();
 }
开发者ID:ametsuramet,项目名称:belajar_phalcon,代码行数:25,代码来源:ArticlesController.php

示例3: showAllAction

 /**
  * This is a comment
  *
  * @Cache(lifetime=86400)
  */
 public function showAllAction()
 {
     $this->view->article = Articles::find();
 }
开发者ID:aodkrisda,项目名称:phalcon-code,代码行数:9,代码来源:annotations-253.php

示例4: articleBatchModify

 public function articleBatchModify()
 {
     $ids = explode(',', Input::get('id'));
     $action = Input::get('action');
     $value = Input::get('values');
     $cus_id = Auth::id();
     $relation = array('set_star' => 'is_star', 'set_top' => 'is_top', 'set_pcshow' => 'pc_show', 'set_mobileshow' => 'mobile_show', 'set_wechatshow' => 'wechat_show');
     if (count($ids) > 1) {
         $data = array();
         $err = false;
         foreach ($ids as $id) {
             $article = Articles::find($id);
             $article->{$relation}[$action] = $value;
             if ($relation[$action] == 'pc_show') {
                 $pushed = websiteInfo::where('cus_id', $cus_id)->pluck('pushed');
                 if ($pushed == 1 || $pushed == '3') {
                     $pushed = 1;
                 } else {
                     $pushed = 2;
                 }
             } else {
                 if ($relation[$action] == 'mobile_show') {
                     $pushed = websiteInfo::where('cus_id', $cus_id)->pluck('pushed');
                     if ($pushed == 1 || $pushed == '2') {
                         $pushed = 1;
                     } else {
                         $pushed = 3;
                     }
                 } else {
                     $pushed = 1;
                     $article->pushed = 1;
                 }
             }
             websiteInfo::where('cus_id', $cus_id)->update(['pushed' => $pushed]);
             $result = $article->save();
             if ($result) {
                 $data[] = $id;
             } else {
                 $err = true;
             }
         }
         if ($err) {
             $return_msg = array('err' => 3001, 'msg' => '部分变更失败', 'data' => $data);
         } else {
             $return_msg = array('err' => 0, 'msg' => '');
         }
     } else {
         $article = Articles::find($ids[0]);
         $article->{$relation}[$action] = $value;
         if ($relation[$action] == 'pc_show') {
             $pushed = websiteInfo::where('cus_id', $cus_id)->pluck('pushed');
             if ($pushed == 1 || $pushed == '3') {
                 $pushed = 1;
             } else {
                 $pushed = 2;
             }
         } else {
             if ($relation[$action] == 'mobile_show') {
                 $pushed = websiteInfo::where('cus_id', $cus_id)->pluck('pushed');
                 if ($pushed == 1 || $pushed == '2') {
                     $pushed = 1;
                 } else {
                     $pushed = 3;
                 }
             } else {
                 $pushed = 1;
                 $article->pushed = 1;
             }
         }
         websiteInfo::where('cus_id', $cus_id)->update(['pushed' => $pushed]);
         $result = $article->save();
         if ($result) {
             $return_msg = array('err' => 0, 'msg' => '');
         } else {
             $return_mag = array('err' => 3001, 'msg' => '变更失败');
         }
     }
     return Response::json($return_msg);
 }
开发者ID:baiduXM,项目名称:gbpen,代码行数:79,代码来源:ArticleController.php

示例5: Articles

<?php

include "Mapper.php";
include "MapperCollection.php";
include "Articles.php";
$map = new Articles("articles");
// Find
echo "Find\n";
$result = $map->find(2);
print_r($result);
// insert
echo "\nInsert\n";
$obj = new stdClass();
$obj->name = "Ny artikel";
$obj->body = "Blah blah yada yada";
$obj->author_id = 2;
$map->insert($obj);
echo "Inserted object:\n";
print_r($obj);
echo "delete\n";
$map->delete($obj);
//update
echo "\nUpdate:\n";
$result->name = "Modified";
$map->update($result);
开发者ID:jonolsson,项目名称:Saturday,代码行数:25,代码来源:testMapper.php

示例6: articlePreview

 /**
  * 显示文章页
  *
  * @param int $id 文章id
  */
 public function articlePreview($id, $result = array())
 {
     if ($_SERVER["HTTP_HOST"] != "ht.5067.org") {
         $article = Articles::find($id);
         $customer_info = CustomerInfo::where('cus_id', $this->cus_id)->first();
         if ($customer_info->lang == 'en') {
             $lang['the_last'] = 'The last one';
             $lang['the_first'] = 'The first one';
         } else {
             $lang['the_last'] = '已经是最后一篇';
             $lang['the_first'] = '已经是第一篇';
         }
         $a_moreimg = Moreimg::where('a_id', $id)->get()->toArray();
         array_unshift($a_moreimg, array('title' => $article->title, 'img' => $article->img));
         $images = array();
         if (count($a_moreimg)) {
             $i = 0;
             foreach ($a_moreimg as $a_img) {
                 $images[$i]['title'] = $a_img['title'];
                 $images[$i]['image'] = $a_img['img'] ? $this->source_dir . 'l/articles/' . $a_img['img'] : '';
                 $i++;
             }
         }
         $list_id = Articles::where('c_id', $article->c_id)->where($this->type . '_show', '1')->where('use_url', '0')->orderBy('is_top', 'desc')->orderBy('sort', 'asc')->orderBy('created_at', 'desc')->select('id', 'title', 'img', 'introduction', 'created_at')->lists('id');
         foreach ((array) $list_id as $key => $val) {
             $article_prev = NULL;
             $article_next = NULL;
             if ($val == $id) {
                 if ($key != 0) {
                     $prev_id = $list_id[$key - 1];
                     $article_prev = Articles::find($prev_id);
                 }
                 if ($key < count($list_id) - 1) {
                     $next_id = $list_id[$key + 1];
                     $article_next = Articles::find($next_id);
                 }
                 break;
             }
         }
         $result = $this->pagePublic($article->c_id);
         if (is_array($result['navs']) && !empty($result['navs'])) {
             foreach ((array) $result['navs'] as $nav) {
                 if ($nav['current'] == 1) {
                     $pagenavs = $nav['childmenu'];
                     break;
                 } else {
                     $pagenavs = array();
                 }
             }
         }
         if (empty($pagenavs)) {
             $pagenavs = array();
         }
         $result['pagenavs'] = $pagenavs;
         $result['posnavs'] = $this->getPosNavs($article->c_id);
         $result['title'] = $customer_info->title != "" ? $customer_info->title . '-' . $article->title : $article->title;
         $result['keywords'] = $article->keywords != "" ? $article->keywords : $customer_info->keywords;
         $result['description'] = $article->introduction != "" ? $article->introduction : $customer_info->description;
         $result['article']['title'] = $article->title;
         $result['article']['keywords'] = $article->keywords;
         $result['article']['description'] = $article->introduction;
         $result['article']['viewcount'] = '<em id="article-viewcount">0</em>';
         $result['enlarge'] = 0;
         $article_type = Articles::leftJoin('classify', 'classify.id', '=', 'article.c_id')->where('article.id', $id)->pluck('article_type');
         if ($article_type == 1) {
             //新闻内容
             $viewname = 'content-news';
         } elseif ($article_type == 2) {
             //产品内容
             $viewname = 'content-product';
             $result['enlarge'] = $customer_info->enlarge;
             if ($result['enlarge'] && $this->type == 'pc') {
                 $result['footscript'] .= '<script type="text/javascript" src="http://swap.5067.org/js/img.js"></script>';
             }
         } else {
             //跳转404
         }
         //关联文章查询
         //        $pa = new PhpAnalysis();
         //
         //        $pa->SetSource($article->title);
         //
         //        //设置分词属性
         //        $pa->resultType = 2;
         //        $pa->differMax = true;
         //        $pa->StartAnalysis();
         //
         //        //获取你想要的结果
         //        $keywords = $pa->GetFinallyIndex();
         //        if (count($keywords)) {
         //            $relation_where = "";
         //            foreach ((array) $keywords as $key => $word) {
         //                $relation_where.="or title like '%$key%' ";
         //            }
         //            $relation_where = ltrim($relation_where, 'or');
//.........这里部分代码省略.........
开发者ID:baiduXM,项目名称:gbpen,代码行数:101,代码来源:PrintContorller.php

示例7: articlePreview

 /**
  * 显示文章页
  *
  * @param int $id 文章id
  */
 public function articlePreview($id)
 {
     $article = Articles::find($id);
     $a_moreimg = Moreimg::where('a_id', $id)->get()->toArray();
     array_unshift($a_moreimg, array('title' => $article->title, 'img' => $article->img));
     $images = array();
     if (count($a_moreimg)) {
         $i = 0;
         foreach ($a_moreimg as $a_img) {
             $images[$i]['title'] = $a_img['title'];
             $images[$i]['image'] = $this->source_dir . 'l/articles/' . $a_img['img'];
             $i++;
         }
     }
     $list_id = Articles::where('c_id', $article->c_id)->where($this->type . '_show', '1')->orderBy('is_top', 'desc')->orderBy('created_at', 'desc')->select('id', 'title', 'img', 'introduction', 'created_at')->lists('id');
     foreach ($list_id as $key => $val) {
         $article_prev = NULL;
         $article_next = NULL;
         if ($val == $id) {
             if ($key != 0) {
                 $prev_id = $list_id[$key - 1];
                 $article_prev = Articles::find($prev_id);
             }
             if ($key < count($list_id) - 1) {
                 $next_id = $list_id[$key + 1];
                 $article_next = Articles::find($next_id);
             }
             break;
         }
     }
     $result = $this->pagePublic($article->c_id);
     foreach ($result['navs'] as $nav) {
         if ($nav['current'] == 1) {
             $pagenavs = $nav['childmenu'];
             break;
         } else {
             $pagenavs = [];
         }
     }
     $result['pagenavs'] = $pagenavs;
     $result['posnavs'] = $this->getPosNavs($article->c_id);
     $result['title'] = $article->title;
     $result['keywords'] = $article->keywords;
     $result['description'] = $article->introduction;
     $result['article']['title'] = $article->title;
     $result['article']['keywords'] = $article->keywords;
     $result['article']['description'] = $article->introduction;
     $result['article']['viewcount'] = '<em id="article-viewcount">0</em>';
     $article_type = Articles::leftJoin('classify', 'classify.id', '=', 'article.c_id')->where('article.id', $id)->pluck('article_type');
     if ($article_type == 1) {
         //新闻内容
         $viewname = 'content-news';
     } elseif ($article_type == 2) {
         //产品内容
         $viewname = 'content-product';
     } else {
         //跳转404
     }
     //关联文章查询
     $pa = new PhpAnalysis();
     $pa->SetSource($article->title);
     //设置分词属性
     $pa->resultType = 2;
     $pa->differMax = true;
     $pa->StartAnalysis();
     //获取你想要的结果
     $keywords = $pa->GetFinallyIndex();
     if (count($keywords)) {
         $relation_where = "";
         foreach ($keywords as $key => $word) {
             $relation_where .= "or title like '%{$key}%' ";
         }
         $relation_where = ltrim($relation_where, 'or');
         $prefix = Config::get('database.connections.mysql.prefix');
         $related_data = DB::select("select id,title,img as image,introduction,created_at,c_id from {$prefix}article where cus_id={$this->cus_id} and ({$relation_where})");
         $related = array();
         if (count($related_data)) {
             foreach ($related_data as $val) {
                 $temp_arr = [];
                 $temp_arr['title'] = $val->title;
                 $temp_arr['description'] = $val->introduction;
                 $temp_arr['image'] = $this->source_dir . 'l/articles/' . $val->image;
                 if ($this->showtype == 'preview') {
                     $temp_arr['link'] = $this->domain . '/detail/' . $val->id;
                     $temp_arr['category']['link'] = $this->domain . '/category/' . $val->id . '.html';
                 } else {
                     $temp_arr['link'] = $this->domain . '/detail/' . $val->id . '.html';
                     $temp_arr['category']['link'] = $this->domain . '/category/' . $val->id . '.html';
                 }
                 $temp_arr['pubdate'] = $val->created_at;
                 $temp_arr['pubtimestamp'] = strtotime($val->created_at);
                 $a_c_info = Classify::where('id', $val->c_id)->first();
                 $temp_arr['category']['name'] = $a_c_info->name;
                 $temp_arr['category']['en_name'] = $a_c_info->en_name;
                 $temp_arr['category']['icon'] = '<i class="iconfont">' . $a_c_info->icon . '</i>';
//.........这里部分代码省略.........
开发者ID:GBPcoder,项目名称:tpanel,代码行数:101,代码来源:PrintContorller.php

示例8: articleBatchModify

 public function articleBatchModify()
 {
     $ids = explode(',', Input::get('id'));
     $action = Input::get('action');
     $value = Input::get('values');
     $relation = array('set_star' => 'is_star', 'set_top' => 'is_top', 'set_pcshow' => 'pc_show', 'set_mobileshow' => 'mobile_show', 'set_wechatshow' => 'wechat_show');
     if (count($ids) > 1) {
         $data = array();
         $err = false;
         foreach ($ids as $id) {
             $article = Articles::find($id);
             $article->{$relation}[$action] = $value;
             $result = $article->save();
             if ($result) {
                 $data[] = $id;
             } else {
                 $err = true;
             }
         }
         if ($err) {
             $return_msg = array('err' => 3001, 'msg' => '部分变更失败', 'data' => $data);
         } else {
             $return_msg = array('err' => 0, 'msg' => '');
         }
     } else {
         $article = Articles::find($ids[0]);
         $article->{$relation}[$action] = $value;
         $result = $article->save();
         if ($result) {
             $return_msg = array('err' => 0, 'msg' => '');
         } else {
             $return_mag = array('err' => 3001, 'msg' => '变更失败');
         }
     }
     return Response::json($return_msg);
 }
开发者ID:GBPcoder,项目名称:tpanel,代码行数:36,代码来源:ArticleController.php


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