Home Backend Development PHP Tutorial PHP uses CI to implement URL permission control using hooks_PHP tutorial

PHP uses CI to implement URL permission control using hooks_PHP tutorial

Jul 13, 2016 pm 05:50 PM
2 background-color php rgb span style url accomplish control Permissions use use hook

CI's hook function allows you to change or increase the core running functions of the system without modifying the core system files.


For example, you can run a specific script just before or just after the controller loads, or trigger your script at other times.

Look at the code:

 

Add hook statement in system/application/config/hooks.php:
[php]
       
$hook['post_controller_constructor'] = array(
'class' => 'Acl',
'function' => 'filter',
'filename' => 'acl.php',
'filepath' => 'hooks',
);

Make the hook system take effect in system/application/config/config.php
       
$config['enable_hooks'] = TRUE;

Then create a new acl.php permission system configuration file in , of course you can also put it in the database.

       
//Visitor permission mapping
$config['acl']['visitor'] = array(
​ '' => array('index'),//Homepage www.2cto.com
'music' => array('index', 'list'),
'user' => array('index', 'login', 'register')
);
//Administrator
$config['acl']['admin'] = array(

);

//-------------Configure prompt information and jump url for insufficient permissions------------------//
$config['acl_info']['visitor'] = array(
'info' => 'Login required to continue',
'return_url' => 'user/login'
);

$config['acl_info']['more_role'] = array(
'info' => 'Requires higher privileges to continue',
'return_url' => 'user/up'
);

/* End of file acl.php */
/* Location: ./application/config/acl.php */

Add acl.php logical processing file in the system/application/hooks directory

       
class Acl
{
Private $url_model;//Module accessed, such as: music
Private $url_method;//The accessed method, such as: create
Private $url_param;//The parameter in the url may be 1 or id=1&name=test
private $CI;

Function Acl()
{
           $this->CI = & get_instance();
            $this->CI->load->library('session');

         $url = $_SERVER['PHP_SELF'];
          $arr = explode('/', $url);
          $arr = array_slice($arr, array_search('index.php', $arr) + 1, count($arr));
            $this->url_model = isset($arr[0]) ? $arr[0] : '';
            $this->url_method = isset($arr[1]) ? $arr[1] : 'index';
            $this->url_param = isset($arr[2]) ? $arr[2] : '';
}  
  
    function filter() 
    { 
        $user = $this->CI->session->userdata('user'); 
        if (emptyempty($user)) {//游客visitor 
            $role_name = 'visitor'; 
        } else { 
            $role_name = $user->role; 
        } 
  
        $this->CI->load->config('acl'); 
        $acl = $this->CI->config->item('acl'); 
        $role = $acl[$role_name]; 
        $acl_info = $this->CI->config->item('acl_info'); 
  
        if (array_key_exists($this->url_model, $role) && in_array($this->url_method, $role[$this->url_model])) { 
            ; 
        } else {//无权限,给出提示,跳转url 
            $this->CI->session->set_flashdata('info', $acl_info[$role_name]['info']); 
            redirect($acl_info[$role_name]['return_url']); 
        } 
    } 


摘自 I am heweilun

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/478303.htmlTechArticlespan style=background-color: rgb(247, 252, 255); font-family: Verdana, Arial, Helvetica, sans-serif; /spanpspan style=font-family: Verdana, Arial, Helvetica, sans-serif; font-size:...
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 Article

Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

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 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

How To Set Up Visual Studio Code (VS Code) for PHP Development How To Set Up Visual Studio Code (VS Code) for PHP Development Dec 20, 2024 am 11:31 AM

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c

How do you parse and process HTML/XML in PHP? How do you parse and process HTML/XML in PHP? Feb 07, 2025 am 11:57 AM

This tutorial demonstrates how to efficiently process XML documents using PHP. XML (eXtensible Markup Language) is a versatile text-based markup language designed for both human readability and machine parsing. It's commonly used for data storage an

gateio exchange official website entrance Sesame door gate official website entrance gateio exchange official website entrance Sesame door gate official website entrance Feb 21, 2025 pm 02:48 PM

As a leader in cryptocurrency trading, Gate.io offers a wide range of trading pairs, derivatives and financial services. The Chinese version of the website Sesame Open Door Gate is convenient for Chinese users and provides the same functions as Gate.io, but it is more suitable for Chinese people's habits. Users can access the Gate.io exchange or Sesame Open Gate official website through the designated website. Please be sure to keep your account information carefully and only visit the official website to ensure safety.

PHP Program to Count Vowels in a String PHP Program to Count Vowels in a String Feb 07, 2025 pm 12:12 PM

A string is a sequence of characters, including letters, numbers, and symbols. This tutorial will learn how to calculate the number of vowels in a given string in PHP using different methods. The vowels in English are a, e, i, o, u, and they can be uppercase or lowercase. What is a vowel? Vowels are alphabetic characters that represent a specific pronunciation. There are five vowels in English, including uppercase and lowercase: a, e, i, o, u Example 1 Input: String = "Tutorialspoint" Output: 6 explain The vowels in the string "Tutorialspoint" are u, o, i, a, o, i. There are 6 yuan in total

gate official website login portal gate.io login web version gate official website login portal gate.io login web version Feb 18, 2025 pm 03:00 PM

As a digital asset exchange, Gate.io provides users with a convenient login process. To log in to Gate.io, visit its official website and click the "Login" button in the upper right corner. Then enter your email address or mobile phone number and password and perform two-factor authentication (2FA) verification as needed. After successfully logging in, you can manage your account balance, orders, and transaction activity through the Gate.io dashboard. To ensure account security, it is recommended to use a strong password and change it regularly, while enabling 2FA and taking care of phishing attempts.

Top 10 trading app virtual currency platforms rankings: Top 10 trading platforms in 2025 Top 10 trading app virtual currency platforms rankings: Top 10 trading platforms in 2025 Feb 17, 2025 pm 04:00 PM

As of 2025, the world's leading virtual currency platforms include Coinbase, Binance, FTX, Kraken, Huobi, OKX, Gemini, KuCoin, Bybit and Bittrex. Coinbase has a wide range of cryptocurrency options and a user-friendly interface, while Binance offers a wide range of trading pairs and derivatives. FTX focuses on trading instruments and leverage options, while Kraken is known for its security, low fees and asset choices.

List of the latest top ten professional cryptocurrency trading platforms in 2025 List of the latest top ten professional cryptocurrency trading platforms in 2025 Feb 12, 2025 pm 12:21 PM

This article selects and ranks the top ten professional cryptocurrency trading platforms for market outlook in 2025. Binance, Huobi and Ouyi are in the top three respectively, standing out with their trading volume, liquidity, security and the diversified trading types they offer. KuCoin and Bybit also performed well, attracting users with support for small currencies and low transaction fees respectively.

See all articles