Vra

I have a class with some static helper methods. I want to use these methods from the layout file. These methods contain some common code used by all layout files. Even putting the class in 'components' folder does not solve the problem.

Was dit nuttig?

Oplossing

You have to import the class before you can use it:

Yii::import('ext.components.YourClassName');
$class = new YourClassName;
Gelisensieer onder: CC-BY-SA met toeskrywing
Nie verbonde aan StackOverflow
scroll top