00001 <?php 00002 00008 class News_List extends oxAdminList 00009 { 00014 protected $_sThisTemplate = 'news_list.tpl'; 00015 00021 protected $_sListClass = 'oxnews'; 00022 00028 protected $_sListType = 'oxnewslist'; 00029 00036 public function init() 00037 { 00038 $this->_sDefSort = "oxdate"; 00039 $sSortCol = oxConfig::getParameter( 'sort' ); 00040 00041 if ( !$sSortCol || $sSortCol == $this->_sDefSort ) { 00042 $this->_blDesc = true; 00043 } 00044 00045 parent::Init(); 00046 } 00047 }