31 lines
401 B
PHP
31 lines
401 B
PHP
|
<?php
|
||
|
|
||
|
namespace Garradin\Plugin\Materiels;
|
||
|
|
||
|
use Garradin\DB;
|
||
|
|
||
|
class Entry
|
||
|
{
|
||
|
protected $columns_order = array(
|
||
|
'id',
|
||
|
'kind',
|
||
|
'number_of_equipments',
|
||
|
'equipment_id',
|
||
|
'date_of_entry',
|
||
|
);
|
||
|
|
||
|
public function listKinds()
|
||
|
{
|
||
|
return array(
|
||
|
'Achat',
|
||
|
'Don',
|
||
|
'Récupération',
|
||
|
);
|
||
|
}
|
||
|
|
||
|
public function listEquipmentIds()
|
||
|
{
|
||
|
// return $this->kinds;
|
||
|
}
|
||
|
}
|