diff options
author | Chad Kieffer <ckieffer@gmail.com> | 2009-07-30 17:28:05 -0600 |
---|---|---|
committer | Chad Kieffer <ckieffer@gmail.com> | 2009-07-30 17:28:05 -0600 |
commit | 9d70f142199f4f3c3ec63fcbb125f5c33c91d9ec (patch) | |
tree | 189532a66c8996c6f69003ba01e455ce1b050a4e /modules/digibug/helpers | |
parent | ca4f03b93e1c5eb90d1677684fd5220c000d7d34 (diff) | |
parent | 19d89f94f9939bbd879d6c8ead4e802f592ec808 (diff) |
Merge branch 'master' of git@github.com:gallery/gallery3
Diffstat (limited to 'modules/digibug/helpers')
-rw-r--r-- | modules/digibug/helpers/digibug_event.php (renamed from modules/digibug/helpers/digibug_menu.php) | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/digibug/helpers/digibug_menu.php b/modules/digibug/helpers/digibug_event.php index 3f70fa24..c4f9e560 100644 --- a/modules/digibug/helpers/digibug_menu.php +++ b/modules/digibug/helpers/digibug_event.php @@ -17,8 +17,8 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */ -class digibug_menu { - static function admin($menu, $theme) { +class digibug_event_Core { + static function admin_menu($menu, $theme) { $menu->get("settings_menu") ->append(Menu::factory("link") ->id("digibug_menu") @@ -26,7 +26,7 @@ class digibug_menu { ->url(url::site("admin/digibug"))); } - static function photo($menu, $theme) { + static function photo_menu($menu, $theme) { $item = $theme->item(); $menu->append( Menu::factory("link") @@ -36,7 +36,7 @@ class digibug_menu { ->css_id("gDigibugLink")); } - static function thumb($menu, $theme, $item) { + static function thumb_menu($menu, $theme, $item) { if ($item->type == "photo") { $menu->get("options_menu") ->append( |