PHP Класс TagModel, vanilla

Показать файл Открыть проект Примеры использования класса

Открытые свойства

Свойство Тип Описание
$StringTags

Защищенные свойства (Protected)

Свойство Тип Описание
$Types
$instance

Открытые методы

Метод Описание
__construct ( string $Name = '' )
addDiscussion ( integer $discussionID, array $tags ) Add existing tags to a discussion.
addType ( string $key, array $row ) Add a tag type.
canAddTagForType ( $Type ) : boolean
counts ( $Column, null $UserID = null ) : array
defaultTypes ( ) : array
getChildTags ( integer $parentTagID ) : array Get the child tags associated with the parent tag id.
getDiscussionTags ( integer $DiscussionID, $indexed = true ) : array Get detailed tag data for a given discussion. An example use case would be when editing discussions: any non-typical tags, that is, ones that may appear to be categories, should have their specific data available, like Type, or Source.
getDiscussions ( $Tag, $Limit, $Offset, string $Op = 'or' ) : Gdn_DataSet
getRelatedTags ( mixed $tag ) Get all of the tags related to the current tag.
getTagTypes ( ) : array
instance ( ) : TagModel The singleton instance of this object.
joinTags ( &$data ) Join the tags to a set of discussions.
save ( array $FormPostValues, boolean $Settings = false ) : boolean | unknown
saveDiscussion ( $discussion_id, $tags, array $types = [''], integer $category_id, string $new_type = '' )
setTagSql ( Gdn_SQLDriver $Sql, $Tag, &$Limit, &$Offset, $Op = 'or' )
splitTags ( $TagsString ) : array
tagSlug ( $Str ) : string
types ( ) Get the available tag types.
unpivot ( array $tags ) : array Unpivot tags that are grouped by type.
updateTagCountDiscussions ( integer $TagID ) Update the tag count per discussion in the Tag table
validateTag ( $Tag ) : boolean
validateTags ( $Tags ) : boolean
validateType ( $Type ) : boolean

Описание методов

__construct() публичный Метод

public __construct ( string $Name = '' )
$Name string

addDiscussion() публичный Метод

Add existing tags to a discussion.
public addDiscussion ( integer $discussionID, array $tags )
$discussionID integer The ID of the discussion to add the tags to.
$tags array An array of tag IDs.

addType() публичный Метод

Add a tag type.
public addType ( string $key, array $row )
$key string
$row array

canAddTagForType() публичный Метод

public canAddTagForType ( $Type ) : boolean
$Type
Результат boolean

counts() публичный Метод

public counts ( $Column, null $UserID = null ) : array
$Column
$UserID null
Результат array

defaultTypes() публичный Метод

public defaultTypes ( ) : array
Результат array

getChildTags() публичный Метод

Get the child tags associated with the parent tag id.
public getChildTags ( integer $parentTagID ) : array
$parentTagID integer The parent tag ID to check for children.
Результат array All child tag rows

getDiscussionTags() публичный Метод

Get detailed tag data for a given discussion. An example use case would be when editing discussions: any non-typical tags, that is, ones that may appear to be categories, should have their specific data available, like Type, or Source.
public getDiscussionTags ( integer $DiscussionID, $indexed = true ) : array
$DiscussionID integer
Результат array

getDiscussions() публичный Метод

public getDiscussions ( $Tag, $Limit, $Offset, string $Op = 'or' ) : Gdn_DataSet
$Tag
$Limit
$Offset
$Op string
Результат Gdn_DataSet

getRelatedTags() публичный Метод

Get all of the tags related to the current tag.
public getRelatedTags ( mixed $tag )
$tag mixed

getTagTypes() публичный Метод

public getTagTypes ( ) : array
Результат array

instance() публичный статический Метод

The singleton instance of this object.
public static instance ( ) : TagModel
Результат TagModel

joinTags() публичный Метод

Join the tags to a set of discussions.
public joinTags ( &$data )
$data

save() публичный Метод

public save ( array $FormPostValues, boolean $Settings = false ) : boolean | unknown
$FormPostValues array
$Settings boolean
Результат boolean | unknown

saveDiscussion() публичный Метод

public saveDiscussion ( $discussion_id, $tags, array $types = [''], integer $category_id, string $new_type = '' )
$discussion_id
$tags
$types array
$category_id integer
$new_type string

setTagSql() публичный Метод

public setTagSql ( Gdn_SQLDriver $Sql, $Tag, &$Limit, &$Offset, $Op = 'or' )
$Sql Gdn_SQLDriver

splitTags() публичный статический Метод

public static splitTags ( $TagsString ) : array
$TagsString
Результат array

tagSlug() публичный статический Метод

public static tagSlug ( $Str ) : string
$Str
Результат string

types() публичный Метод

Get the available tag types.
public types ( )

unpivot() публичный Метод

Unpivot tags that are grouped by type.
public unpivot ( array $tags ) : array
$tags array
Результат array

updateTagCountDiscussions() публичный Метод

Update the tag count per discussion in the Tag table
public updateTagCountDiscussions ( integer $TagID )
$TagID integer

validateTag() публичный статический Метод

public static validateTag ( $Tag ) : boolean
$Tag
Результат boolean

validateTags() публичный статический Метод

public static validateTags ( $Tags ) : boolean
$Tags
Результат boolean

validateType() публичный Метод

public validateType ( $Type ) : boolean
$Type
Результат boolean

Описание свойств

$StringTags публичное свойство

public $StringTags

$Types защищенное свойство

protected $Types

$instance защищенное статическое свойство

protected static $instance