Home CMS Tutorial PHPCMS Does phpcms have a controller?

Does phpcms have a controller?

Feb 17, 2023 am 10:37 AM
cms cms system phpcms

phpcms has controllers. The phpcms controller is the class file of the module, which is stored under "phpcms/modules". Each module has an independent naming method. The class name is in the format of "filename.php naming"; the controller class inherits the system's function library by default. Can be used directly. The class name of the controller class and the controller file name must be the same.

Does phpcms have a controller?

The operating environment of this tutorial: windows7 system, phpcms v9 version, DELL G3 computer

phpcms has a controller.

What is a controller in phpcms

phpcms controller is the class file of the module, which is stored under phpcms/modules. Each module has an independent naming method. The class name is in the file name.php naming format. The controller class inherits the system's function library by default and can be used directly. The class name of the controller class and the controller file name must be the same.

Add a new controller

Next we will create a new test folder under phpcms/modules, and create a new one named mytest.php in the test folder file, add the following code in the file:

defined('IN_PHPCMS') or exit('No permission resources.');class mytest {    function __construct() {
    }    public function init() {
        $myvar = '这是默认加载!';        echo $myvar;
    }    public function mylist() {
        $myvar = '这是自定义list!';        echo $myvar;
    }
}
Copy after login

Then we can enter the following access method in the browser

http://domain name/index.php?m=test&c= mytest

The init() method is loaded by default

http://domain name/index.php?m=test&c=mytest&a=mylist

Loading is the mylist method

Template introduction

Front-end template

Website front-end template location Under the phpcms/templates/default/ module

We add the loading template method in the init() method of the controller mytest.php file

include template('test', 'mytest', 'default');
Copy after login

Create a new one under the phpcms/templates/default/ directory The test folder and mytest.html file are enough.

Backend template

The background template file is in the phpcms/modules/module name/templates directory

Controller with permissions

Backend controller

Create a new mytest_admin.php file under phpcms/modules/admin/. The file code is as follows:

defined('IN_PHPCMS') or exit('No permission resources.');
pc_base::load_app_class('admin','admin',0);
class mytest_admin extends admin{
    function __construct()
    {
    }
    public function index(){
        echo "后台控制器";
    }
 
}
Copy after login

Access address: http://domain name /index.php?m=admin&c=mytest_admin&a=index

phpcms custom model

Introduce the model on the class

pc_base::load_sys_class('model', '', 0);
Copy after login

Then the class extends inheritance model

Add the following code in the __construct method:

$this->db_config = pc_base::load_config('database');
$this->db_setting = 'default';
parent::__construct();
Copy after login

Query statement

function init(){
    $sql = 'select * from v9_news ';
    $data = $this->get_array_by_sql($sql);
    var_dump($data);
}
public function sql_query($sql) {
    if (!empty($this->db_tablepre)) $sql = str_replace('phpcms_', $this->db_tablepre, $sql);
    return parent::query($sql);
}
 
public function fetch_next() {
    return $this->db->fetch_next();
}
//通过SQL语句查询一条结果
public function get_one_by_sql($sql){
    $this->sql_query($sql);
    $res = $this->fetch_next();
    $this->free_result();
    return $res;
}
//通过sql语句查询数组
public function get_array_by_sql($sql){
    $this->sql_query($sql);
    $res = $this->fetch_array();
    $this->free_result();
    return $res;
}
 
//释放数据库结果资源,调用底层完成
public function free_result() {
    $this->db->free_result();
}
Copy after login

PHP Chinese website, a large number of free PHPCMS tutorials , welcome to online learning!

The above is the detailed content of Does phpcms have a controller?. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PHP framework and CMS integration: unlimited possibilities for technology integration PHP framework and CMS integration: unlimited possibilities for technology integration Jun 01, 2024 pm 05:16 PM

