From 1c95a61a2c2b24ebedcb6dc810dfa7a0c5c5d50e Mon Sep 17 00:00:00 2001 From: mkonecny Date: Thu, 30 Dec 2010 12:02:02 -0500 Subject: [PATCH] -renamed some files to better represent their function --- application/configs/navigation.php | 2 +- application/controllers/ScheduleController.php | 2 +- .../schedule/{get-scheduler-time.phtml => view-playlist.phtml} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename application/views/scripts/schedule/{get-scheduler-time.phtml => view-playlist.phtml} (100%) diff --git a/application/configs/navigation.php b/application/configs/navigation.php index 42ef8aab9..a451b8340 100644 --- a/application/configs/navigation.php +++ b/application/configs/navigation.php @@ -74,7 +74,7 @@ $pages = array( 'label' => 'Now Playing', 'module' => 'default', 'controller' => 'Schedule', - 'action' => 'get-scheduler-time' + 'action' => 'view-playlist' ), array( 'label' => 'Schedule', diff --git a/application/controllers/ScheduleController.php b/application/controllers/ScheduleController.php index 0121038cb..651efb191 100644 --- a/application/controllers/ScheduleController.php +++ b/application/controllers/ScheduleController.php @@ -175,7 +175,7 @@ class ScheduleController extends Zend_Controller_Action } } - public function getSchedulerTimeAction() + public function viewPlaylistAction() { $this->view->headScript()->appendFile('/js/playlist/playlist.js','text/javascript'); $this->view->headScript()->appendFile('/js/progressbar/jquery.progressbar.min.js','text/javascript'); diff --git a/application/views/scripts/schedule/get-scheduler-time.phtml b/application/views/scripts/schedule/view-playlist.phtml similarity index 100% rename from application/views/scripts/schedule/get-scheduler-time.phtml rename to application/views/scripts/schedule/view-playlist.phtml