00001 <?php 00002 00009 class Adminlinks_List extends oxAdminList 00010 { 00015 protected $_sThisTemplate = 'adminlinks_list.tpl'; 00016 00022 protected $_sListClass = 'oxlinks'; 00023 00029 public function init() 00030 { 00031 $this->_sDefSort = "oxinsert"; 00032 $sSortCol = oxConfig::getParameter( 'sort' ); 00033 00034 if ( !$sSortCol || $sSortCol == $this->_sDefSort ) { 00035 $this->_blDesc = true; 00036 } 00037 00038 parent::Init(); 00039 00040 } 00041 }