Skip to content
Snippets Groups Projects
Report.php 932 B
Newer Older
  • Learn to ignore specific revisions
  • Marcello Pivanti's avatar
    Marcello Pivanti committed
    <?php
    /**
     * Art-ER Attrattività, ricerca e territorio dell’Emilia-Romagna
     * OPEN 2.0
     *
     *
     * @package    amos-report
     * @category   Model
     * @author     Elite Division S.r.l.
     */
    
    
    
    waltermazza's avatar
    waltermazza committed
    namespace arter\amos\report\models;
    
    Marcello Pivanti's avatar
    Marcello Pivanti committed
    
    
    waltermazza's avatar
    waltermazza committed
    use arter\amos\notificationmanager\behaviors\NotifyBehavior;
    
    Marcello Pivanti's avatar
    Marcello Pivanti committed
    use yii\helpers\ArrayHelper;
    
    
    waltermazza's avatar
    waltermazza committed
    class Report extends \arter\amos\report\models\base\Report
    
    Marcello Pivanti's avatar
    Marcello Pivanti committed
    {
        /**
         * @see    \yii\db\BaseActiveRecord::init()    for more info.
         */
        public function init()
        {
            parent::init();
        }
    
        public function afterFind()
        {
            parent::afterFind();
        }
        /**
         * @see    \yii\base\Component::behaviors()    for more info.
         */
        public function behaviors()
        {
            return ArrayHelper::merge(parent::behaviors(), [
                'NotifyBehavior' => [
                    'class' => NotifyBehavior::className(),
                    'conditions' => [],
                ]
            ]);
        }
    
    }