silverstripe-frameworktest/code/Organisation.php

11 lines
171 B
PHP
Raw Normal View History

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