<?php $aws_plugin = array( 'title' => 'hello world for Anwsion', // 插件标题 'version' => 20120716, // 插件版本 'description' => 'Anwsion 所见所得编辑插件', // 插件描述 'requirements' => '20120706', // 最低 Build 要求 'contents' => array( 'setups' => array( // 格式化数据 //array( // 'app' => 'account', // 'controller' => 'main', // 'include' => 'mksay.php', // 引入代码文件位置 //), // 格式化数据 //array( // 'app' => 'question', // 'controller' => 'ajax', // 'include' => 'format_data.php', // 引入代码文件位置 //), ), 'actions' => array( array( 'app' => 'home', 'controller' => 'main', 'action' => 'explore', //'template' => 'hello.tpl.htm', 'include' => 'hello.php', // 引入代码文件位置 ), ), ), );文件:hello.php
<?php //插件目录 $plugin_base = get_setting('base_url') . '/plugins/hello/'; //加载基本元素 TPL::import_js($plugin_base . 'hello.js');文件:hello.js
alert('hello');
AI智能回复搜索中,请稍后...