我試圖使用ZF2專輯教程和設置zfTable模塊,這是菱這裏:zftable模塊的Zend Framework 2
https://github.com/dudapiotr/ZfTable
我按照本網站上的安裝說明,我覺得沒事兒。然而,我確實感覺到新手zendframework 2的實現部分缺少細節。
任何人都可以解釋如何獲取基本示例並將結果實施到表中嗎?我認爲「專輯」的例子非常完美,因爲很多人都以此爲出發點。
http://dudapiotr.eu/table/base
本網站中引用給出的信息只有得到這個工作的基本安裝後的指令是一類。
一些細節在哪裏放這個類,如何調用它等將是很好的。
我認爲這將是一個偉大的使用對許多其他人誰似乎有這個問題(但沒有解決方案或教程似乎是在那裏嘿嘿)
class Base extends AbstractTable
{
protected $config = array(
'name' => 'Base table',
'showPagination' => true,
'showQuickSearch' => false,
'showItemPerPage' => true,
'itemCountPerPage' => 20,
'showColumnFilters' => false,
'showExportToCSV ' => false,
'valuesOfItemPerPage' => array(5, 10, 20, 50 , 100 , 200),
'rowAction' => ''
);
//Definition of headers
protected $headers = array(
'idcustomer' => array('title' => 'Id', 'width' => '50') ,
'name' => array('title' => 'Name'),
'surname' => array('title' => 'Surname'),
'street' => array('title' => 'Street'),
'city' => array('title' => 'City'),
'active' => array('title' => 'Active' , 'width' => 100),
);
public function init()
{
}
protected function initFilters(\Zend\Db\Sql\Select $query)
{
}
}
感謝,
這將是很好的獲得一個指導,因爲你提到。 – vlr