123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257 |
- <?php
- /**
- * This file contains a standard way of displaying lists for SMF.
- * Simple Machines Forum (SMF)
- *
- * @package SMF
- * @author Simple Machines http://www.simplemachines.org
- * @copyright 2013 Simple Machines and individual contributors
- * @license http://www.simplemachines.org/about/smf/license.php BSD
- *
- * @version 2.1 Alpha 1
- */
- if (!defined('SMF'))
- die('No direct access...');
- /**
- * Create a new list
- * @param array $listOptions
- */
- function createList($listOptions)
- {
- global $context, $settings, $options, $txt, $modSettings, $scripturl;
- assert(isset($listOptions['id']));
- assert(isset($listOptions['columns']));
- assert(is_array($listOptions['columns']));
- assert((empty($listOptions['items_per_page']) || (isset($listOptions['get_count']['function'], $listOptions['base_href']) && is_numeric($listOptions['items_per_page']))));
- assert((empty($listOptions['default_sort_col']) || isset($listOptions['columns'][$listOptions['default_sort_col']])));
- assert((!isset($listOptions['form']) || isset($listOptions['form']['href'])));
- call_integration_hook('integrate_' . $listOptions['id'], array(&$listOptions));
- // All the context data will be easily accessible by using a reference.
- $context[$listOptions['id']] = array();
- $list_context = &$context[$listOptions['id']];
- // Figure out the sort.
- if (empty($listOptions['default_sort_col']))
- {
- $list_context['sort'] = array();
- $sort = '1=1';
- }
- else
- {
- $request_var_sort = isset($listOptions['request_vars']['sort']) ? $listOptions['request_vars']['sort'] : 'sort';
- $request_var_desc = isset($listOptions['request_vars']['desc']) ? $listOptions['request_vars']['desc'] : 'desc';
- if (isset($_REQUEST[$request_var_sort], $listOptions['columns'][$_REQUEST[$request_var_sort]], $listOptions['columns'][$_REQUEST[$request_var_sort]]['sort']))
- $list_context['sort'] = array(
- 'id' => $_REQUEST[$request_var_sort],
- 'desc' => isset($_REQUEST[$request_var_desc]) && isset($listOptions['columns'][$_REQUEST[$request_var_sort]]['sort']['reverse']),
- );
- else
- $list_context['sort'] = array(
- 'id' => $listOptions['default_sort_col'],
- 'desc' => (!empty($listOptions['default_sort_dir']) && $listOptions['default_sort_dir'] == 'desc') || (!empty($listOptions['columns'][$listOptions['default_sort_col']]['sort']['default']) && substr($listOptions['columns'][$listOptions['default_sort_col']]['sort']['default'], -4, 4) == 'desc') ? true : false,
- );
- // Set the database column sort.
- $sort = $listOptions['columns'][$list_context['sort']['id']]['sort'][$list_context['sort']['desc'] ? 'reverse' : 'default'];
- }
- $list_context['start_var_name'] = isset($listOptions['start_var_name']) ? $listOptions['start_var_name'] : 'start';
- // In some cases the full list must be shown, regardless of the amount of items.
- if (empty($listOptions['items_per_page']))
- {
- $list_context['start'] = 0;
- $list_context['items_per_page'] = 0;
- }
- // With items per page set, calculate total number of items and page index.
- else
- {
- // First get an impression of how many items to expect.
- if (isset($listOptions['get_count']['file']))
- require_once($listOptions['get_count']['file']);
- $list_context['total_num_items'] = call_user_func_array($listOptions['get_count']['function'], empty($listOptions['get_count']['params']) ? array() : $listOptions['get_count']['params']);
- // Default the start to the beginning...sounds logical.
- $list_context['start'] = isset($_REQUEST[$list_context['start_var_name']]) ? (int) $_REQUEST[$list_context['start_var_name']] : 0;
- $list_context['items_per_page'] = $listOptions['items_per_page'];
- // Then create a page index.
- if ($list_context['total_num_items'] > $list_context['items_per_page'])
- $list_context['page_index'] = constructPageIndex($listOptions['base_href'] . (empty($list_context['sort']) ? '' : ';' . $request_var_sort . '=' . $list_context['sort']['id'] . ($list_context['sort']['desc'] ? ';' . $request_var_desc : '')) . ($list_context['start_var_name'] != 'start' ? ';' . $list_context['start_var_name'] . '=%1$d' : ''), $list_context['start'], $list_context['total_num_items'], $list_context['items_per_page'], $list_context['start_var_name'] != 'start');
- }
- // Prepare the headers of the table.
- $list_context['headers'] = array();
- foreach ($listOptions['columns'] as $column_id => $column)
- $list_context['headers'][] = array(
- 'id' => $column_id,
- 'label' => isset($column['header']['eval']) ? eval($column['header']['eval']) : (isset($column['header']['value']) ? $column['header']['value'] : ''),
- 'href' => empty($listOptions['default_sort_col']) || empty($column['sort']) ? '' : $listOptions['base_href'] . ';' . $request_var_sort . '=' . $column_id . ($column_id === $list_context['sort']['id'] && !$list_context['sort']['desc'] && isset($column['sort']['reverse']) ? ';' . $request_var_desc : '') . (empty($list_context['start']) ? '' : ';' . $list_context['start_var_name'] . '=' . $list_context['start']),
- 'sort_image' => empty($listOptions['default_sort_col']) || empty($column['sort']) || $column_id !== $list_context['sort']['id'] ? null : ($list_context['sort']['desc'] ? 'down' : 'up'),
- 'class' => isset($column['header']['class']) ? $column['header']['class'] : '',
- 'style' => isset($column['header']['style']) ? $column['header']['style'] : '',
- 'colspan' => isset($column['header']['colspan']) ? $column['header']['colspan'] : '',
- );
- // We know the amount of columns, might be useful for the template.
- $list_context['num_columns'] = count($listOptions['columns']);
- $list_context['width'] = isset($listOptions['width']) ? $listOptions['width'] : '0';
- // Get the file with the function for the item list.
- if (isset($listOptions['get_items']['file']))
- require_once($listOptions['get_items']['file']);
- // Call the function and include which items we want and in what order.
- $list_items = call_user_func_array($listOptions['get_items']['function'], array_merge(array($list_context['start'], $list_context['items_per_page'], $sort), empty($listOptions['get_items']['params']) ? array() : $listOptions['get_items']['params']));
- $list_items = empty($list_items) ? array() : $list_items;
- // Loop through the list items to be shown and construct the data values.
- $list_context['rows'] = array();
- foreach ($list_items as $item_id => $list_item)
- {
- $cur_row = array();
- foreach ($listOptions['columns'] as $column_id => $column)
- {
- $cur_data = array();
- // A value straight from the database?
- if (isset($column['data']['db']))
- $cur_data['value'] = $list_item[$column['data']['db']];
- // Take the value from the database and make it HTML safe.
- elseif (isset($column['data']['db_htmlsafe']))
- $cur_data['value'] = htmlspecialchars($list_item[$column['data']['db_htmlsafe']]);
- // Using sprintf is probably the most readable way of injecting data.
- elseif (isset($column['data']['sprintf']))
- {
- $params = array();
- foreach ($column['data']['sprintf']['params'] as $sprintf_param => $htmlsafe)
- $params[] = $htmlsafe ? htmlspecialchars($list_item[$sprintf_param]) : $list_item[$sprintf_param];
- $cur_data['value'] = vsprintf($column['data']['sprintf']['format'], $params);
- }
- // The most flexible way probably is applying a custom function.
- elseif (isset($column['data']['function']))
- $cur_data['value'] = call_user_func_array($column['data']['function'], array($list_item));
- // A modified value (inject the database values).
- elseif (isset($column['data']['eval']))
- $cur_data['value'] = eval(preg_replace('~%([a-zA-Z0-9\-_]+)%~', '$list_item[\'$1\']', $column['data']['eval']));
- // A literal value.
- elseif (isset($column['data']['value']))
- $cur_data['value'] = $column['data']['value'];
- // Empty value.
- else
- $cur_data['value'] = '';
- // Allow for basic formatting.
- if (!empty($column['data']['comma_format']))
- $cur_data['value'] = comma_format($cur_data['value']);
- elseif (!empty($column['data']['timeformat']))
- $cur_data['value'] = timeformat($cur_data['value']);
- // Set a style class for this column?
- if (isset($column['data']['class']))
- $cur_data['class'] = $column['data']['class'];
- // Fully customized styling for the cells in this column only.
- if (isset($column['data']['style']))
- $cur_data['style'] = $column['data']['style'];
- // Add the data cell properties to the current row.
- $cur_row[$column_id] = $cur_data;
- }
- $list_context['rows'][$item_id]['class'] = '';
- $list_context['rows'][$item_id]['style'] = '';
- // Maybe we wat set a custom class for the row based on the data in the row itself
- if (isset($listOptions['data_check']))
- {
- if (isset($listOptions['data_check']['class']))
- $list_context['rows'][$item_id]['class'] = ' ' . $listOptions['data_check']['class']($list_item);
- if (isset($listOptions['data_check']['style']))
- $list_context['rows'][$item_id]['style'] = ' style="' . $listOptions['data_check']['style']($list_item) . '"';
- }
- // Insert the row into the list.
- $list_context['rows'][$item_id]['data'] = $cur_row;
- }
- // The title is currently optional.
- if (isset($listOptions['title']))
- $list_context['title'] = $listOptions['title'];
- // In case there's a form, share it with the template context.
- if (isset($listOptions['form']))
- {
- $list_context['form'] = $listOptions['form'];
- if (!isset($list_context['form']['hidden_fields']))
- $list_context['form']['hidden_fields'] = array();
- // Always add a session check field.
- $list_context['form']['hidden_fields'][$context['session_var']] = $context['session_id'];
- // Will this do a token check?
- if (isset($listOptions['form']['token']))
- $list_context['form']['hidden_fields'][$context[$listOptions['form']['token'] . '_token_var']] = $context[$listOptions['form']['token'] . '_token'];
- // Include the starting page as hidden field?
- if (!empty($list_context['form']['include_start']) && !empty($list_context['start']))
- $list_context['form']['hidden_fields'][$list_context['start_var_name']] = $list_context['start'];
- // If sorting needs to be the same after submitting, add the parameter.
- if (!empty($list_context['form']['include_sort']) && !empty($list_context['sort']))
- {
- $list_context['form']['hidden_fields']['sort'] = $list_context['sort']['id'];
- if ($list_context['sort']['desc'])
- $list_context['form']['hidden_fields']['desc'] = 1;
- }
- }
- // Wanna say something nice in case there are no items?
- if (isset($listOptions['no_items_label']))
- {
- $list_context['no_items_label'] = $listOptions['no_items_label'];
- $list_context['no_items_align'] = isset($listOptions['no_items_align']) ? $listOptions['no_items_align'] : '';
- }
- // A list can sometimes need a few extra rows above and below.
- if (isset($listOptions['additional_rows']))
- {
- $list_context['additional_rows'] = array();
- foreach ($listOptions['additional_rows'] as $row)
- {
- if (empty($row))
- continue;
- // Supported row positions: top_of_list, after_title,
- // above_column_headers, below_table_data, bottom_of_list.
- if (!isset($list_context['additional_rows'][$row['position']]))
- $list_context['additional_rows'][$row['position']] = array();
- $list_context['additional_rows'][$row['position']][] = $row;
- }
- }
- // Add an option for inline JavaScript.
- if (isset($listOptions['javascript']))
- $list_context['javascript'] = $listOptions['javascript'];
- // We want a menu.
- if (isset($listOptions['list_menu']))
- $list_context['list_menu'] = $listOptions['list_menu'];
- // Make sure the template is loaded.
- loadTemplate('GenericList');
- }
- ?>
|