diff options
author | friendica <info@friendica.com> | 2014-08-13 22:22:52 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-08-13 22:22:52 -0700 |
commit | 1d6f49493674a8e9423f509eddea62f97c417ba5 (patch) | |
tree | 558ee91f724e2df3c2e2354b30f5db233f800fe2 /mod/admin.php | |
parent | 4156c68d0d433e804787cdd7ff52235d51b53ba2 (diff) | |
download | volse-hubzilla-1d6f49493674a8e9423f509eddea62f97c417ba5.tar.gz volse-hubzilla-1d6f49493674a8e9423f509eddea62f97c417ba5.tar.bz2 volse-hubzilla-1d6f49493674a8e9423f509eddea62f97c417ba5.zip |
some work on extended profile fields
Diffstat (limited to 'mod/admin.php')
-rw-r--r-- | mod/admin.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/mod/admin.php b/mod/admin.php index 464edddd4..9f756c2d2 100644 --- a/mod/admin.php +++ b/mod/admin.php @@ -65,6 +65,11 @@ function admin_post(&$a){ case 'dbsync': admin_page_dbsync_post($a); break; + + case 'profs': + admin_page_profs_post($a); + break; + } } @@ -95,6 +100,7 @@ function admin_content(&$a) { 'plugins' => Array($a->get_baseurl(true)."/admin/plugins/", t("Plugins") , "plugins"), 'themes' => Array($a->get_baseurl(true)."/admin/themes/", t("Themes") , "themes"), 'hubloc' => Array($a->get_baseurl(true)."/admin/hubloc/", t("Server") , "server"), + 'profs' => array(z_root() . '/admin/profs', t('Profile Config'), 'profs'), 'dbsync' => Array($a->get_baseurl(true)."/admin/dbsync/", t('DB updates'), "dbsync") ); @@ -155,6 +161,9 @@ function admin_content(&$a) { case 'dbsync': $o = admin_page_dbsync($a); break; + case 'profs': + $o = admin_page_profs($a); + break; default: notice( t("Item not found.") ); } @@ -1317,3 +1326,17 @@ readable."); )); } +function admin_page_profs_post(&$a) { + + +} + +function admin_page_profs(&$a) { + + +} + + + + + |