PHP Classes

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

Recommend this page to a friend!
  Classes of Ramesh Narayan Jangid(Sharma)   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
Refactoring
Date: 6 days ago
Size: 1,044 bytes
 

Contents

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

use
Microservices\App\Constants;
use
Microservices\App\DatabaseDataTypes;
use
Microservices\App\Env;

return [
   
'all' => [
       
'countQuery' => "SELECT count(1) as `count` FROM `{$Env::$clients}` WHERE __WHERE__",
       
'query' => "SELECT * FROM `{$Env::$clients}` WHERE __WHERE__ ORDER BY client_id ASC",
       
'__WHERE__' => [
           
'is_approved' => ['custom', 'Yes'],
           
'is_disabled' => ['custom', 'No'],
           
'is_deleted' => ['custom', 'No']
            ],
       
'mode' => 'multipleRowFormat'
   
],
   
'single' => [
       
'query' => "SELECT * FROM `{$Env::$clients}` WHERE __WHERE__",
       
'__WHERE__' => [
           
'is_approved' => ['custom', 'Yes'],
           
'is_disabled' => ['custom', 'No'],
           
'is_deleted' => ['custom', 'No'],
           
'client_id' => ['uriParams','client_id']
        ],
       
'mode' => 'singleRowFormat'
   
],
][isset(
$this->c->httpRequest->session['uriParams']['client_id'])?'single':'all'];