PHP Classes

How Can a PHP HTTP Request Library Perform Multiple Actions using the Add Layer Class: Add HTTP request handlers to run multiple actions

Recommend this page to a friend!

  Author Author  
Picture of Ali YILMAZ
Name: Ali YILMAZ <contact>
Classes: 10 packages by
Country: Turkey Turkey
Innovation award
Innovation award
Nominee: 6x


  Detailed description   Download Download .zip .tar.gz  
This package can add HTTP request handlers to run multiple actions.

It can take a file with a class that will be added to handle an HTTP request and performs valuable action for the current PHP application.

The package can add multiple HTTP request handler classes to form several layers.

This package can call all the layers to execute all the actions to process the current HTTP request.

Details

What is addLayer ?

It serves to add the specified layers to the place where they are run. It takes two parameters, and both can be specified as string and array type. It is also possible to specify the layers you want to run first as the second parameter.

One or more methods can be defined for each layer. Layers have the ability to communicate with each other. They can also use $conf or self::$conf sent to the __construct method.

Using this package you can use files, classes or methods and if you want you can call external function files and meet your various needs with all these capabilities.

Out-of-class use:

code:

require_once('Mind.php');
$m = new Mind();
$m::aliyilmaz('addLayer')->addLayer('app/views/index');
// $m::aliyilmaz('addLayer')->addLayer('app/views/index', 'app/model/index');
// $m::aliyilmaz('addLayer')->addLayer('app/controller/user:delete@message');
// $m::aliyilmaz('addLayer')->addLayer('app/views/admin', 'app/middleware/auth:admin');
// $m::aliyilmaz('addLayer')->addLayer([
//     'app/views/index:header', 
//     'app/views/index:index'
//     'app/views/index:footer'
//     ],
//     [
//     'app/variables/index'
//     ]
// );

When using it in the class:

code:

self::aliyilmaz('addLayer')->addLayer('app/views/index');
// self::aliyilmaz('addLayer')->addLayer('app/views/index', 'app/model/index');
// self::aliyilmaz('addLayer')->addLayer('app/controller/user:delete@message');
// self::aliyilmaz('addLayer')->addLayer('app/views/admin', 'app/middleware/auth:admin');
// self::aliyilmaz('addLayer')->addLayer([
//     'app/views/index:header', 
//     'app/views/index:index'
//     'app/views/index:footer'
//     ],
//     [
//     'app/variables/index'
//     ]
// );

output:

The index layer with the manually created model is added.
// First, the method that deletes the user is executed. Then the message method is executed.
// As a result of the use of the interface layer and the middleware layer together, only the page viewed by the admin.
// Before the header, index and footer layers are loaded, the layer where the variables to be used in these parts are defined is loaded.

Dependencies

  1. policyMaker 1.0.0

License

Instructions and files in this directory are shared under the GPL3 license.


  Classes of Ali YILMAZ  >  How Can a PHP HTTP Request Library Perform Multiple Actions using the Add Layer Class  >  Download Download .zip .tar.gz  >  Support forum Support forum  >  Blog Blog  >  RSS 1.0 feed RSS 2.0 feed Latest changes  
Name: How Can a PHP HTTP Request Library Perform Multiple Actions using the Add Layer Class
Base name: addlayer
Description: Add HTTP request handlers to run multiple actions
Version: -
PHP version: 5
License: GNU General Public License (GPL)
 
  Groups   Applications   Files Files  

  Groups  
Group folder image HTTP HTTP protocol clients, headers and cookies View top rated classes
Group folder image PHP 5 Classes using PHP 5 specific features View top rated classes


  Innovation Award  
PHP Programming Innovation award nominee
January 2022
Nominee
Vote
Some applications have Web pages that need to perform multiple types of actions with the exact scripts that handle the requests to access those Web pages.

This package can register multiple handler classes that are loaded to perform various actions during the execution of the PHP script that handles the current HTTP request.

Manuel Lemos

  Applications that use this package  
No pages of applications that use this class were specified.

Add link image If you know an application of this package, send a message to the author to add a link here.

  Files folder image Files  
File Role Description
Files folder imagesrc (1 file)
Accessible without login Plain text file LICENSE Lic. License text
Accessible without login Plain text file README.md Doc. Documentation

  Files folder image Files  /  src  
File Role Description
  Plain text file addLayer.php Class Class source

Download Download all files: addlayer.tar.gz addlayer.zip
NOTICE: if you are using a download manager program like 'GetRight', please Login before trying to download this archive.
For more information send a message to info at phpclasses dot org.