2023-05-16 10:50:42 +08:00

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);
}