mirror of
https://github.com/silverstripe/silverstripe-frameworktest
synced 2024-10-22 11:06:02 +02:00
23 lines
409 B
PHP
23 lines
409 B
PHP
<?php
|
|
class TestTag extends DataObject {
|
|
|
|
static $db = array(
|
|
'Title' => 'Text'
|
|
);
|
|
|
|
static $belongs_many_many = array(
|
|
'Pages' => 'TestTagFieldPage'
|
|
);
|
|
|
|
function requireDefaultRecords(){
|
|
$class = $this->class;
|
|
if(!DataObject::get_one($class)) {
|
|
foreach(array('one', 'two', 'three', 'four') as $title) {
|
|
$tag = new $class();
|
|
$tag->Title = $title;
|
|
$tag->write();
|
|
}
|
|
|
|
}
|
|
}
|
|
} |