You are viewing revision #7 of this wiki article.
This version may not be up to date with the latest version.
You may want to view the differences to the latest version or see the changes made in this revision.
Below I have extended the CHtml helper to have methods that help me locate directories of my assets dynamically. Such assets may include CSS, JavaScript and images.
<?php
class Html extends CHtml
{
/**
* Makes the given URL relative to the /image directory
*/
public static function imageUrl($url) {
return Yii::app()->baseUrl.'/images/'.$url;
}
/**
* Makes the given URL relative to the /css directory
*/
public static function cssUrl($url) {
return Yii::app()->baseUrl.'/css/'.$url;
}
/**
* Makes the given URL relative to the /js directory
*/
public static function jsUrl($url) {
return Yii::app()->baseUrl.'/js/'.$url;
}
}
Methods like the above can be useful for including assets on the client-side. You can use it like in the following:
<?php
echo CHtml::cssFile(Html::cssUrl('reset.css'));
echo CHtml::cssFile(Html::cssUrl('typography.css'));
echo CHtml::cssFile(Html::cssUrl('main.css'));
echo CHtml::cssFile(Html::cssUrl('form.css'));
?>
This is much cleaner and shorter then prefixing the URLs manually. Also, if you ever wish to move the directory of some sort of asset, all you need to do is modify the corresponding method in Html.
You may note that in the above example, Html
does not have to extend CHtml
. Neither do you have to name the class Html
. It's all personal preference.
Personal preference
In the end, there are as many different ways to do this as there are developers - and these extensions are so small and easy to use, it's really a matter of personal preference.
I say, do whatever makes you comfortable :-)
Some optimization...
Hi!
What I think is that there's no need to double call things like that
Html::cssFile(Html::cssUrl('reset.css'));
It's obvios, that is you call cssUrl, you also call cssFile. So it would be much more readable if you also provide public function like
Html::cssFileUrl('reset.css');
Or, even better, for several css files being loaded in sequence, there should be something like that:
Html::cssFileUrl(array('reset.css','typography.css','main.css','form.css'));
The same approach we can use for eirther image and js things.
If you have any questions, please ask in the forum instead.
Signup or Login in order to comment.