PHP Classes

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

Recommend this page to a friend!
  Classes of Ramesh Narayan Jangid(Sharma)   PHP Microservices Framework   Config/Queries/GlobalDB/PATCH/clients.php   Download  
File: Config/Queries/GlobalDB/PATCH/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: 7 days ago
Size: 970 bytes
 

Contents

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

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

return [
   
'query' => "UPDATE `{$Env::$clients}` SET __SET__ WHERE __WHERE__",
   
'__SET__' => [
       
'name' => ['payload', 'name'],
       
'updated_by' => ['userDetails', 'user_id'],
       
'updated_on' => ['custom', date('Y-m-d H:i:s')]
    ],
   
'__WHERE__' => [
       
'is_approved' => ['custom', 'Yes'],
       
'is_disabled' => ['custom', 'No'],
       
'is_deleted' => ['custom', 'No'],
       
'client_id' => ['uriParams', 'client_id', DatabaseDataTypes::$INT]
    ],
   
'validate' => [
        [
           
'fn' => 'primaryKeyExist',
           
'fnArgs' => [
               
'table' => ['custom', Env::$clients],
               
'primary' => ['custom', 'client_id'],
               
'id' => ['payload', 'client_id', DatabaseDataTypes::$INT]
            ],
           
'errorMessage' => 'Invalid Client Id'
       
],
    ]
];