PHP Classes

File: fwphp/01mater/user_management_api.php

Recommend this page to a friend!
  Classes of Slavko Srakocic   B12 PHP FW   fwphp/01mater/user_management_api.php   Download  
File: fwphp/01mater/user_management_api.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: B12 PHP FW
Manage database records with a PDO CRUD interface
Author: By
Last change: Update of fwphp/01mater/user_management_api.php
Date: 1 year ago
Size: 842 bytes
 

Contents

Class file image Download
<?php

/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 * ATTENTION!
 * If you see this message in your browser (Internet Explorer, Mozilla Firefox, Google Chrome, etc.)
 * this means that PHP is not properly installed on your web server. Please refer to the PHP manual
 * for more details: http://php.net/manual/install.php
 *
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 */

include_once dirname(__FILE__) . '/components/startup.php';
include_once
dirname(__FILE__) . '/' . 'authorization.php';
include_once
dirname(__FILE__) . '/' . 'components/security/user_management_request_handler.php';

SetUpUserAuthorization();

UserManagementRequestHandler::HandleRequest(
   
$_GET,
   
CreateGrantManager(),
   
CreateTableBasedUserManager()
);