Changeset 1159140
- Timestamp:
- 05/12/2015 08:46:45 PM (11 years ago)
- Location:
- msync/trunk/admin
- Files:
-
- 1 added
- 1 edited
-
class-msync-admin.php (modified) (2 diffs)
-
partials/msync-about.php (added)
Legend:
- Unmodified
- Added
- Removed
-
msync/trunk/admin/class-msync-admin.php
r1158015 r1159140 91 91 add_submenu_page('msync', 'mSync: All Forms', 'All Forms', 'manage_options', 'msync', array(&$this, 'display_msync_forms')); 92 92 add_submenu_page('msync', 'mSync: Add New', 'Add New', 'manage_options', 'builder', array(&$this, 'display_msync_form_builder')); 93 add_submenu_page('msync', 'mSync: How it Works', 'About', 'manage_options', 'about', 'display_msync_about');93 add_submenu_page('msync', 'mSync: How it Works', 'About', 'manage_options', 'about', array(&$this, 'display_msync_about')); 94 94 } 95 95 … … 98 98 $plugin_ready = $this->is_plugin_ready(); 99 99 require(dirname( __FILE__ ) . '/partials/msync-admin-settings-form.php'); 100 } 101 102 public function display_msync_about() { 103 require(dirname( __FILE__ ) . '/partials/msync-about.php'); 100 104 } 101 105
Note: See TracChangeset
for help on using the changeset viewer.