コード例 #1
0
 public function import(\SimpleXMLElement $sx)
 {
     if (isset($sx->gatheringitemtemplates)) {
         foreach ($sx->gatheringitemtemplates->gatheringitemtemplate as $at) {
             $pkg = static::getPackageObject($at['package']);
             $type = Type::getByHandle((string) $at['type']);
             $gatHasCustomClass = false;
             $gatForceDefault = false;
             $gatFixedSlotWidth = 0;
             $gatFixedSlotHeight = 0;
             if ($at['has-custom-class']) {
                 $gatHasCustomClass = true;
             }
             if ($at['force-default']) {
                 $gatForceDefault = true;
             }
             if ($at['fixed-slot-width']) {
                 $gatFixedSlotWidth = (string) $at['fixed-slot-width'];
             }
             if ($at['fixed-slot-height']) {
                 $gatFixedSlotHeight = (string) $at['fixed-slot-height'];
             }
             $template = Template::add($type, (string) $at['handle'], (string) $at['name'], $gatFixedSlotWidth, $gatFixedSlotHeight, $gatHasCustomClass, $gatForceDefault, $pkg);
             foreach ($at->children() as $fe) {
                 $feo = Feature::getByHandle((string) $fe['handle']);
                 if (is_object($feo)) {
                     $template->addGatheringItemTemplateFeature($feo);
                 }
             }
         }
     }
 }
 public function import(\SimpleXMLElement $sx)
 {
     if (isset($sx->gatheringitemtemplatetypes)) {
         foreach ($sx->gatheringitemtemplatetypes->gatheringitemtemplatetype as $at) {
             $pkg = static::getPackageObject($at['package']);
             Type::add((string) $at['handle'], $pkg);
         }
     }
 }
コード例 #3
0
 /**
  * Returns an array of package items (e.g. blocks, themes)
  */
 public function getPackageItems()
 {
     $items = array();
     $items['attribute_categories'] = AttributeKeyCategory::getListByPackage($this);
     $items['permission_categories'] = PermissionKeyCategory::getListByPackage($this);
     $items['permission_access_entity_types'] = PermissionAccessEntityType::getListByPackage($this);
     $items['attribute_keys'] = AttributeKey::getListByPackage($this);
     $items['attribute_sets'] = AttributeSet::getListByPackage($this);
     $items['group_sets'] = GroupSet::getListByPackage($this);
     $items['page_types'] = PageType::getListByPackage($this);
     $items['page_templates'] = PageTemplate::getListByPackage($this);
     $items['mail_importers'] = MailImporter::getListByPackage($this);
     $items['gathering_item_template_types'] = GatheringItemTemplateType::getListByPackage($this);
     $items['gathering_item_templates'] = GatheringItemTemplate::getListByPackage($this);
     $items['gathering_data_sources'] = GatheringDataSource::getListByPackage($this);
     $items['features'] = Feature::getListByPackage($this);
     $items['feature_categories'] = FeatureCategory::getListByPackage($this);
     $btl = new BlockTypeList();
     $btl->filterByPackage($this);
     $blocktypes = $btl->get();
     $items['block_types'] = $blocktypes;
     $items['block_type_sets'] = BlockTypeSet::getListByPackage($this);
     $items['page_themes'] = PageTheme::getListByPackage($this);
     $items['permissions'] = PermissionKey::getListByPackage($this);
     $items['single_pages'] = SinglePage::getListByPackage($this);
     $items['attribute_types'] = AttributeType::getListByPackage($this);
     $items['captcha_libraries'] = SystemCaptchaLibrary::getListByPackage($this);
     $items['content_editor_snippets'] = SystemContentEditorSnippet::getListByPackage($this);
     $items['conversation_editors'] = ConversationEditor::getListByPackage($this);
     $items['conversation_rating_types'] = ConversationRatingType::getListByPackage($this);
     $items['page_type_publish_target_types'] = PageTypePublishTargetType::getListByPackage($this);
     $items['page_type_composer_control_types'] = PageTypeComposerControlType::getListByPackage($this);
     $items['antispam_libraries'] = SystemAntispamLibrary::getListByPackage($this);
     $items['community_point_actions'] = UserPointAction::getListByPackage($this);
     $items['jobs'] = Job::getListByPackage($this);
     $items['workflow_types'] = WorkflowType::getListByPackage($this);
     ksort($items);
     return $items;
 }
コード例 #4
0
 public static function add(\Concrete\Core\Gathering\Item\Template\Type $type, $gatHandle, $gatName, $gatFixedSlotWidth, $gatFixedSlotHeight, $gatHasCustomClass = false, $gatForceDefault = false, $pkg = false)
 {
     $db = Loader::db();
     $pkgID = 0;
     if (is_object($pkg)) {
         $pkgID = $pkg->getPackageID();
     }
     $db->Execute('insert into GatheringItemTemplates (gatTypeID, gatHandle, gatName, gatFixedSlotWidth, gatFixedSlotHeight, gatHasCustomClass, gatForceDefault, pkgID) values (?, ?, ?, ?, ?, ?, ?, ?)', array($type->getGatheringItemTemplateTypeID(), $gatHandle, $gatName, $gatFixedSlotWidth, $gatFixedSlotHeight, intval($gatHasCustomClass), intval($gatForceDefault), $pkgID));
     $id = $db->Insert_ID();
     $agt = static::getByID($id);
     return $agt;
 }
コード例 #5
0
 public function getGatheringItemTemplateTypeObject()
 {
     return Type::getByID($this->gatTypeID);
 }