From e093f97ef62cad10fc632bbec2cfcf91c0ae3f7d Mon Sep 17 00:00:00 2001 From: Julio Montoya Date: Tue, 31 May 2011 17:29:56 +0200 Subject: [PATCH] Fixing multiple URL list see BT#1555 --- main/admin/access_urls.php | 87 +++++++++++++++------------------ main/inc/lib/urlmanager.lib.php | 2 +- 2 files changed, 40 insertions(+), 49 deletions(-) diff --git a/main/admin/access_urls.php b/main/admin/access_urls.php index e5faee5883..f33cd94730 100755 --- a/main/admin/access_urls.php +++ b/main/admin/access_urls.php @@ -113,57 +113,48 @@ echo Display::url(Display::return_icon('course.png', get_lang('ManageCourses' echo Display::url(Display::return_icon('session.png', get_lang('ManageSessions'), array(), 32), api_get_path(WEB_CODE_PATH).'admin/access_url_edit_sessions_to_url.php'); echo ''; -$table = new SortableTable('urls', 'url_count_mask', 'get_url_data_mask',2); -$table->set_additional_parameters($parameters); -$table->set_header(0, '', false); - -$table->set_header(1, get_lang('URL')); -$table->set_header(2, get_lang('Description')); -$table->set_header(3, get_lang('Active')); -$table->set_header(4, get_lang('Modify')); - -$table->set_column_filter(3, 'active_filter'); -$table->set_column_filter(4, 'modify_filter'); - - -$table->display(); - -function modify_filter($active, $url_params, $row) { - global $charset; - $url_id = $row['0']; - $result .= ''.Display::return_icon('edit.png', get_lang('Edit'), array(), 22).' '; - if ($url_id != '1') { - $result .= ''.Display::return_icon('delete.png', get_lang('Delete'), array(), 22).''; - } - return $result; +//$table = new SortableTable('urls', 'url_count_mask', 'get_url_data_mask',2); +$sortable_data = UrlManager::get_url_data(); +$urls = array(); +foreach($sortable_data as $row) { + //title + $url = Display::url($row['url'], $row['url'], array('target'=>'_blank')); + $description = $row['description']; + + //Status + $active = $row['active']; + if ($active=='1') { + $action='lock'; + $image='right'; + } + if ($active=='0') { + $action='unlock'; + $image='wrong'; + } + // you cannot lock the default + if ($row['id']=='1') { + $status = Display::return_icon($image.'.gif', get_lang(ucfirst($action))); + } else { + $status = ''.Display::return_icon($image.'.gif', get_lang(ucfirst($action))).''; + } + //Actions + $url_id = $row['id']; + $actions = ''.Display::return_icon('edit.png', get_lang('Edit'), array(), 22).' '; + if ($url_id != '1') { + $actions = ''.Display::return_icon('delete.png', get_lang('Delete'), array(), 22).''; + } + $urls[] = array($url, $description, $status, $actions); } -function active_filter($active, $url_params, $row) { - $active = $row['3']; - if ($active=='1') { - $action='lock'; - $image='right'; - } - if ($active=='0') { - $action='unlock'; - $image='wrong'; - } - // you cannot lock the default - if ($row['0']=='1') { - $result = Display::return_icon($image.'.gif', get_lang(ucfirst($action))); - } else { - $result = ''.Display::return_icon($image.'.gif', get_lang(ucfirst($action))).''; - } - return $result; -} +$table = new SortableTableFromArrayConfig($urls, 2, 50, 'urls'); +$table->set_additional_parameters($parameters); -// this 2 "mask" function are here just because the SortableTable -function get_url_data_mask($id, $url_params=null, $row=null) { - return UrlManager::get_url_data(); -} -function url_count_mask() { - return UrlManager::url_count(); -} +//$table->set_header(0, ''); +$table->set_header(0, get_lang('URL')); +$table->set_header(1, get_lang('Description')); +$table->set_header(2, get_lang('Active')); +$table->set_header(3, get_lang('Modify'), false); +$table->display(); /* FOOTER */ Display :: display_footer(); \ No newline at end of file diff --git a/main/inc/lib/urlmanager.lib.php b/main/inc/lib/urlmanager.lib.php index 9cdab17620..6565296d37 100755 --- a/main/inc/lib/urlmanager.lib.php +++ b/main/inc/lib/urlmanager.lib.php @@ -122,7 +122,7 @@ class UrlManager public static function get_url_data() { $table_access_url= Database :: get_main_table(TABLE_MAIN_ACCESS_URL); - $sql = "SELECT id, url, description, active FROM $table_access_url"; + $sql = "SELECT id, url, description, active FROM $table_access_url ORDER BY id"; $res = Database::query($sql); $urls = array (); while ($url = Database::fetch_array($res)) {