openclassify/addons/default/visiosoft/profile-module/src/Profile/ProfilePresenter.php
2019-06-22 13:59:18 +03:00

16 lines
317 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";
}
}
}