Files
openstackweb/openstack/code/summit/FeaturedVideo.php
Todd Morey 343420ad15 Fixes for page display and featured videos
Conflicts:

	openstack/code/PresentationCategoryPage.php
2014-11-24 14:03:21 -03:00

21 lines
306 B
PHP

<?php
class FeaturedVideo extends DataObject {
static $db = array(
'Name' => 'Text',
'Day' => 'Int',
'YouTubeID' => 'Varchar',
'Description' => 'Text',
'URLSegment' => 'Text'
);
static $has_one = array(
'PresentationCategoryPage' => 'PresentationCategoryPage'
);
}
?>