update files

This commit is contained in:
Aliberk Sandıkçı 2023-12-21 16:33:06 +03:00
parent 5510948154
commit 0cad7bf2bc
Signed by: asandikci
GPG Key ID: 25C67A03B5666BC1
3 changed files with 57 additions and 0 deletions

View File

@ -0,0 +1,4 @@
<?php defined('BASEPATH') OR exit('No direct script access allowed');
// Turkish
$lang['system_installation'] = 'System Installation';
// End

View File

@ -0,0 +1,4 @@
<?php defined('BASEPATH') OR exit('No direct script access allowed');
// Turkish
$lang['system_installation'] = 'Sistem Yüklemesi';
// End

View File

@ -0,0 +1,49 @@
<?php
/**
* Copyleft
*
* @package iflrandevu
* @author asandikci
* @copyright Copyleft (c) 2023 - 2024
* @license https://opensource.org/licenses/GPL-3.0 GPL3.0 License
* @link https://iflpanel.com/about/randevu
* @since Version 1.4.3
* @filesource
*/
use function PHPSTORM_META\type;
defined('BASEPATH') or exit('No direct script access allowed');
/**
* IFLRandevu Branding Helper
*
* @package iflrandevu
* @subpackage Helpers
* @category Helpers
* @author asandikci
*/
// ------------------------------------------------------------------------
if (!function_exists('update_branding')) {
/**
* Branding
* Update Branding
*
* @param string type
* @return string
*/
function update_branding($type)
{
$GeneralServiceProvider = "İFL Randevu";
if ($type == "GeneralServiceProvider"){
return $GeneralServiceProvider;
}
}
}