silverstripe-dms/code/model/DMSTag.php

20 lines
474 B
PHP

<?php
/**
* Hold a set of metadata category/value tags associated with a DMSDocument
*
* @package dms
* @deprecated 2.0 Will be removed in future in favour of using silverstripe/taxonomy
*/
class DMSTag extends DataObject
{
private static $db = array(
'Category' => 'Varchar(1024)',
'Value' => 'Varchar(1024)',
'MultiValue' => 'Boolean(1)'
);
private static $belongs_many_many = array(
'Documents' => 'DMSDocument'
);
}