!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/ecom1.picotech.app/public_html_ecom1/Modules/GeoLocale/Entities/   drwxr-xr-x
Free 26.04 GB of 117.98 GB (22.07%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     City.php (3.51 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

namespace Modules\GeoLocale\Entities;

use 
Illuminate\Database\Eloquent\Model;
use 
Modules\GeoLocale\Traits\GeoLocaleTrait;
use 
DateTimeDateTimeZone;

/**
 * City.
 */
class City extends Model
{
    use 
GeoLocaleTrait;

    
/**
     * The database table doesn't use 'created_at' and 'updated_at' so we disable it from Inserts/Updates.
     *
     * @var bool
     */
    
public $timestamps false;

    
/**
     * The database table used by the model.
     *
     * @var string
     */
    
protected $table 'geolocale_cities';

    
/**
     * append names.
     *
     * @var array
     */
    
protected $appends = ['local_name''local_full_name''local_alias''local_abbr'];

    
/**
     * Relation with Country model
     * 
     * @return \Illuminate\Database\Eloquent\Relations\BelongsTo
     */
    
public function country()
    {
        return 
$this->belongsTo(Country::class);
    }

    
/**
     * Relation with Division model
     * 
     * @return \Illuminate\Database\Eloquent\Relations\BelongsTo
     */
    
public function division()
    {
        return 
$this->belongsTo(Division::class);
    }

    
/**
     * Children
     * 
     * @return null
     */
    
public function children()
    {
        return 
null;
    }

    
/**
     * Parent
     * 
     * @return Collection 
     */
    
public function parent()
    {
        if (
$this->division_id === null) {
            return 
$this->country;
        }
        return 
$this->division;
    }

    
/**
     * Relation with CityLocale model
     * 
     * @return \Illuminate\Database\Eloquent\Relations\HasMany
     */
    
public function locales()
    {
        return 
$this->hasMany(CityLocale::class);
    }

    
/**
     * Get timezone abbreviation.
     *
     * @param string $iana_timezone
     *
     * @return string
     */
    
public static function timezoneAbbrev($iana_timezone)
    {
        if (empty(
$iana_timezone)) return '';
        if (!
in_array($iana_timezonetimezone_identifiers_list(),true)) return '';

        
$dateTime = new DateTime();
        
$dateTime->setTimeZone(new DateTimeZone($iana_timezone));
        return 
$dateTime->format('T');
    }

    
/**
     * Get GMT timezone offset.
     *
     * @param string $iana_timezone
     *
     * @return string
     */
    
public static function timezoneOffset($iana_timezone)
    {
        if (empty(
$iana_timezone)) return '';
        if (!
in_array($iana_timezonetimezone_identifiers_list(),true)) return '';

        
$zones timezone_identifiers_list();

        
$dateTimeZone = new DateTimeZone($iana_timezone);
        
$timeInCity = new DateTime('now'$dateTimeZone);
        
$offset $dateTimeZone->getOffset$timeInCity ) / 3600;
        return 
"GMT" . ($offset $offset "+".$offset);
    }

    
/**
     * Get City by name.
     *
     * @param string $name
     *
     * @return collection
     */
    
public static function getByName($name)
    {
        
$localed CityLocale::where('name'$name)->first();
        if (
is_null($localed)) {
            return 
$localed;
        }
        return 
$localed->city;
    }

    
/**
     * Search City by name.
     *
     * @param string $name
     *
     * @return collection
     */
    
public static function searchByName($name)
    {
        return 
CityLocale::where('name''like''%' $name '%')
            ->
get()->map(function ($item) {
                return 
$item->city;
            });
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0054 ]--