Happy New Year
[squirrelmail.git] / templates / default / paginator.tpl
index c79e15bdff45e2def40c731a5dab72d67fb7b29b..c3b9dc0d600d2f6be9b2f3b545b7974027ba6347 100644 (file)
@@ -3,28 +3,85 @@
 /**
  * paginator.tpl
  *
 /**
  * paginator.tpl
  *
- * Copyright (c) 1999-2004 The SquirrelMail Project Team
- * Licensed under the GNU GPL. For full terms see the file COPYING.
+ * Template to create a message list paginator
  *
  *
- * Template and utility functions to create a paginator
+ * The following variables are available in this template:
+//FIXME: need to clean (and document) this list, it is just a dump of the array keys of $t
+ *    $sTemplateID
+ *    $icon_theme_path
+ *    $javascript_on
+ *    $delayed_errors
+ *    $frames
+ *    $lang
+ *    $page_title
+ *    $header_tags
+ *    $plugin_output
+ *    $header_sent
+ *    $body_tag_js
+ *    $shortBoxName
+ *    $sm_attribute_str
+ *    $frame_top
+ *    $urlMailbox
+ *    $startMessage
+ *    $hide_sm_attributions
+ *    $uri
+ *    $text
+ *    $onclick
+ *    $class
+ *    $id
+ *    $target
+ *    $color
+ *    $form_name
+ *    $form_id
+ *    $page_selector
+ *    $page_selector_max
+ *    $messagesPerPage
+ *    $showall
+ *    $end_msg
+ *    $align
+ *    $iNumberOfMessages
+ *    $aOrder
+ *    $aFormElements
+ *    $sort
+ *    $pageOffset
+ *    $baseurl
+ *    $aMessages
+ *    $trash_folder
+ *    $sent_folder
+ *    $draft_folder
+ *    $thread_link_str
+ *    $php_self
+ *    $mailbox
+ *    $enablesort
+ *    $icon_theme
+ *    $use_icons
+ *    $alt_index_colors
+ *    $fancy_index_highlite
+ *    $aSortSupported
+ *    $show_label_columns
+ *    $compact_paginator
+ *    $aErrors
  *
  *
+ * @copyright 1999-2018 The SquirrelMail Project Team
+ * @license http://opensource.org/licenses/gpl-license.php GNU Public License
  * @version $Id$
  * @package squirrelmail
  * @version $Id$
  * @package squirrelmail
+ * @subpackage templates
  */
 
  */
 
-include_once(SM_PATH.'templates/util_paginator.php');
+/** include functions */
+include_once(SM_PATH . 'functions/template/paginator_util.php');
 
 static $bScriptAdded;
 
 extract($t);
 
 
 static $bScriptAdded;
 
 extract($t);
 
-if ($javascript_on && $compact_paginator &&!isset($bScriptAdded)) {
+if ($javascript_on && $compact_paginator && !isset($bScriptAdded)) {
     $bScriptAdded = true;
 ?>
 
 <!-- start of compact paginator javascript -->
     $bScriptAdded = true;
 ?>
 
 <!-- start of compact paginator javascript -->
-<script language="JavaScript">
+<script type="text/javascript">
     function SubmitOnSelect(select, URL)
     {
         URL += select.options[select.selectedIndex].value;
     function SubmitOnSelect(select, URL)
     {
         URL += select.options[select.selectedIndex].value;
@@ -43,4 +100,3 @@ if ($javascript_on && $compact_paginator &&!isset($bScriptAdded)) {
     }
     // display the paginator string.
     echo $sPaginator;
     }
     // display the paginator string.
     echo $sPaginator;
-