Changeset 1818 for plugins/apostrophePlugin/branches/features/css/lib/navigation/aNavigationAccordion.class.php
- Timestamp:
- 07/21/10 16:35:10 (22 months ago)
- Location:
- plugins/apostrophePlugin/branches/features/css
- Files:
-
- 2 modified
-
. (modified) (1 prop)
-
lib/navigation/aNavigationAccordion.class.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
plugins/apostrophePlugin/branches/features/css
- Property svn:mergeinfo changed
-
plugins/apostrophePlugin/branches/features/css/lib/navigation/aNavigationAccordion.class.php
r1681 r1818 3 3 class aNavigationAccordion extends aNavigation 4 4 { 5 protected $cssClass = 'a-nav-item'; 5 protected $cssClass = 'a-nav-item'; 6 6 7 7 public function buildNavigation() … … 10 10 if($this->active['slug'] != $this->root['slug']) 11 11 { 12 $this->rootInfo = $this->active->getAccordionInfo( false, null, $this->root['slug']);12 $this->rootInfo = $this->active->getAccordionInfo($this->livingOnly, null, $this->root['slug']); 13 13 }else 14 14 { 15 $this->rootInfo = $this->root->getTreeInfo( false, 1);15 $this->rootInfo = $this->root->getTreeInfo($this->livingOnly, 1); 16 16 } 17 17 // This rootInfo is already an array of kids … … 23 23 $this->traverse($this->nav); 24 24 } 25 25 26 26 public function getNav() 27 27 { 28 28 return $this->nav; 29 29 } 30 30 31 31 }

