Changeset 1339:11fdde189adb for plugins
- Timestamp:
- 08/12/13 14:10:18 (12 years ago)
- Branch:
- default
- Location:
- plugins
- Files:
-
- 17 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/aboutConfig/index.php
r1338 r1339 125 125 array( 126 126 __('System') => '', 127 html::escapeHTML($core->blog->name) => '', 127 128 '<span class="page-title">'.__('about:config').'</span>' => '' 128 129 )); -
plugins/antispam/index.php
r1312 r1339 123 123 if ($filter_gui !== false) 124 124 { 125 echo '<h2>'.__('Plugins').' › <a href="'.$p_url.'">'.$page_name.'</a>'. 126 ' › <span class="page-title">'.sprintf(__('%s configuration'),$filter->name).'</span></h2>'; 125 dcPage::breadcrumb( 126 array( 127 __('Plugins') => '', 128 $page_name => $p_url, 129 '<span class="page-title">'.sprintf(__('%s configuration'),$filter->name).'</span>' => '' 130 )); 127 131 128 132 echo $filter_gui; … … 130 134 else 131 135 { 132 echo '<h2>'.__('Plugins').' › <span class="page-title">'.$page_name.'</span></h2>'; 136 dcPage::breadcrumb( 137 array( 138 __('Plugins') => '', 139 '<span class="page-title">'.$page_name.'</span>' => '' 140 )); 133 141 134 142 # Information -
plugins/blogroll/edit.php
r1179 r1339 95 95 96 96 <body> 97 <?php 98 dcPage::breadcrumb( 99 array( 100 html::escapeHTML($core->blog->name) => '', 101 '<span class="page-title">'.__('Blogroll').'</span>' => $p_url 102 )); 103 ?> 104 97 105 <?php echo '<p><a href="'.$p_url.'">'.__('Return to blogroll').'</a></p>'; ?> 98 106 -
plugins/blogroll/index.php
r1179 r1339 177 177 178 178 <body> 179 <h2><?php echo html::escapeHTML($core->blog->name); ?> › <span class="page-title"><?php echo __('Blogroll'); ?></span></h2> 179 <?php 180 dcPage::breadcrumb( 181 array( 182 html::escapeHTML($core->blog->name) => '', 183 '<span class="page-title">'.__('Blogroll').'</span>' => '' 184 )); 185 ?> 180 186 181 187 <?php -
plugins/blowupConfig/index.php
r1179 r1339 221 221 <body> 222 222 <?php 223 echo 224 '<h2>'.html::escapeHTML($core->blog->name). 225 ' › <a href="blog_theme.php">'.__('Blog appearance').'</a> › <span class="page-title">'.__('Blowup configuration').'</span></h2>'. 223 dcPage::breadcrumb( 224 array( 225 html::escapeHTML($core->blog->name) => '', 226 __('Blog appearance') => 'blog_theme.php', 227 '<span class="page-title">'.__('Blowup configuration').'</span>' => '' 228 )); 229 230 echo 226 231 '<p><a class="back" href="blog_theme.php">'.__('back').'</a></p>'; 227 232 -
plugins/daInstaller/index.php
r1312 r1339 255 255 '</head>'. 256 256 '<body>'. 257 infoMessages(). 258 '<h2>'.__('System').' › <span class="page-title">'.__('DotAddict.org Installer').'</span></h2>'. 257 infoMessages(); 258 259 dcPage::breadcrumb( 260 array( 261 __('System') => '', 262 '<span class="page-title">'.__('DotAddict.org Installer').'</span>' => '' 263 )); 264 265 echo 259 266 '<p>'.__('Install and update your extensions live from DotAddict.org').'</p>'; 260 267 -
plugins/importExport/index.php
r1298 r1339 74 74 75 75 if ($type && $module !== null) { 76 dcPage::breadcrumb( 77 array( 78 __('Plugins') => '', 79 $title => $p_url, 80 '<span class="page-title">'.html::escapeHTML($module->name).'</span>' => '' 81 )); 82 76 83 echo 77 '<h2>'.__('Plugins').' › <a href="'.$p_url.'">'.$title.'</a>'.78 ' › <span class="page-title">'.html::escapeHTML($module->name).'</span></h2>'.79 84 '<div id="ie-gui">'; 80 85 … … 84 89 } 85 90 else { 91 dcPage::breadcrumb( 92 array( 93 __('Plugins') => '', 94 '<span class="page-title">'.$title.'</span>' => '' 95 )); 96 86 97 echo 87 '<h2>'.__('Plugins').' › <span class="page-title">'.$title.'</span></h2>'.88 98 '<h3>'.__('Import').'</h3>'.listImportExportModules($core,$modules['import']). 89 99 '<h3>'.__('Export').'</h3>'.listImportExportModules($core,$modules['export']); -
plugins/maintenance/index.php
r1299 r1339 69 69 70 70 <body> 71 <h2><?php echo __('Plugins').' › <span class="page-title">'.__('Maintenance').'</span></h2>'; ?> 71 <?php 72 dcPage::breadcrumb( 73 array( 74 __('Plugins') => '', 75 '<span class="page-title">'.__('Maintenance').'</span>' => '' 76 )); 77 ?> 72 78 73 79 <?php -
plugins/pages/list.php
r1179 r1339 177 177 <body> 178 178 <?php 179 echo '<h2>'.html::escapeHTML($core->blog->name).' › <span class="page-title">'.__('Pages').'</span></h2>'. 179 dcPage::breadcrumb( 180 array( 181 html::escapeHTML($core->blog->name) => '', 182 '<span class="page-title">'.__('Pages').'</span>' => '' 183 )); 184 185 echo 180 186 '<p class="top-add"><a class="button add" href="'.$p_url.'&act=page">'.__('New page').'</a></p>'; 181 187 -
plugins/pages/page.php
r1336 r1339 338 338 } 339 339 340 echo '<h2>'.html::escapeHTML($core->blog->name). 341 ' › <a href="'.$p_url.'">'.__('Pages').'</a> › <span class="page-title">'.$page_title; 342 if ($post_id) { 343 switch ($post_status) { 344 case 1: 345 $img_status = sprintf($img_status_pattern,__('published'),'check-on.png'); 346 break; 347 case 0: 348 $img_status = sprintf($img_status_pattern,__('unpublished'),'check-off.png'); 349 break; 350 case -1: 351 $img_status = sprintf($img_status_pattern,__('scheduled'),'scheduled.png'); 352 break; 353 case -2: 354 $img_status = sprintf($img_status_pattern,__('pending'),'check-wrn.png'); 355 break; 356 default: 357 $img_status = ''; 358 } 359 echo ' “'.$post_title.'”'.' '.$img_status; 360 } 361 echo '</span></h2>'; 340 if ($post_id) { 341 switch ($post_status) { 342 case 1: 343 $img_status = sprintf($img_status_pattern,__('published'),'check-on.png'); 344 break; 345 case 0: 346 $img_status = sprintf($img_status_pattern,__('unpublished'),'check-off.png'); 347 break; 348 case -1: 349 $img_status = sprintf($img_status_pattern,__('scheduled'),'scheduled.png'); 350 break; 351 case -2: 352 $img_status = sprintf($img_status_pattern,__('pending'),'check-wrn.png'); 353 break; 354 default: 355 $img_status = ''; 356 } 357 $edit_entry_title = ' “'.$post_title.'”'.' '.$img_status; 358 } else { 359 $edit_entry_title = ''; 360 } 361 dcPage::breadcrumb( 362 array( 363 html::escapeHTML($core->blog->name) => '', 364 __('Pages') => $p_url, 365 '<span class="page-title">'.$page_title.$edit_entry_title.'</span>' => '' 366 )); 362 367 363 368 if ($post_id && $post->post_status == 1) { -
plugins/pings/index.php
r1179 r1339 51 51 <body> 52 52 <?php 53 echo '<h2 class="page-title">'.__('Pings configuration').'</h2>'; 53 54 dcPage::breadcrumb( 55 array( 56 __('Plugins') => '', 57 '<span class="page-title">'.__('Pings configuration').'</span>' => '' 58 )); 54 59 55 60 if (!empty($_GET['up'])) { -
plugins/simpleMenu/index.php
r1312 r1339 384 384 { 385 385 // Formulaire d'ajout d'un item 386 echo '<h2>'.html::escapeHTML($core->blog->name).' › <a href="'.$p_url.'">'.$page_title.'</a> › <span class="page-title">'.__('Add item').'</span></h2>'; 387 386 dcPage::breadcrumb( 387 array( 388 html::escapeHTML($core->blog->name) => '', 389 $page_title => $p_url, 390 '<span class="page-title">'.__('Add item').'</span>' => '' 391 )); 392 388 393 switch ($step) { 389 394 case 1: … … 454 459 // Liste des items 455 460 if (!$step) { 456 echo '<h2>'.html::escapeHTML($core->blog->name).' › <span class="page-title">'.$page_title.'</span></h2>'; 461 dcPage::breadcrumb( 462 array( 463 html::escapeHTML($core->blog->name) => '', 464 '<span class="page-title">'.$page_title.'</span>' => '' 465 )); 457 466 } 458 467 -
plugins/tags/tag_posts.php
r1312 r1339 109 109 <body> 110 110 111 <h2><?php echo html::escapeHTML($core->blog->name); ?> › 112 <span class="page-title"><?php echo __('Tag').' “'.html::escapeHTML($tag).'”'; ?></span></h2> 111 <?php 112 dcPage::breadcrumb( 113 array( 114 html::escapeHTML($core->blog->name) => '', 115 __('Tags') => $p_url.'&m=tags', 116 '<span class="page-title">'.__('Tag').' “'.html::escapeHTML($tag).'”'.'</span>' => '' 117 )); 118 ?> 113 119 114 120 <?php -
plugins/tags/tags.php
r1179 r1339 20 20 21 21 <body> 22 <h2><?php echo html::escapeHTML($core->blog->name); ?> › 23 <span class="page-title"><?php echo __('Tags'); ?></span></h2> 22 <?php 23 dcPage::breadcrumb( 24 array( 25 html::escapeHTML($core->blog->name) => '', 26 '<span class="page-title">'.__('Tags').'</span>' => '' 27 )); 28 ?> 24 29 25 30 <?php -
plugins/themeEditor/index.php
r1179 r1339 86 86 87 87 <body> 88 <?php echo '<h2>'.html::escapeHTML($core->blog->name). 89 ' › <a href="blog_theme.php">'.__('Blog appearance').'</a> › <span class="page-title">'.__('Theme Editor').'</span></h2>'; ?> 88 <?php 89 dcPage::breadcrumb( 90 array( 91 html::escapeHTML($core->blog->name) => '', 92 __('Blog appearance') => 'blog_theme.php', 93 '<span class="page-title">'.__('Theme Editor').'</span>' => '' 94 )); 95 ?> 90 96 91 97 <p><strong><?php echo sprintf(__('Your current theme on this blog is "%s".'),html::escapeHTML($T['name'])); ?></strong></p> -
plugins/userPref/index.php
r1338 r1339 118 118 dcPage::message(__('Preferences definition successfully updated')); 119 119 } 120 ?> 121 <h2><?php echo html::escapeHTML($core->auth->userID()); ?> › <span class="page-title">user:preferences</span></h2> 120 121 dcPage::breadcrumb( 122 array( 123 __('System') => '', 124 html::escapeHTML($core->auth->userID()) => '', 125 '<span class="page-title">'.__('user:preferences').'</span>' => '' 126 )); 127 ?> 122 128 123 129 <div id="local" class="multi-part" title="<?php echo __('User preferences'); ?>"> -
plugins/widgets/index.php
r1179 r1339 188 188 <body> 189 189 <?php 190 echo '<h2>'.html::escapeHTML($core->blog->name).' › <span class="page-title">'.__('Widgets').'</span></h2>'; 190 dcPage::breadcrumb( 191 array( 192 html::escapeHTML($core->blog->name) => '', 193 '<span class="page-title">'.__('Widgets').'</span>' => '' 194 )); 191 195 192 196 # All widgets
Note: See TracChangeset
for help on using the changeset viewer.