static function getConfigData(Profile $profile, $namespace, $topic) {
try {
$data = self::getData($profile, $namespace, $topic);
- } catch (Exception $e) {
+ } catch (NoResultException $e) {
$data = common_config($namespace, $topic);
}
return $data;
$pref->topic = $topic;
$pref->data = $data;
- if (!$pref->insert()) {
+ if ($pref->insert() === false) {
throw new ServerException('Could not save profile preference.');
}
return true;
function hidden($id, $value, $name=null)
{
- $this->element('input', array('name' => ($name) ? $name : $id,
+ $this->element('input', array('name' => $name ?: $id,
'type' => 'hidden',
'id' => $id,
'value' => $value));
{
$this->element('input', array('type' => 'submit',
'id' => $id,
- 'name' => ($name) ? $name : $id,
+ 'name' => $name ?: $id,
'class' => $cls,
'value' => $label,
'title' => $title));