Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathText.php
More file actions
Latest commit
executable file
·35 lines (27 loc) · 803 Bytes
/
Copy pathText.php
File metadata and controls
executable file
·35 lines (27 loc) · 803 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
defined('is_running') ordie('Not an entry point...');
$texts = array();
$texts[] = 'Blog';
$texts[] = 'Blog Home';
$texts[] = 'Newer Entry';
$texts[] = 'Newer Entries';
$texts[] = 'Older Entry';
$texts[] = 'Older Entries';
$texts[] = 'Read More';
$texts[] = 'More Blog Entries';
$texts[] = 'Name';
$texts[] = 'Website';
$texts[] = 'Categories';
$texts[] = 'Archives';
$texts[] = 'Comments';
$texts[] = 'Comment';
$texts[] = 'Leave Comment';
$texts[] = 'Add Comment';
$texts[] = 'Comments have been closed.';
$texts[] = 'Open Comments';
$texts[] = 'Close Comments';
/* this function can be used to update the addon once changes to the text values have been made */
functionOnTextChange(){
gpPlugin_incl('SimpleBlogCommon.php');
newSimpleBlogCommon();//regenerate the gadget and feed
}