如何在cakephp主题中添加swf文件?

时间:2012-10-12 05:26:36

标签: php cakephp flash

我正在为我的cakephp项目制作一个主题,因为我有一个模板文件,它包含一个主页的cu3er滑块所以我想我需要将此文件更改为php代码的人请帮帮我

swfobject.embedSWF("cu3er.swf", "cu3er-container", "960", "400", "9",         "expressInstall.swf", flashvars, attributes);

我试过这个但没有工作

swfobject.embedSWF("<? print $this->webroot . 'swf/cu3er.swf'?>, "cu3er-container", "960",    "400", "9", "<? print $this->webroot . 'swf/expressInstall.swf'?>", flashvars, attributes);

1 个答案:

答案 0 :(得分:0)

您可以使用App :: themePath($ theme)来获取主题的路径,然后从那里做任何你想做的事。

所以文件在:

app/views/themed/my_theme/webroot/swf/my_flash_file.swf

可以通过以下方式获取:

App::themePath('my_theme').'webroot'.DS.'swf'.DS.'my_flash_file.swf';