Changeset 21203 for extensions/AdditionalPages/trunk
- Timestamp:
- Mar 5, 2013, 12:11:53 PM (12 years ago)
- Location:
- extensions/AdditionalPages/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
extensions/AdditionalPages/trunk/additional_page.php
r12927 r21203 114 114 ); 115 115 116 117 116 118 add_event_handler('loc_end_index', 'ap_set_index'); 119 add_event_handler('loc_begin_page_header', 'ap_set_header'); 120 121 function ap_set_header() 122 { 123 global $page, $title; 124 125 if ($page['ap_homepage']) 126 { 127 $page['body_id'] = 'theHomePage'; 128 } 129 else 130 { 131 $page['body_id'] = 'theAdditionalPage'; 132 $title = $page['additional_page']['title']; 133 } 134 } 117 135 118 136 function ap_set_index() -
extensions/AdditionalPages/trunk/main.inc.php
r19836 r21203 70 70 if ($tokens[0] == 'additional_page' and !empty($tokens[1])) 71 71 redirect(make_index_url(array('section'=>'page')).'/'.$tokens[1]); 72 73 if (!is_null($conf['AP']['homepage']))74 {75 $albums_url = make_index_url(array('section' => 'categories'));76 77 $page['title'] = preg_replace(78 '#/a>#',79 '/a>'.$conf['level_separator'].'<a href="'.$albums_url.'">'.l10n('Albums').'</a>',80 $page['title'],81 1 // only replace the first occurence of "a/>"82 );83 }84 72 } 85 73
Note: See TracChangeset
for help on using the changeset viewer.