silverstripe-frameworktest/code/Organisation.php

11 lines
171 B
PHP
Raw Normal View History

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