本文整理汇总了PHP中Concrete\Core\Page\Page::getPageTemplateID方法的典型用法代码示例。如果您正苦于以下问题:PHP Page::getPageTemplateID方法的具体用法?PHP Page::getPageTemplateID怎么用?PHP Page::getPageTemplateID使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Concrete\Core\Page\Page
的用法示例。
在下文中一共展示了Page::getPageTemplateID方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: getPageTemplateID
/**
* Returns the Page Template ID.
*
* @return int
*/
public function getPageTemplateID()
{
return parent::getPageTemplateID();
}
示例2: publishToPage
public function publishToPage(Page $c, $data, $controls)
{
// for blocks, we need to also grab their output
$bt = $this->getBlockTypeObject();
$pt = PageTemplate::getByID($c->getPageTemplateID());
$setControl = $this->getPageTypeComposerFormLayoutSetControlObject();
$b = $this->getPageTypeComposerControlBlockObject($c);
if (!is_object($b)) {
return;
}
// delete the block that this set control has placed on this version, because
// we are going to replace it with a new one.
$app = Application::getFacadeApplication();
$db = $app->make('database')->connection();
$q = 'select cvb.arHandle, cdb.bID, cdb.cbDisplayOrder from PageTypeComposerOutputBlocks cdb inner join CollectionVersionBlocks cvb on (cdb.bID = cvb.bID and cvb.cID = cdb.cID and cvb.cvID = ?) where cdb.ptComposerFormLayoutSetControlID = ? and cdb.cID = ?';
$v = [$c->getVersionID(), $setControl->getPageTypeComposerFormLayoutSetControlID(), $c->getCollectionID()];
$row = $db->fetchAssoc($q, $v);
if ($row && $row['bID'] && $row['arHandle']) {
$db->executeQuery('delete from PageTypeComposerOutputBlocks where ptComposerFormLayoutSetControlID = ? and cID = ?', [$setControl->getPageTypeComposerFormLayoutSetControlID(), $c->getCollectionID()]);
}
$arHandle = $b->getAreaHandle();
$blockDisplayOrder = $b->getBlockDisplayOrder();
$bFilename = $b->getBlockFilename();
$defaultStyles = $b->getCustomStyle();
$b->deleteBlock();
$ax = Area::getOrCreate($c, $arHandle);
$b = $c->addBlock($bt, $ax, $data);
$this->setPageTypeComposerControlBlockObject($b);
$b->setAbsoluteBlockDisplayOrder($blockDisplayOrder);
if ($bFilename) {
$b->setCustomTemplate($bFilename);
}
if ($defaultStyles) {
$b->setCustomStyleSet($defaultStyles->getStyleSet());
}
// make a reference to the new block
$this->recordPageTypeComposerOutputBlock($b);
}