wemall7.0 開源系統,基於thinkphp5開發,支援composer,優化核心,減少依賴,基於全新的架構思想和命名空間。
ThinkPHP5的運作環境需求PHP5.4以上。
功能列表
首頁=》系統首頁
設定=》網站設置,簡訊配置,郵件配置
微信=》微信配置,微信選單,自訂回复,模版訊息,多客服設置,微信印表機
內容=》文章分類,文章列表
模版=》模版設置,郵件模版,簡訊模版
使用者=》管理員使用者群組,管理員列表,使用者列表,會員列表
外掛=》外掛程式管理,外掛程式商店
幫助=》使用幫助
……
composer require qingyuexi/think-addons
'addons'=>[
// 可以定义多个钩子
'testhook'=>'putongdemodemo' // 键为钩子名称,用于在业务中自定义钩子处理,值为实现该钩子的插件,
// 多个插件可以用数组也可以用逗号分割
]
或在applicationextra目錄中新建addons.php
,內容為:
<?php
return [
// 可以定义多个钩子
'testhook'=>'putongdemodemo' // 键为钩子名称,用于在业务中自定义钩子处理,值为实现该钩子的插件,
// 多个插件可以用数组也可以用逗号分割
]
創建的插件可以在view視圖中使用,也可以在php業務中使用
安裝完成後存取系統時會在專案根目錄產生名為addons
的目錄,在該目錄中建立所需的插件。
下面寫一個例子:
在addons目錄中建立putong目錄
在putong目錄中建立config.php類別文件,插件設定檔可以省略。
<?php
return [
'name' => 'putong',
'title' => 'putong',
'description' => 'putong类插件',
'status' => 1,
'author' => '清月曦'
];
在addons目錄下的putong目錄下建立demo目錄
在test目錄中建立Demo.php類別檔案。注意:類別文件首字母需大寫
<?php
namespace addonsputongdemo; // 注意命名空间规范
use thinkAddons;
/**
* 插件测试
* @author byron sampson
*/
class Demo extends Addons // 需继承thinkaddonsAddons类
{
// 该插件的基础信息
public $info = [
'name' => 'test', // 插件标识
'title' => '插件测试', // 插件名称
'description' => 'thinkph5插件测试', // 插件简介
'status' => 0, // 状态
'author' => 'byron sampson',
'version' => '0.1'
];
/**
* 插件安装方法
* @return bool
*/
public function install()
{
return true;
}
/**
* 插件卸载方法
* @return bool
*/
public function uninstall()
{
return true;
}
/**
* 实现的testhook钩子方法
* @return mixed
*/
public function testhook($param)
{
// 调用钩子时候的参数信息
print_r($param);
// 当前插件的配置信息,配置信息存在当前目录的config.php文件中,见下方
print_r($this->getConfig());
// 可以返回模板,模板文件默认读取的为插件目录中的文件。模板名不能为空!
return $this->fetch('info');
}
}
在test目錄中建立config.php類別文件,外掛程式設定檔可以省略。
<?php
return [
'name' => 'demo',
'title' => 'demo',
'description' => 'demo插件',
'status' => 1,
'url' => true,
'author' => '清月曦',
'version' => '0.1'
];
在demo目錄中建立info.html模板文件,鉤子在使用fetch方法時對應的模板文件。
<h1>hello tpl</h1>
如果插件中需要有链接或提交数据的业务,可以在插件中创建controller业务文件,
要访问插件中的controller时使用addon_url生成url链接。
如下:
<a href="{:addon_url('putong://demo/admin/index')}">link demo</a>
格式为:
demo为插件名,admin为controller中的类名,index为controller中的方法
在test目錄中建立controller目錄,在controller目錄中建立Action.php檔案controller類別的用法與tp5中的controller一致
<?php
namespace addonsputongdemocontroller;
class Admin
{
public function index()
{
echo 'hello link';
}
}
如果需要使用view模板則需要繼承
thinkaddonsController
類別模板檔案所在位置為插件目錄的view中,規則與模組中的view規則一致
<?php
namespace addonsputongdemocontroller;
use thinkaddonsController;
class Admin extends Controller
{
public function index()
{
return $this->fetch();
}
}
創建好插件後就可以在正常業務中使用該插件中的鉤子了使用鉤子的時候第二個參數可以省略
<div>{:hook('testhook', ['id'=>1])}</div>
只要是thinkphp5正常流程中的任意位置都可以使用
hook('testhook', ['id'=>1])
tp5
- addons
-- putong
--- demo
---- controller
----- Admin.php
---- view
---- action
----- link.html
--- config.php
--- info.html
--- Demo.php
- application
- thinkphp
- extend
- vendor
- public
wemall7開源版遵循Apache2開源協定發布,並提供免費使用。本項目所包含的第三方原始碼和二進位檔案之版權資訊另行標註。版權所有Copyright © 2016-2017 by wemallshop.com (http://www.wemallshop.com) All rights reserved。