This extension allows you to attach CSS styles anywhere you like. Just cast method to append styles global. Then script join it and register CSS file on page.
Requirements ¶
Yii 1.1 or above
Usage ¶
Include cssAttacher.php in your library.
$styles = array('#one'=>array('color'=>'#c00'));
cssAttacher::attach($styles);
... some code ...
return "<div id='one'>Hello</div>";
Cast method at bottom in your layout
</html>
<?php cssAttacher::renderStyles(); ?>
If you have any questions, please ask in the forum instead.
Signup or Login in order to comment.