Batch 1: base project files

This commit is contained in:
sas.fajri
2026-04-15 15:12:37 +07:00
parent 74c29eb250
commit e224e7f31a
57 changed files with 5766 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
<?php
class Mock_Libraries_Encryption extends CI_Encryption {
/**
* __get_params()
*
* Allows public calls to the otherwise protected _get_params().
*/
public function __get_params($params)
{
return $this->_get_params($params);
}
// --------------------------------------------------------------------
/**
* get_key()
*
* Allows checking for key changes.
*/
public function get_key()
{
return $this->_key;
}
// --------------------------------------------------------------------
/**
* __driver_get_handle()
*
* Allows checking for _mcrypt_get_handle(), _openssl_get_handle()
*/
public function __driver_get_handle($driver, $cipher, $mode)
{
return $this->{'_'.$driver.'_get_handle'}($cipher, $mode);
}
}