<?php

class ReembolsoModule extends CWebModule
{
    public function init()
    {
        $this->setImport(array(
            'reembolso.models.*',
            'reembolso.components.*',
        ));
    }

    public function beforeControllerAction($controller, $action)
    {
        if (! parent::beforeControllerAction($controller, $action)) {
            return false;
        }

        return true;
    }
}
