Changeset 2566:9bf417837888 for admin/index.php
- Timestamp:
- 11/17/13 20:25:53 (12 years ago)
- Branch:
- 2.6
- Children:
- 2567:6c11245cbf04, 2568:61c67a7d17fa
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/index.php
r2515 r2566 108 108 throw new Exception(); 109 109 } 110 110 111 111 $feed_reader = new feedReader; 112 112 $feed_reader->setCacheDir(DC_TPL_CACHE); … … 122 122 $dt = isset($item->link) ? '<a href="'.$item->link.'" class="outgoing" title="'.$item->title.'">'. 123 123 $item->title.' <img src="images/outgoing-blue.png" alt="" /></a>' : $item->title; 124 124 125 125 if ($i < 3) { 126 126 $latest_news .= … … 149 149 { 150 150 $doc_links = '<div class="box small dc-box"><h3>'.__('Documentation and support').'</h3><ul>'; 151 151 152 152 foreach ($__resources['doc'] as $k => $v) { 153 153 $doc_links .= '<li><a class="outgoing" href="'.$v.'" title="'.$k.'">'.$k. 154 154 ' <img src="images/outgoing-blue.png" alt="" /></a></li>'; 155 155 } 156 156 157 157 $doc_links .= '</ul></div>'; 158 158 $__dashboard_items[$dashboardItem][] = $doc_links; … … 280 280 $list = $core->plugins->getErrors(); 281 281 if (!empty($list)) { 282 echo 282 echo 283 283 '<div class="error" id="module-errors" class="error"><p>'.__('Errors have occured with following plugins:').'</p> '. 284 284 '<ul><li>'.implode("</li>\n<li>", $list).'</li></ul></div>'; … … 290 290 291 291 foreach ($__dashboard_items as $i) 292 { 292 { 293 293 if ($i->count() > 0) 294 294 { … … 321 321 $core->blog->getCategories(array('post_type'=>'post')) 322 322 ); 323 323 324 324 echo 325 325 '<div id="quick">'. … … 364 364 365 365 foreach ($__dashboard_contents as $i) 366 { 366 { 367 367 if ($i->count() > 0) 368 368 { … … 376 376 377 377 if ($dashboardContents != '' || $dashboardItems != '') { 378 echo 378 echo 379 379 '<div id="dashboard-boxes">'. 380 380 '<div class="db-items">'.$dashboardItems.$dashboardContents.'</div>'. 381 '</div>'; 381 '</div>'; 382 382 } 383 383 … … 385 385 dcPage::helpBlock('core_dashboard'); 386 386 dcPage::close(); 387 ?>
Note: See TracChangeset
for help on using the changeset viewer.