Revision 1685
Added by darkviper over 13 years ago
| class.frontend.php | ||
|---|---|---|
| 35 | 35 |
// page database row |
| 36 | 36 |
public $page; |
| 37 | 37 |
public $page_id,$page_title,$menu_title,$parent,$root_parent,$level,$position,$visibility; |
| 38 |
public $page_description,$page_keywords,$page_link; |
|
| 38 |
public $page_description,$page_keywords,$page_link, $page_icon, $menu_icon_0, $menu_icon_1, $tooltip;
|
|
| 39 | 39 |
public $page_trail=array(); |
| 40 |
|
|
| 40 |
|
|
| 41 | 41 |
public $page_access_denied; |
| 42 | 42 |
public $page_no_active_sections; |
| 43 | 43 |
|
| ... | ... | |
| 157 | 157 |
if(!defined('MENU_TITLE')) {define('MENU_TITLE', PAGE_TITLE);}
|
| 158 | 158 |
} |
| 159 | 159 |
$this->menu_title = MENU_TITLE; |
| 160 |
$this->page_icon = $this->page['page_icon']; |
|
| 161 |
$this->menu_icon_0 = $this->page['menu_icon_0']; |
|
| 162 |
$this->menu_icon_1 = $this->page['menu_icon_1']; |
|
| 163 |
$this->tooltip = $this->page['tooltip']; |
|
| 160 | 164 |
// Page parent |
| 161 | 165 |
if(!defined('PARENT')) {define('PARENT', $this->page['parent']);}
|
| 162 | 166 |
$this->parent=$this->page['parent']; |
Also available in: Unified diff
last fixes for use of page_icon s.o.