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


PHP model::tags方法代码示例

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


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

示例1: eventSyncToTags

 /**
  * sync tagger
  *
  * @param  string $key   field
  * @param  model $model eloquent model
  *
  * @return model
  */
 public function eventSyncToTags($key, $model)
 {
     if (!isset(self::$inputData['tag'])) {
         return;
     }
     if (empty(self::$inputData['tag'])) {
         return $model->tags()->detach();
     }
     $data = explode(',', self::$inputData['tag']);
     return $model->tags()->sync($data);
 }
开发者ID:sharenjoy,项目名称:axes,代码行数:19,代码来源:TaggableTrait.php

示例2: tags

 /**
  * Get the tags id of a node
  * @param {Integer} $id node id
  * @return {array} tags 
  */
 static function tags($id)
 {
     $array = array();
     // PROTOTYPE BEGIN
     $protoname = model::getKey($id, 'prototype');
     if ($protoname) {
         $proto = model::searchKey('id', $protoname);
         $proto = $proto[0];
         if ($proto) {
             $array = model::tags($proto);
         }
     }
     // PROTOTYPE END
     $query = "SELECT name FROM tag WHERE node_id='{$id}';";
     $result = mysql_query($query);
     while ($row = mysql_fetch_array($result)) {
         $array[] = $row["name"];
     }
     return $array;
 }
开发者ID:remyla,项目名称:damas-core,代码行数:25,代码来源:model.php

示例3: rlink

 /**
  * Get the links id of a node
  * @param {Integer} $id node id
  * @return {array} links
  */
 static function rlink($id)
 {
     $result = model::rlinks($id);
     for ($i = 0; $i < sizeof($result); $i++) {
         $childcount = model::countChildren($id);
         $result[$i]["childcount"] = $childcount;
         $result[$i]["rlinks"] = model::countRLinks($result[$i]["id"]);
         $result[$i]["tags"] = model::tags($result[$i]["id"]);
         $result[$i]["keys"] = model::keys($result[$i]["id"]);
     }
     return $result;
 }
开发者ID:remyla,项目名称:damas-core,代码行数:17,代码来源:model_json.php


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