This repository was archived by the owner on Apr 19, 2022. It is now read-only.
File tree 2 files changed +8
-25
lines changed
admin/templates/default/css
2 files changed +8
-25
lines changed Original file line number Diff line number Diff line change @@ -281,7 +281,7 @@ div.dashboard_box a.comment_spam {
281
281
border-left : 4px solid # D72020 !important ;
282
282
}
283
283
284
- div .dashboard_box a .comment_unapprove {
284
+ div .dashboard_box a .comment_unapproved {
285
285
border-left : 4px solid # F1CC19 !important ;
286
286
}
287
287
Original file line number Diff line number Diff line change 1
1
<?php
2
- // =====================================================================
3
- // PLUGIN INFO
4
- // =====================================================================
2
+
5
3
$_PLUGIN_CONFIG['DATA'] = array(
6
- 'author'=>'Diego Najar ',
7
- 'version'=>'3.6 ',
8
- 'url'=>'http://www.nibbleblog .com'
4
+ 'author'=>'My name or nickname ',
5
+ 'version'=>'1.0 ',
6
+ 'url'=>'http://www.mysite .com'
9
7
);
10
8
11
- // =====================================================================
12
- // PLUGIN CLASS
13
- // =====================================================================
14
- class PLUGIN_CATEGORIES extends Plugin
9
+ class PLUGIN_HELLO extends Plugin
15
10
{
16
11
public function blog_body()
17
12
{
18
- global $categories;
19
-
20
- $html = '<ul>';
21
-
22
- foreach($categories as $category)
23
- {
24
- // URL generator
25
- $href = Url::category($category['slug']);
26
-
27
- $html .= '<li class="category"><a href="'.$href.'">'.$category['name'].'</a></li>';
28
- }
29
-
30
- $html .= '</ul>';
13
+ $html = '<p>Hello world</p>';
31
14
32
15
return $html;
33
16
}
34
17
}
35
18
36
- ?>
19
+ ?>
You can’t perform that action at this time.
0 commit comments