CMS  Version 3.9
scroll_part.inc
Go to the documentation of this file.
1 <?php
7 class ScrollPart extends DataItem
8 {
9  var $table = "scroll_part";
10  var $primary_key = "scroll_part_id";
11 
12  var $fields = array("scroll_part_id" => Number,
13  "scroll_id" => Number,
14  "title" => String,
15  "content_type" => String,
16  "content" => HTML,
17  "php_code_file" => String,
18  "css_class" => String,
19  "styles" => String,
20  "image_id" => Image,
21  "sort_order" => Number);
22 
23  var $relations = array( "Scroll" => Scroll,
24  "BackgroundImage" => ImageRecord
25  );
26 
27  var $versioned_fields = array("title", "content", "php_code_file", "css_class", "styles", "image_id");
28 
29 
30  var $fieldAliases = array( "css_class" => "CSS Class",
31  "styles" => "Inline CSS Styles",
32  "image_id" => "Background Image");
33  function Scroll()
34  {
35  return $this->getRelated(Scroll);
36  }
37 
38  function BackgroundImage()
39  {
40  return $this->getRelated(ImageRecord);
41  }
42 }?>
Definition: scroll.inc:8