uawdijnntqw1x1x1
IP : 216.73.216.107
Hostname : toronto-dev2
Kernel : Linux toronto-dev2 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
srv
/
users
/
craft4
/
apps
/
craft4-newsite-space
/
vendor
/
craftcms
/
cms
/
.
/
.
/
src
/
models
/
TagGroup.php
/
/
<?php /** * @link https://craftcms.com/ * @copyright Copyright (c) Pixel & Tonic, Inc. * @license https://craftcms.github.io/license/ */ namespace craft\models; use Craft; use craft\base\FieldLayoutProviderInterface; use craft\base\Model; use craft\behaviors\FieldLayoutBehavior; use craft\elements\Tag; use craft\records\TagGroup as TagGroupRecord; use craft\validators\HandleValidator; use craft\validators\UniqueValidator; use DateTime; /** * TagGroup model. * * @mixin FieldLayoutBehavior * @author Pixel & Tonic, Inc. <support@pixelandtonic.com> * @since 3.0.0 */ class TagGroup extends Model implements FieldLayoutProviderInterface { /** * @var int|null ID */ public ?int $id = null; /** * @var string|null Name */ public ?string $name = null; /** * @var string|null Handle */ public ?string $handle = null; /** * @var int|null Field layout ID */ public ?int $fieldLayoutId = null; /** * @var string|null Field layout ID */ public ?string $uid = null; /** * @var DateTime|null The date that the tag group was trashed * @since 4.4.0 */ public ?DateTime $dateDeleted = null; /** * @inheritdoc */ protected function defineBehaviors(): array { return [ 'fieldLayout' => [ 'class' => FieldLayoutBehavior::class, 'elementType' => Tag::class, ], ]; } /** * @inheritdoc */ public function attributeLabels(): array { return [ 'handle' => Craft::t('app', 'Handle'), 'name' => Craft::t('app', 'Name'), ]; } /** * @inheritdoc */ protected function defineRules(): array { $rules = parent::defineRules(); $rules[] = [['id', 'fieldLayoutId'], 'number', 'integerOnly' => true]; $rules[] = [['handle'], HandleValidator::class, 'reservedWords' => ['id', 'dateCreated', 'dateUpdated', 'uid', 'title']]; $rules[] = [['name', 'handle'], UniqueValidator::class, 'targetClass' => TagGroupRecord::class]; $rules[] = [['name', 'handle'], 'required']; $rules[] = [['name', 'handle'], 'string', 'max' => 255]; $rules[] = [['fieldLayout'], 'validateFieldLayout']; return $rules; } /** * Validates the field layout. * * @since 3.7.0 */ public function validateFieldLayout(): void { $fieldLayout = $this->getFieldLayout(); $fieldLayout->reservedFieldHandles = [ 'group', ]; if (!$fieldLayout->validate()) { $this->addModelErrors($fieldLayout, 'fieldLayout'); } } /** * Use the translated tag group's name as the string representation. * * @return string */ public function __toString(): string { return Craft::t('site', $this->name) ?: static::class; } /** * @inheritdoc */ public function getFieldLayout(): FieldLayout { /** @var FieldLayoutBehavior $behavior */ $behavior = $this->getBehavior('fieldLayout'); return $behavior->getFieldLayout(); } /** * Returns the tag group’s config. * * @return array * @since 3.5.0 */ public function getConfig(): array { $config = [ 'name' => $this->name, 'handle' => $this->handle, ]; $fieldLayout = $this->getFieldLayout(); if ($fieldLayoutConfig = $fieldLayout->getConfig()) { $config['fieldLayouts'] = [ $fieldLayout->uid => $fieldLayoutConfig, ]; } return $config; } }
/srv/users/craft4/apps/craft4-newsite-space/vendor/craftcms/cms/././src/models/TagGroup.php