openclassify/addons/default/visiosoft/profile-module/src/Profile/ProfilePresenter.php
2021-03-28 14:30:31 +03:00

14 lines
309 B
PHP

<?php namespace Visiosoft\ProfileModule\Profile;
use Anomaly\Streams\Platform\Entry\EntryPresenter;
class ProfilePresenter extends EntryPresenter
{
public function getNotification($type) {
$value = $this->object->$type;
if ($value == 1) {
return "checked";
}
}
}