當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Page::add方法代碼示例

本文整理匯總了PHP中Concrete\Core\Page\Page::add方法的典型用法代碼示例。如果您正苦於以下問題:PHP Page::add方法的具體用法?PHP Page::add怎麽用?PHP Page::add使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Concrete\Core\Page\Page的用法示例。


在下文中一共展示了Page::add方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: addStackToCategory

 private function addStackToCategory(\Concrete\Core\Page\Page $parent, $name, $type = 0)
 {
     $data = array();
     $data['name'] = $name;
     if (!$name) {
         $data['name'] = t('No Name');
     }
     $pagetype = PageType::getByHandle(STACKS_PAGE_TYPE);
     $page = $parent->add($pagetype, $data);
     // we have to do this because we need the area to exist before we try and add something to it.
     Area::getOrCreate($page, STACKS_AREA_NAME);
     // finally we add the row to the stacks table
     $db = Database::connection();
     $stackCID = $page->getCollectionID();
     $v = array($name, $stackCID, $type);
     $db->Execute('insert into Stacks (stName, cID, stType) values (?, ?, ?)', $v);
     $stack = static::getByID($stackCID);
     return $stack;
 }
開發者ID:ceko,項目名稱:concrete5-1,代碼行數:19,代碼來源:Stack.php

示例2: add

 /**
  * Adds a new page of a certain type, using a passed associate array to setup value. $data may contain any or all of the following:
  * "uID": User ID of the page's owner
  * "pkgID": Package ID the page belongs to
  * "cName": The name of the page
  * "cHandle": The handle of the page as used in the path
  * "cDatePublic": The date assigned to the page.
  *
  * @param \Concrete\Core\Page\Type\Type $pt
  * @param array $data
  *
  * @return page
  **/
 public function add($pt, $data, $template = false)
 {
     return parent::add($pt, $data, $template);
 }
開發者ID:BacLuc,項目名稱:newGryfiPage,代碼行數:17,代碼來源:__IDE_SYMBOLS__.php


注:本文中的Concrete\Core\Page\Page::add方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。