PHP Classes

File: Config/Queries/GlobalDB/GET/clients.php

Recommend this page to a friend!
  Classes of Ramesh Narayan Jangid   PHP Microservices Framework   Config/Queries/GlobalDB/GET/clients.php   Download  
File: Config/Queries/GlobalDB/GET/clients.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP Microservices Framework
Setup microservices apps with configuration arrays
Author: By
Last change: Refactoring
Date: 1 month ago
Size: 1,292 bytes
 

Contents

Class file image Download
<?php
namespace Microservices\Config\Queries\GlobalDB\GET;

use
Microservices\App\Constants;
use
Microservices\App\Env;
use
Microservices\App\HttpRequest;

return [
   
'all' => [
       
'countQuery' => "SELECT count(1) as `count` FROM `{$Env::$globalDB}`.`{$Env::$clients}` WHERE __WHERE__",
       
'query' => "SELECT * FROM `{$Env::$globalDB}`.`{$Env::$clients}` WHERE __WHERE__ ORDER BY client_id ASC",
       
'__WHERE__' => [
           
'is_approved' => ['custom', 'Yes'],
           
'is_disabled' => ['custom', 'No'],
           
'is_deleted' => ['custom', 'No']
            ],
       
'mode' => 'multipleRowFormat'//Multiple rows returned.
   
],
   
'single' => [
       
'query' => "SELECT * FROM `{$Env::$globalDB}`.`{$Env::$clients}` WHERE __WHERE__",
       
'__CONFIG__' => [// [{payload/uriParams}, key/index, {Constants::$REQUIRED}]
           
['uriParams', 'client_id', Constants::$REQUIRED],
        ],
       
'__WHERE__' => [
           
'is_approved' => ['custom', 'Yes'],
           
'is_disabled' => ['custom', 'No'],
           
'is_deleted' => ['custom', 'No'],
           
'client_id' => ['uriParams','client_id']
        ],
       
'mode' => 'singleRowFormat'//Single row returned.
   
],
][isset(
HttpRequest::$input['uriParams']['client_id'])?'single':'all'];