1

テンプレートファイルがあり、メインページ用のcu3erスライダーが含まれているため、cakephpプロジェクトのテーマを作成しています。このファイルを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);
4

1 に答える 1

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';
于 2012-10-12T05:29:44.077 に答える