Jnews展示列表内容:http: //i204.photobucket.com/albums/bb267/kellyshl/Untitled.png
我想知道如何使它像这样:http: //i204.photobucket.com/albums/bb267/kellyshl/Untitled-2.png (只是希望通过列表名称对其进行排序)
问候,并在此先感谢
Jnews展示列表内容:http: //i204.photobucket.com/albums/bb267/kellyshl/Untitled.png
我想知道如何使它像这样:http: //i204.photobucket.com/albums/bb267/kellyshl/Untitled-2.png (只是希望通过列表名称对其进行排序)
问候,并在此先感谢
在 _showSubcriptionList 方法中,
后 {
if ( $this->showListName ) {
if(!$this->linear)
if(!$this->dropdown)
$html .= '<ul class="jNewsLists">';
}
添加语句{
usort($this->lists, array("jnews_module", "cmp"));
}
并在类(jnews_module)中添加函数{
function cmp( $a, $b )
{
if( $a->list_name == $b->list_name ){ return 0 ; }
return ($a->list_name < $b->list_name) ? -1 : 1;
}
}