projects
/
WP-Plugins
/
glm-employment.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6540ab2
)
Add sub menu for settings
author
Steve Sutton
<steve@gaslightmedia.com>
Fri, 6 Feb 2015 20:23:09 +0000
(15:23 -0500)
committer
Steve Sutton
<steve@gaslightmedia.com>
Fri, 6 Feb 2015 20:23:09 +0000
(15:23 -0500)
controllers/admin.php
patch
|
blob
|
history
diff --git
a/controllers/admin.php
b/controllers/admin.php
index
3f70b22
..
00deb79
100644
(file)
--- a/
controllers/admin.php
+++ b/
controllers/admin.php
@@
-44,14
+44,14
@@
class glm_employment_admin
'applications',
array($this, 'get_applications')
);
-
//
add_submenu_page(
-
//
'edit.php?post_type=' . GLM_EMP_POST_TYPE,
-
//
'settings',
-
//
'Settings',
-
//
'manage_options',
-
//
'job_settings',
-
//
array($this, 'show_job_settings')
-
//
);
+ add_submenu_page(
+ 'edit.php?post_type=' . GLM_EMP_POST_TYPE,
+ 'settings',
+ 'Settings',
+ 'manage_options',
+ 'job_settings',
+ array($this, 'show_job_settings')
+ );
}
/**