method get documentation in bbn\Appui\Observer
Returns an observer with its alias properties if there is one (except id and result).
function($id)
{
if ($this->check() &&
($d = $this->db->rselect('bbn_observers', [], [
'id' => $id
]))
) {
if ( !$d['id_alias'] ){
return $d;
}
if ($alias = $this->db->rselect('bbn_observers', [], [
'id' => $d['id_alias']
])) {
$alias['id'] = $d['id'];
$alias['result'] = $d['result'];
$alias['id_alias'] = $d['id_alias'];
return $alias;
}
}
return null;
}
Returns an observer with its alias properties if there is one (except id and result). BBN is a suite of PHP and JS libraries and VueJS components - all open-source! bbn.io, build applications, the quick way
This website uses cookies to ensure you get the best experience on our website.
© 2011-2024
BBN Solutions