table.func.php 8.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  1. <?php
  2. /**
  3. * @file
  4. * Stub file for bootstrap_table().
  5. */
  6. /**
  7. * Returns HTML for a table.
  8. *
  9. * @param array $variables
  10. * An associative array containing:
  11. * - header: An array containing the table headers. Each element of the array
  12. * can be either a localized string or an associative array with the
  13. * following keys:
  14. * - "data": The localized title of the table column.
  15. * - "field": The database field represented in the table column (required
  16. * if user is to be able to sort on this column).
  17. * - "sort": A default sort order for this column ("asc" or "desc"). Only
  18. * one column should be given a default sort order because table sorting
  19. * only applies to one column at a time.
  20. * - Any HTML attributes, such as "colspan", to apply to the column header
  21. * cell.
  22. * - rows: An array of table rows. Every row is an array of cells, or an
  23. * associative array with the following keys:
  24. * - "data": an array of cells
  25. * - Any HTML attributes, such as "class", to apply to the table row.
  26. * - "no_striping": a boolean indicating that the row should receive no
  27. * 'even / odd' styling. Defaults to FALSE.
  28. * Each cell can be either a string or an associative array with the
  29. * following keys:
  30. * - "data": The string to display in the table cell.
  31. * - "header": Indicates this cell is a header.
  32. * - Any HTML attributes, such as "colspan", to apply to the table cell.
  33. * See theme_table() for a $rows example.
  34. * - footer: An array containing the table footer. Each element of the array
  35. * can be either a localized string or an associative array with the
  36. * following keys:
  37. * - "data": The localized title of the table column.
  38. * - "field": The database field represented in the table column (required
  39. * if user is to be able to sort on this column).
  40. * - "sort": A default sort order for this column ("asc" or "desc"). Only
  41. * one column should be given a default sort order because table sorting
  42. * only applies to one column at a time.
  43. * - Any HTML attributes, such as "colspan", to apply to the column footer
  44. * cell.
  45. * - attributes: An array of HTML attributes to apply to the table tag.
  46. * - caption: A localized string to use for the <caption> tag.
  47. * - colgroups: An array of column groups. Each element of the array can be
  48. * either:
  49. * - An array of columns, each of which is an associative array of HTML
  50. * attributes applied to the COL element.
  51. * - An array of attributes applied to the COLGROUP element, which must
  52. * include a "data" attribute. To add attributes to COL elements, set the
  53. * "data" attribute with an array of columns, each of which is an
  54. * associative array of HTML attributes.
  55. * See theme_table() for a $colgroup example.
  56. * These optional tags are used to group and set properties on columns
  57. * within a table. For example, one may easily group three columns and
  58. * apply same background style to all.
  59. * - sticky: Use a "sticky" table header.
  60. * - empty: The message to display in an extra row if table does not have any
  61. * rows.
  62. *
  63. * @return string
  64. * The constructed HTML.
  65. *
  66. * @see theme_table()
  67. *
  68. * @ingroup theme_functions
  69. */
  70. function bootstrap_table(array $variables) {
  71. $header = $variables['header'];
  72. $rows = $variables['rows'];
  73. $footer = $variables['footer'];
  74. $attributes = $variables['attributes'];
  75. $caption = $variables['caption'];
  76. $colgroups = $variables['colgroups'];
  77. $sticky = $variables['sticky'];
  78. $empty = $variables['empty'];
  79. $responsive = $variables['responsive'];
  80. // Add sticky headers, if applicable.
  81. if (is_array($header) && count($header) && $sticky) {
  82. drupal_add_js('misc/tableheader.js');
  83. // Add 'sticky-enabled' class to the table to identify it for JS.
  84. // This is needed to target tables constructed by this function.
  85. $attributes['class'][] = 'sticky-enabled';
  86. }
  87. $output = '';
  88. if ($responsive) {
  89. $output .= "<div class=\"table-responsive\">\n";
  90. }
  91. $output .= '<table' . drupal_attributes($attributes) . ">\n";
  92. if (isset($caption)) {
  93. $output .= '<caption>' . $caption . "</caption>\n";
  94. }
  95. // Format the table columns:
  96. if (!empty($colgroups)) {
  97. foreach ($colgroups as $number => $colgroup) {
  98. $attributes = array();
  99. // Check if we're dealing with a simple or complex column.
  100. if (isset($colgroup['data'])) {
  101. foreach ($colgroup as $key => $value) {
  102. if ($key == 'data') {
  103. $cols = $value;
  104. }
  105. else {
  106. $attributes[$key] = $value;
  107. }
  108. }
  109. }
  110. else {
  111. $cols = $colgroup;
  112. }
  113. // Build colgroup.
  114. if (is_array($cols) && count($cols)) {
  115. $output .= ' <colgroup' . drupal_attributes($attributes) . '>';
  116. $i = 0;
  117. foreach ($cols as $col) {
  118. $output .= ' <col' . drupal_attributes($col) . ' />';
  119. }
  120. $output .= " </colgroup>\n";
  121. }
  122. else {
  123. $output .= ' <colgroup' . drupal_attributes($attributes) . " />\n";
  124. }
  125. }
  126. }
  127. // Add the 'empty' row message if available.
  128. if (empty($rows) && !empty($empty)) {
  129. $header_count = 0;
  130. foreach ($header as $header_cell) {
  131. if (is_array($header_cell)) {
  132. $header_count += isset($header_cell['colspan']) ? $header_cell['colspan'] : 1;
  133. }
  134. else {
  135. $header_count++;
  136. }
  137. }
  138. $rows[] = array(
  139. array(
  140. 'data' => $empty,
  141. 'colspan' => $header_count,
  142. 'class' => array('empty', 'message'),
  143. ),
  144. );
  145. }
  146. // Format the table header:
  147. if (!empty($header)) {
  148. $ts = tablesort_init($header);
  149. // HTML requires that the thead tag has tr tags in it followed by tbody
  150. // tags. Using ternary operator to check and see if we have any rows.
  151. $output .= (count($rows) ? ' <thead><tr>' : ' <tr>');
  152. foreach ($header as $cell) {
  153. $cell = tablesort_header($cell, $header, $ts);
  154. $output .= _theme_table_cell($cell, TRUE);
  155. }
  156. // Using ternary operator to close the tags based on whether or not there
  157. // are rows.
  158. $output .= (count($rows) ? " </tr></thead>\n" : "</tr>\n");
  159. }
  160. else {
  161. $ts = array();
  162. }
  163. // Format the table rows:
  164. if (!empty($rows)) {
  165. $output .= "<tbody>\n";
  166. foreach ($rows as $row) {
  167. // Check if we're dealing with a simple or complex row.
  168. if (isset($row['data'])) {
  169. $cells = $row['data'];
  170. // Set the attributes array and exclude 'data' and 'no_striping'.
  171. $attributes = $row;
  172. unset($attributes['data']);
  173. unset($attributes['no_striping']);
  174. }
  175. else {
  176. $cells = $row;
  177. $attributes = array();
  178. }
  179. if (count($cells)) {
  180. // Build row.
  181. $output .= ' <tr' . drupal_attributes($attributes) . '>';
  182. $i = 0;
  183. foreach ($cells as $cell) {
  184. $cell = tablesort_cell($cell, $header, $ts, $i++);
  185. $output .= _theme_table_cell($cell);
  186. }
  187. $output .= " </tr>\n";
  188. }
  189. }
  190. $output .= "</tbody>\n";
  191. }
  192. // Format the table footer:
  193. if (!empty($footer)) {
  194. $output .= "<tfoot>\n";
  195. foreach ($footer as $row) {
  196. // Check if we're dealing with a simple or complex row.
  197. if (isset($row['data'])) {
  198. $cells = $row['data'];
  199. // Set the attributes array and exclude 'data'.
  200. $attributes = $row;
  201. unset($attributes['data']);
  202. }
  203. else {
  204. $cells = $row;
  205. $attributes = array();
  206. }
  207. if (count($cells)) {
  208. // Build row.
  209. $output .= ' <tr' . drupal_attributes($attributes) . '>';
  210. $i = 0;
  211. foreach ($cells as $cell) {
  212. $cell = tablesort_cell($cell, $header, $ts, $i++);
  213. $output .= _theme_table_cell($cell);
  214. }
  215. $output .= " </tr>\n";
  216. }
  217. }
  218. // Using ternary operator to close the tags based on whether or not there
  219. // are rows.
  220. $output .= "</tfoot>\n";
  221. }
  222. $output .= "</table>\n";
  223. if ($responsive) {
  224. $output .= "</div>\n";
  225. }
  226. return $output;
  227. }