forked from mirrors/easyappointments
update files
This commit is contained in:
parent
5510948154
commit
0cad7bf2bc
3 changed files with 57 additions and 0 deletions
4
application/language/english/iflrandevu_lang.php
Normal file
4
application/language/english/iflrandevu_lang.php
Normal file
|
@ -0,0 +1,4 @@
|
|||
<?php defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
// Turkish
|
||||
$lang['system_installation'] = 'System Installation';
|
||||
// End
|
4
application/language/turkish/iflrandevu_lang.php
Normal file
4
application/language/turkish/iflrandevu_lang.php
Normal file
|
@ -0,0 +1,4 @@
|
|||
<?php defined('BASEPATH') OR exit('No direct script access allowed');
|
||||
// Turkish
|
||||
$lang['system_installation'] = 'Sistem Yüklemesi';
|
||||
// End
|
49
system/helpers/iflrandevu/branding_helper.php
Normal file
49
system/helpers/iflrandevu/branding_helper.php
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue