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