2008-10-29 22:07:17 +01:00
|
|
|
<?php
|
|
|
|
/**
|
2012-04-12 08:02:46 +02:00
|
|
|
* @package framework
|
2008-10-29 22:07:17 +01:00
|
|
|
* @subpackage tests
|
|
|
|
*/
|
|
|
|
class i18nTextCollectorTestMyObject extends DataObject implements TestOnly {
|
2013-03-21 19:48:54 +01:00
|
|
|
private static $db = array(
|
2008-10-29 22:07:17 +01:00
|
|
|
'FirstProperty' => 'Varchar',
|
|
|
|
'SecondProperty' => 'Int'
|
|
|
|
);
|
|
|
|
|
2013-03-21 19:48:54 +01:00
|
|
|
private static $has_many = array(
|
2008-10-29 22:07:17 +01:00
|
|
|
'Relation' => 'Group'
|
|
|
|
);
|
|
|
|
|
2013-03-21 19:48:54 +01:00
|
|
|
private static $singular_name = "My Object";
|
2008-10-29 22:07:17 +01:00
|
|
|
|
2013-03-21 19:48:54 +01:00
|
|
|
private static $plural_name = "My Objects";
|
2008-10-29 22:07:17 +01:00
|
|
|
}
|