He creado 2 controladores en mi aplicación Yii: FirstController.php y SecondController.php en la ruta predeterminada del controlador.Función de llamada en otro controlador en Yii
FirstController.php:
<?php
class FirstController extends Controller {
public static function returnFunc() { return 'OK'; }
}
SecondController.php:
<?php
class SecondController extends Controller {
public function exampleFunc() {
$var = First::returnFunc();
}
}
Cuando intento ejecutar exampleFunc()
en SecondController, Yu tirar el error:
YiiBase::include(FirstController.php) [<a href='function.YiiBase-include'>function.YiiBase-include</a>]: failed to open stream: No such file or directory
Calling FirstController::returnFunc()
de manera similar no funciona
Soy newbee en OOP y Yii framework. ¿Cuál es el problema?
http://www.yiiframework.com/forum/index.php/topic/6471-call-another-controllers-action/#entry200141 –