Use of the plug-in addon under TP (thinkphp)

Source: Internet
Author: User

Use of plug-in controller under TP

Thinkphp from the 3.2.2 Release to support the call of the plug-in controller, can be accessed through a more convenient URL address to the module of a plug-in-defined controller .

When a plugin controller variable is passed in the URL, it is automatically positioned to the action method in the plug-in controller.

For example, http://domain/app/admin/index/addon/Newhongbao
The actual access is under the domain name | | Addon under the root directory
Directory structure
/addons
 |__Newhongbao
|__controller
|__AdminController.class.php
Note: Index.php/home/index/index/addon/hongbao to access results

First step: import file Definition
    1. Define (' Addon_path ', ' Addons ');
Step two: Automatically load namespaces in/application/common/conf/conf.php configuration
' Autoload_namespace ' = Array (

),
Step Three: Operation addons/hongbao/controller/indexcontroller.class.php
<?php
namespace Addons\hongbao\controller;

Class Indexcontroller extends \think\controller{
Public Function index () {
Header ("Content-type:text/html;charset=utf8");
Echo ' This is a plugin system ';
}
}
Fourth Step: Test
Visit Http://localhost/tp/index.php/Home/index/index/addon/Hongbao
Output
This is a plug-in system

Use of the plug-in addon under TP (thinkphp)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.