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 // http://ithemes.com // // @author Dustin Bolton <http://dustinbolton.com> class pb_backupbuddy_serverinfo { /* get_wp_urls_paths() * * Gives an array of common WordPress URLs and file paths. * * @return array Contains multiple arrays of the format: * name => '' * title => '' * value => '' */ public static function get_wp_urls() { $items = array(); $wp_upload_dir = wp_upload_dir(); /* $items[] = array( 'title' => ', 'name' => , 'value' => , ); */ return $items; } } // end class.
|