Пример #1
0
 /**
  * <p>Function to set the bottom pagination after the table</p>
  * @param object pagination - the pagination limits
  * @param string $css - the styling for the pagination
  */
 public static function setPaginationBot($pagination = null, $css = '')
 {
     $html = '';
     $html .= '<table cellspacing="0" cellpadding="2" border="0" style="' . $css . '"><tbody><tr><td>';
     $html .= jnews::_pagination($pagination);
     $html .= '</td></tr></tbody></table>';
     return $html;
 }