deny = ! ! $deny; $this->order_master_id = $order_master_id; parent::__construct($app, $sbas_id, $record_id); $this->get_subdefs(); return $this; } /** * * @return string */ public function get_order_master_name() { if ($this->order_master_id) { $user = $this->app['repo.users']->find($this->order_master_id); return $user->getDisplayName(); } return ''; } /** * * @return int */ public function get_order_master_id() { return $this->order_master_id; } /** * * @return boolean */ public function get_deny() { return $this->deny; } }