adminlinks_list.php

Go to the documentation of this file.
00001 <?php
00002 
00009 class Adminlinks_List extends oxAdminList
00010 {
00015     protected $_sThisTemplate = 'adminlinks_list.tpl';
00016 
00022     protected $_sListClass = 'oxlinks';
00023 
00029     protected $_sDefSortField = 'oxinsert';
00030 
00036     public function getListSorting()
00037     {
00038         $aSorting = parent::getListSorting();
00039         if ( isset( $aSorting["oxlinks"][$this->_sDefSortField] )) {
00040             $this->_blDesc = true;
00041         }
00042         return $aSorting;
00043     }
00044 }