adminlinks_list.php

Go to the documentation of this file.
00001 <?php
00002 
00009 class Adminlinks_List extends oxAdminList
00010 {
00011 
00017     protected $_sThisTemplate = 'adminlinks_list.tpl';
00018 
00024     protected $_sListClass = 'oxlinks';
00025 
00031     protected $_sDefSortField = 'oxinsert';
00032 
00038     public function getListSorting()
00039     {
00040         $aSorting = parent::getListSorting();
00041         if (isset($aSorting["oxlinks"][$this->_sDefSortField])) {
00042             $this->_blDesc = true;
00043         }
00044 
00045         return $aSorting;
00046     }
00047 }