The benefits brought by the integration of PHP framework and CMS are: 1. Improve development efficiency; 2. Enhance security; 3. Simplify content management; 4. Flexibility. In a practical case, the Laravel framework was integrated with WordPressCMS to create a blog website with customized functions. The integration steps include creating a Laravel application, installing WordPress, configuring WordPress, creating a controller, defining routing, obtaining WordPress data, and in the Laravel view Display Data.

What framework is phpcms? What framework is phpcms? Apr 20, 2024 pm 10:51 PM

PHP CMS is a PHP-based open source content management system for managing website content. Its features include ease of use, powerful functionality, scalability, high security, and free open source. It can save time, improve website quality, enhance collaboration and reduce development costs, and is widely used in various websites such as news websites, blogs, corporate websites, e-commerce websites and community forums.

WeChat Login Integration Guide: PHPCMS Practical Combat WeChat Login Integration Guide: PHPCMS Practical Combat Mar 29, 2024 am 09:18 AM

Title: WeChat Login Integration Guide: PHPCMS in Action In today’s Internet era, social login has become one of the essential functions of a website. As one of the most popular social platforms in China, WeChat’s login function is also used by more and more websites. This article will introduce how to integrate the WeChat login function in the PHPCMS website and provide specific code examples. Step 1: Register a WeChat Open Platform Account First, we need to register a developer account on the WeChat Open Platform and apply for the corresponding development permissions. Log in [WeChat open platform]

Practical tips for integrating PHPcms with other systems Practical tips for integrating PHPcms with other systems Mar 15, 2024 am 08:18 AM

Practical tips for integrating PHPcms with other systems With the continuous development of Internet technology, the field of website development has become more diverse and complex. In actual projects, we often face situations where different systems need to be integrated, which requires us to have certain skills and experience to solve these problems. This article will introduce some practical tips and specific code examples for the integration of the PHPcms system with other systems to help developers better cope with challenges. 1. Basic Principles of Integration When performing system integration, it is first necessary to

What does phpcms mean? What does phpcms mean? Apr 20, 2024 pm 10:39 PM

PHPCMS is a free and open source content management system (CMS) that features: open source, modularity, flexibility, user-friendliness and community support. It can be used to create various types of websites, including corporate websites, e-commerce websites, blogs, and community forums. Technical requirements include: PHP 5.6 or higher, MySQL, MariaDB or PostgreSQL database, and Apache or Nginx web server.

PHPcms column cache storage path revealed PHPcms column cache storage path revealed Mar 14, 2024 pm 03:18 PM

PHPcms is a powerful content management system that is widely used in website development. Column caching is an important function in PHPcms, which can improve website access speed and reduce server pressure. This article will reveal the storage path of the PHPcms column cache and provide specific code examples. 1. What is column caching? Column caching refers to generating static files from the column content in the website and storing them in the specified path. When the user accesses the column, the static file is directly read instead of dynamically generating the page every time. this

Build a PHP cloud transcoding CMS system to implement video transcoding services Build a PHP cloud transcoding CMS system to implement video transcoding services Mar 16, 2024 am 08:30 AM

Build a PHP cloud transcoding CMS system to implement video transcoding services. With the rapid development of online videos, video transcoding services have become more and more important. In order to meet users' needs for video transcoding, building a PHP cloud transcoding CMS system is a good choice. In this article, we will introduce how to build a simple PHP cloud transcoding CMS system and provide specific code examples. First, we need to prepare a basic PHP development environment. Make sure you have PHP and MySQL installed and have a web server such as Apa

Impact and response to when PHPcms will stop maintenance Impact and response to when PHPcms will stop maintenance Mar 14, 2024 am 11:12 AM

The impact and response of when PHPcms will stop maintenance. With the continuous development of Internet technology, website construction has become an essential tool for many companies and individuals. In website construction, the content management system (CMS) plays an important role. As a commonly used CMS tool, PHPcms was once very popular. However, as time goes by, the update and maintenance of the PHPcms version gradually decreases or even stops maintenance, which brings a series of impacts to users and developers. This article will explore the impact of PHPcms out of maintenance and provide a

See all articles