mirror of
https://github.com/silverstripe/silverstripe-blog
synced 2024-10-22 11:05:58 +02:00
80 lines
1.6 KiB
PHP
80 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace SilverStripe\Blog\Model;
|
|
|
|
use SilverStripe\Blog\Model\Blog;
|
|
use SilverStripe\Blog\Model\BlogObject;
|
|
use SilverStripe\Blog\Model\BlogPost;
|
|
use SilverStripe\Blog\Model\CategorisationObject;
|
|
use SilverStripe\ORM\DataObject;
|
|
|
|
/**
|
|
* A blog category for generalising blog posts.
|
|
*
|
|
* @package silverstripe
|
|
* @subpackage blog
|
|
*
|
|
* @method Blog Blog()
|
|
*
|
|
* @property string $Title
|
|
* @property string $URLSegment
|
|
* @property int $BlogID
|
|
*/
|
|
class BlogCategory extends DataObject implements CategorisationObject
|
|
{
|
|
use BlogObject;
|
|
|
|
/**
|
|
* Use an exception code so that attempted writes can continue on
|
|
* duplicate errors.
|
|
*
|
|
* @const string
|
|
* This must be a string because ValidationException has decided we can't use int
|
|
*/
|
|
const DUPLICATE_EXCEPTION = 'DUPLICATE';
|
|
|
|
/**
|
|
* {@inheritDoc}
|
|
* @var string
|
|
*/
|
|
private static $table_name = 'BlogCategory';
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
private static $db = array(
|
|
'Title' => 'Varchar(255)',
|
|
'URLSegment' => 'Varchar(255)'
|
|
);
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
private static $has_one = array(
|
|
'Blog' => Blog::class,
|
|
);
|
|
|
|
/**
|
|
* @var array
|
|
*/
|
|
private static $belongs_many_many = array(
|
|
'BlogPosts' => BlogPost::class,
|
|
);
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function getListUrlSegment()
|
|
{
|
|
return 'category';
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function getDuplicateError()
|
|
{
|
|
return _t('BlogCategory.Duplicate', 'A blog category already exists with that name.');
|
|
}
|
|
}
|