Extending core classes and use them

Hi all,

I would like to do this like discribed in documentation




class TextAlign extends CEnumerable

{

    const Left='Left';

    const Right='Right';

}



But I wondering where putting this derived class in order to write just :




TextAlign::Left



for using it

Thanks

In document of Yii write… "Then, one can use the enumerable values such as TextAlign::Left and TextAlign::Right."

But I think it can’t