Example #1
0
 function __construct($title = null, $module_item_type = null, $content_id = null, $page_url = null, $external_url = null, $completion_requirement_type = null, $completion_requirement_min_score = null, $published = false, $position = 1, array $tags = null)
 {
     if ($title && !is_string($title)) {
         throw new InvalidParameterInRequestObjectException(get_class($this), "title", "Parameter must be a string");
     }
     if ($module_item_type && !ModuleItemType::isValidValue($module_item_type)) {
         throw new InvalidParameterInRequestObjectException(get_class($this), "module_item_type");
     }
     if ($content_id && !is_integer($content_id)) {
         throw new InvalidParameterInRequestObjectException(get_class($this), "content_id", "Parameter must be an integer");
     }
     if ($completion_requirement_type && !CompletionRequirementType::isValidValue($completion_requirement_type)) {
         throw new InvalidParameterInRequestObjectException(get_class($this), "completion_requirement_type");
     }
     if ($completion_requirement_min_score && !is_integer($completion_requirement_min_score)) {
         throw new InvalidParameterInRequestObjectException(get_class($this), "completion_requirement_min_score", "Parameter must be an integer");
     }
     if ($tags) {
         if (!$content_id) {
             $this->tags = $tags;
             throw new InvalidParameterInRequestObjectException(get_class($this), "content_id", "In order to add tags a content id must be provided");
         } else {
             $str = implode(", ", $tags);
             $this->tags = $str;
         }
     } else {
         $this->tags = $tags;
     }
     $this->title = $title;
     $this->type = $module_item_type;
     $this->content_id = $content_id;
     $this->page_url = $page_url;
     $this->external_url = $external_url;
     $this->completion_requirement_type = $completion_requirement_type;
     $this->completion_requirement_min_score = $completion_requirement_min_score;
     $this->position = $position;
     $this->published = $published ? 'true' : 'false';
 }
Example #2
0
 public function getCompletionRequirementTypes()
 {
     return CompletionRequirementType::getConstants();
 }