Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Is there anyway to set a global image setting, route, or anything so that all images reference a CDN url without having to update every image? So when I use the HTML helper like this:

$this->Html->img('some_image.jpg');

Instead of referencing /img/some_image.jpg, it will point to:

http://cdn.example.com/img/some_image.jpg

UPDATE

Final solution was simple. Thanks @burzum for the push in the proper direction. Here is what I did.

In AppController I added:

public $helpers = array(
    'Html' => array(
        'className' => 'MyHtml'
    )
);

Then I created the override helper:

<?php
// app/View/Helper/MyHtmlHelper.php
App::uses('HtmlHelper', 'View/Helper');
class MyHtmlHelper extends HtmlHelper {
    // Add your code to override the core HtmlHelper
    public function image($path, $options = array()) {
        $path = 'http://cdn.localhost/'.$path;
        return parent::image($path, $options);
    }
}
share|improve this question

1 Answer

up vote 2 down vote accepted

Simply overwrite the image() method in a customized helper extending the HtmlHelper and use the 2.1 aliasing feature for helpers:

public $helpers = array(
    'Html' => array(
        'className' => 'MyHtml'
    )
);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.