|
Server : LiteSpeed System : Linux srv104790275 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64 User : dewac4139 ( 1077) PHP Version : 8.0.30 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /usr/local/CyberCP/public/static/filemanager/js/ace/snippets/ |
Upload File : |
ace.define("ace/snippets/velocity",["require","exports","module"], function(require, exports, module) {
"use strict";
exports.snippetText = "# macro\n\
snippet #macro\n\
#macro ( ${1:macroName} ${2:\\$var1, [\\$var2, ...]} )\n\
${3:## macro code}\n\
#end\n\
# foreach\n\
snippet #foreach\n\
#foreach ( ${1:\\$item} in ${2:\\$collection} )\n\
${3:## foreach code}\n\
#end\n\
# if\n\
snippet #if\n\
#if ( ${1:true} )\n\
${0}\n\
#end\n\
# if ... else\n\
snippet #ife\n\
#if ( ${1:true} )\n\
${2}\n\
#else\n\
${0}\n\
#end\n\
#import\n\
snippet #import\n\
#import ( \"${1:path/to/velocity/format}\" )\n\
# set\n\
snippet #set\n\
#set ( $${1:var} = ${0} )\n\
";
exports.scope = "velocity";
exports.includeScopes = ["html", "javascript", "css"];
});