getPathByPageId() public méthode

Get path information by a page ID
public getPathByPageId ( integer $pageId, string $cabin = '' ) : array
$pageId integer
$cabin string
Résultat array string[3] (cabin, directory, page)
Exemple #1
0
 /**
  * Confirm deletion
  *
  * @param int $pageId
  * @param array $post
  * @param string $cabin
  * @param string $dir
  * @return mixed
  */
 protected function processDeletePage(int $pageId, array $post = [], string $cabin = '', string $dir = '') : bool
 {
     $this->log('Attempting to delete a page', LogLevel::ALERT, ['pageId' => $pageId, 'cabin' => $cabin, 'dir' => $dir]);
     list($oldCabin, $oldPath, $oldURL) = $this->pg->getPathByPageId((int) $pageId, $cabin);
     if ($this->pg->deletePage($pageId)) {
         if (!empty($post['create_redirect']) && !empty($post['redirect_to'])) {
             $this->pg->createSameCabinRedirect($oldPath . '/' . $oldURL, $post['redirect_to'], $oldCabin);
         }
         \Airship\redirect($this->airship_cabin_prefix . '/pages/' . $cabin, ['dir' => $dir]);
     }
     return false;
 }