本文整理汇总了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);
}
示例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;
}
示例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;
}