<?php

class ConfiguracionModule extends CWebModule
{
    public function init()
    {
        $this->setImport([
            'pagos.models.*',
            'configuracion.models.*',
            'configuracion.components.*',
        ]);
    }

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

        return false;
    }
}
