<?php

class PerizinanKontak extends Phalcon\Mvc\Model
{
    public function initialize()
    {
        $this->setSchema('jaga');
        $this->setSource('perizinan_kontak');
        $this->hasMany('id', 'PerizinanBkpmFoto', 'id_ptsp', ['alias' => 'pbf']);
    }

    public function toDetail()
    {
        $result = $this->toArray();
        if (empty($this->pbf)) {
            $result['bkpm_foto'] = null;
        } else {
            $result['bkpm_foto'] = $this->pbf;
        }

        return $result;
    }
}
