?¡ëPNG  IHDR ? f ??C1 sRGB ??¨¦ gAMA ¡À? ¨¹a pHYs ? ??o¡§d GIDATx^¨ª¨¹L¡±¡Âe¡ÂY?a?("Bh?_¨°???¡é¡ì?q5k?*:t0A-o??£¤]VkJ¡éM??f?¡À8\k2¨ªll¡ê1]q?¨´???T
Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/user1137782/www/china1.by/classwithtostring.php on line 86

Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 213

Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 214

Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 215

Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 216

Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 217

Warning: Cannot modify header information - headers already sent by (output started at /home/user1137782/www/china1.by/classwithtostring.php:6) in /home/user1137782/www/china1.by/classwithtostring.php on line 218
#autoload # Helper function for _path_files to handle the file-list style. # arguments: # name of parameter containing file matches # directory prefix # Sets array listfiles to the display strings and the array # listopts appropriately to be added to the compadd command line. local stat f elt what dir local -a stylevals integer ok listfiles=() listopts=() zstyle -a ":completion:${curcontext}:" file-list stylevals || return 1 # TODO: more flexible way of handling the following? e.g. use $compstate? case $WIDGETSTYLE in (*complete*) what=insert ;; (*) what=list ;; esac for elt in $stylevals; do case $elt in (*($what|all|true|1|yes)*=<->) # use long format if no more than the given number of matches (( ${(P)#1} <= ${elt##*=} )) && (( ok = 1 )) break ;; (*($what|all|true|1|yes)[^=]#) # always use long format (( ok = 1 )) break ;; esac done (( ok )) || return 1 zmodload -F zsh/stat b:zstat 2>/dev/null || return 1 dir=${2:+$2/} dir=${(Q)dir} for f in ${(PQ)1}; do if [[ ! -e "$dir$f" ]]; then listfiles+=("$dir$f") continue fi # Borrowed from Functions/Example/zls zstat -s -H stat -F "%b %e %H:%M" - "$dir$f" >/dev/null 2>&1 listfiles+=("$stat[mode] ${(l:3:)stat[nlink]} ${(r:8:)stat[uid]} \ ${(r:8:)stat[gid]} ${(l:8:)stat[size]} $stat[mtime] $f") done (( ${#listfiles} )) && listopts=(-d listfiles -l -o) return 0