123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- <?php
- /**
- *
- * PHP Pro Bid $Id$ SUhXoGm9caoc5cGln1n2/z4mhL/KwPS7rrEcRfJPwVA=
- *
- * @link http://www.phpprobid.com
- * @copyright Copyright (c) 2014 Online Ventures Software LTD & CodeCube SRL
- * @license http://www.phpprobid.com/license Commercial License
- *
- * @version 7.0
- */
- /**
- * location page class - used by location navigation container
- */
- namespace Ppb\Navigation\Page;
- use Cube\Navigation\Page\AbstractPage;
- class Location extends AbstractPage
- {
- /**
- *
- * active location id
- *
- * @var integer
- */
- protected $_locationId;
- /**
- *
- * iso code field
- *
- * @var string
- */
- protected $_isoCode;
- /**
- *
- * get active location id
- *
- * @return integer
- */
- public function getLocationId()
- {
- return $this->_locationId;
- }
- /**
- *
- * set active location id
- *
- * @param integer $locationId
- * @return \Ppb\Navigation\Page\Location
- */
- public function setLocationId($locationId)
- {
- $this->_locationId = (int) $locationId;
- return $this;
- }
- /**
- *
- * get iso code field
- *
- * @return bool
- */
- public function getIsoCode()
- {
- return $this->_isoCode;
- }
- /**
- *
- * set iso code field
- *
- * @param int $isoCode
- * @return \Ppb\Navigation\Page\Location
- */
- public function setIsoCode($isoCode)
- {
- $this->_isoCode = (bool) $isoCode;
- return $this;
- }
- /**
- *
- * check if a page is active, based on the page id
- *
- * @param bool $recursive check in sub-pages as well, and if a sub-page is active, return the current page as active
- * @return bool returns active status
- */
- public function isActive($recursive = false)
- {
- if (!$this->_active) {
- if ($this->_id == $this->_locationId) {
- $this->_active = true;
- return true;
- }
- }
- return parent::isActive($recursive);
- }
- }
|