silverstripe-frameworktest/code/Organisation.php

12 lines
160 B
PHP
Raw Normal View History

2010-03-10 21:27:59 +01:00
<?php
class Organisation extends DataObject {
// Used to test the Multiform module
2013-03-26 11:44:04 +01:00
private static $db = array(
2010-03-10 21:27:59 +01:00
'OrganisationName' => 'Text'
);
}
?>