16 lines
479 B
PHP
16 lines
479 B
PHP
<?php
|
|
public function isClickable($lieu, $action)
|
|
{
|
|
return $this->loadExtension('oa')->isClickable($lieu, $action);
|
|
}
|
|
|
|
public function getList($type = 'personal', $year = '', $month = '', $account = '', $dept = '', $status = '', $orderBy = 'id_desc')
|
|
{
|
|
return $this->loadExtension('oa')->getList($type, $year, $month, $account, $dept, $status, $orderBy);
|
|
}
|
|
|
|
public function getReviewedBy($account = '')
|
|
{
|
|
return $this->loadExtension('oa')->getReviewedBy($account);
|
|
}
|