diff options
| author | Andy Staudacher <andy.st@gmail.com> | 2009-02-24 05:54:19 +0000 |
|---|---|---|
| committer | Andy Staudacher <andy.st@gmail.com> | 2009-02-24 05:54:19 +0000 |
| commit | e0319573542293c661c263de30547eeb9c2b7ede (patch) | |
| tree | 19383ba068aacd48b3587be144aff3dd2da11c92 /modules/local_import/helpers/local_import.php | |
| parent | 41600a982f566cf47c240fd5c4b46096983d2b7e (diff) | |
File structure style fixes
Diffstat (limited to 'modules/local_import/helpers/local_import.php')
| -rw-r--r-- | modules/local_import/helpers/local_import.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/local_import/helpers/local_import.php b/modules/local_import/helpers/local_import.php index ca7d01e4..d40b6016 100644 --- a/modules/local_import/helpers/local_import.php +++ b/modules/local_import/helpers/local_import.php @@ -18,7 +18,7 @@ * Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */ class local_import { - public static function get_admin_page() { + static function get_admin_page() { $template = new View("local_import_admin.html"); $paths = unserialize(module::get_var("local_import", "authorized_paths", "a:0:{}")); @@ -30,7 +30,7 @@ class local_import { return $template; } - public static function get_admin_form() { + static function get_admin_form() { $form = new Forge("admin/local_import/add_path", "", "post", array("id" => "gLocalImportAdminForm")); $add_path = $form->group("add_path"); $add_path->input("path")->label(t("Path"))->rules("required") |
