mirror of
https://github.com/silverstripe/silverstripe-frameworktest
synced 2024-10-22 11:06:02 +02:00
36 lines
783 B
PHP
36 lines
783 B
PHP
<?php
|
|
|
|
/**
|
|
* A data type that is related many-many to RelationFieldsTestPage, for testing purposes
|
|
*/
|
|
class TestCategory extends DataObject {
|
|
private static $db = array(
|
|
"Title" => "Varchar",
|
|
);
|
|
private static $belongs_many_many = array(
|
|
"RelationPages" => "RelationFieldsTestPage",
|
|
);
|
|
|
|
/**
|
|
* Returns a dropdown map of all objects of this class
|
|
*/
|
|
static function map() {
|
|
$categories = DataObject::get('TestCategory');
|
|
if($categories) return $categories->map('ID', 'Title')->toArray();
|
|
else return array();
|
|
}
|
|
|
|
function requireDefaultRecords(){
|
|
$class = $this->class;
|
|
if(!DataObject::get_one($class)) {
|
|
foreach(array("A","B","C","D") as $item) {
|
|
$page = new $class();
|
|
$page->Title = "Test Category $item";
|
|
$page->write();
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
?>
|