Server IP : 180.180.241.3 / Your IP : 216.73.216.252 Web Server : Microsoft-IIS/7.5 System : Windows NT NETWORK-NHRC 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586 User : IUSR ( 0) PHP Version : 5.3.28 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Program Files (x86)/Sublime Text 2/Pristine Packages/ |
Upload File : |
PK iZ=T $GLOBALS[''].sublime-snippet<snippet> <content><![CDATA[\$GLOBALS['${1:variable}']${2: = }${3:something}${4:;}$0]]></content> <tabTrigger>globals</tabTrigger> <scope>source.php</scope> <description>$GLOBALS['…']</description> </snippet> PK iZ=U $_COOKIE[''].sublime-snippet<snippet> <content><![CDATA[\$_COOKIE['${1:variable}']]]></content> <tabTrigger>$_</tabTrigger> <scope>source.php</scope> <description>COOKIE['…']</description> </snippet> PK iZ=v4 $_ENV[''].sublime-snippet<snippet> <content><![CDATA[\$_ENV['${1:variable}']]]></content> <tabTrigger>$_</tabTrigger> <scope>source.php</scope> <description>ENV['…']</description> </snippet> PK iZ=)A $_FILES[''].sublime-snippet<snippet> <content><![CDATA[\$_FILES['${1:variable}']]]></content> <tabTrigger>$_</tabTrigger> <scope>source.php</scope> <description>FILES['…']</description> </snippet> PK iZ= J $_GET[''].sublime-snippet<snippet> <content><![CDATA[\$_GET['${1:variable}']]]></content> <tabTrigger>$_</tabTrigger> <scope>source.php</scope> <description>GET['…']</description> </snippet> PK iZ=Ǣ $_POST[''].sublime-snippet<snippet> <content><![CDATA[\$_POST['${1:variable}']]]></content> <tabTrigger>$_</tabTrigger> <scope>source.php</scope> <description>POST['…']</description> </snippet> PK iZ=n $_REQUEST[''].sublime-snippet<snippet> <content><![CDATA[\$_REQUEST['${1:variable}']]]></content> <tabTrigger>$_</tabTrigger> <scope>source.php</scope> <description>REQUEST['…']</description> </snippet> PK iZ=+ɾ $_SERVER[''].sublime-snippet<snippet> <content><![CDATA[\$_SERVER['${1:variable}']]]></content> <tabTrigger>$_</tabTrigger> <scope>source.php</scope> <description>SERVER['…']</description> </snippet> PK iZ=3 $_SESSION[''].sublime-snippet<snippet> <content><![CDATA[\$_SESSION['${1:variable}']]]></content> <tabTrigger>$_</tabTrigger> <scope>source.php</scope> <description>SESSION['…']</description> </snippet> PK iZ=k, , class-{-}.sublime-snippet<snippet> <content><![CDATA[/** * $1 */ class ${2:ClassName}${3: extends ${4:AnotherClass}} { $5 function ${6:__construct}(${7:argument}) { ${0:# code...} } } ]]></content> <tabTrigger>class</tabTrigger> <scope>source.php</scope> <description>class …</description> </snippet> PK iZ=kl Comments.tmPreferences<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>name</key> <string>Comments</string> <key>scope</key> <string>source.php</string> <key>settings</key> <dict> <key>shellVariables</key> <array> <dict> <key>name</key> <string>TM_COMMENT_START</string> <key>value</key> <string>// </string> </dict> <dict> <key>name</key> <string>TM_COMMENT_START_2</string> <key>value</key> <string># </string> </dict> <dict> <key>name</key> <string>TM_COMMENT_START_3</string> <key>value</key> <string>/*</string> </dict> <dict> <key>name</key> <string>TM_COMMENT_END_3</string> <key>value</key> <string>*/</string> </dict> </array> </dict> <key>uuid</key> <string>06276449-AA4E-424F-A2B6-9F4138416E50</string> </dict> </plist> PK H@p. Completion Rules.tmPreferences<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>scope</key> <string>source.php</string> <key>settings</key> <dict> <key>cancelCompletion</key> <string>^\s*(\}?\s*(else|do|try)|(class|function)\s*[a-zA-Z_0-9]+*)$</string> </dict> </dict> </plist> PK iZ= Constructor.sublime-snippet<snippet> <content><![CDATA[function __construct(${1:\$${2:foo}${3: = ${4:null}}}) { ${2/.+/$this->$0 = \$$0;/}$0 }]]></content> <tabTrigger>con</tabTrigger> <scope>source.php</scope> <description>function __construct</description> </snippet> PK iZ=A{ define(-).sublime-snippet<snippet> <content><![CDATA[define('$1', ${2:'$3'}); $0]]></content> <tabTrigger>def</tabTrigger> <scope>source.php</scope> <description>define(…, …)</description> </snippet> PK iZ=. defined(-).sublime-snippet<snippet> <content><![CDATA[$1defined('$2')$0]]></content> <tabTrigger>def?</tabTrigger> <scope>source.php</scope> <description>defined(…)</description> </snippet> PK iZ=+K do-while(-).sublime-snippet<snippet> <content><![CDATA[do { ${0:# code...} } while (${1:$a <= 10});]]></content> <tabTrigger>do</tabTrigger> <scope>source.php</scope> <description>do … while …</description> </snippet> PK iZ=!m echo-___.sublime-snippet<snippet> <content><![CDATA[echo "${1:string}"${0};]]></content> <tabTrigger>echo</tabTrigger> <scope>source.php</scope> <description>echo "…"</description> </snippet> PK iZ=ZS elseif(-).sublime-snippet<snippet> <content><![CDATA[elseif (${1:condition}) { ${0:# code...} }]]></content> <tabTrigger>elseif</tabTrigger> <scope>source.php</scope> <description>elseif …</description> </snippet> PK iZ=Z,2 for(-).sublime-snippet<snippet> <content><![CDATA[for (\$${1:i}=${2:0}; \$${1:i} < $3; \$${1:i}++) { ${0:# code...} }]]></content> <tabTrigger>for</tabTrigger> <scope>source.php</scope> <description>for …</description> </snippet> PK iZ=5;] foreach(-).sublime-snippet<snippet> <content><![CDATA[foreach (\$${1:variable} as \$${2:key}${3: => \$${4:value}}) { ${0:# code...} }]]></content> <tabTrigger>foreach</tabTrigger> <scope>source.php</scope> <description>foreach …</description> </snippet> PK iZ=Zא function-xx(-).sublime-snippet<snippet> <content><![CDATA[${1:public }function ${2:FunctionName}(${3:\$${4:value}${5:=''}}) { ${0:# code...} }]]></content> <tabTrigger>fun</tabTrigger> <scope>source.php</scope> <description>function …</description> </snippet> PK iZ=.5a if(-)-else(-).sublime-snippet<snippet> <content><![CDATA[if (${1:condition}) { ${2:# code...} } else { ${3:# code...} } $0]]></content> <tabTrigger>ifelse</tabTrigger> <scope>source.php</scope> <description>if … else …</description> </snippet> PK iZ=F( if(-).sublime-snippet<snippet> <content><![CDATA[if (${1:condition}) { ${0:# code...} }]]></content> <tabTrigger>if</tabTrigger> <scope>source.php</scope> <description>if …</description> </snippet> PK iZ=zt if-a-b;.sublime-snippet<snippet> <content><![CDATA[\$${1:retVal} = (${2:condition}) ? ${3:a} : ${4:b} ;]]></content> <tabTrigger>if?</tabTrigger> <scope>source.php</scope> <description>$… = ( … ) ? … : …</description> </snippet> PK iZ=S include(-).sublime-snippet<snippet> <content><![CDATA[include '${1:file}';$0]]></content> <tabTrigger>incl</tabTrigger> <scope>source.php</scope> <description>include …</description> </snippet> PK iZ=r include_once(-).sublime-snippet<snippet> <content><![CDATA[include_once '${1:file}';$0]]></content> <tabTrigger>incl1</tabTrigger> <scope>source.php</scope> <description>include_once …</description> </snippet> PK .?@:_ % Indentation Rules Annex.tmPreferences<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>name</key> <string>Indentation Rules Annex</string> <key>scope</key> <string>source.php</string> <key>settings</key> <dict> <key>unIndentedLinePattern</key> <string>^\s*((\*/|#|//| \*).*)?$</string> </dict> </dict> </plist> PK J@p y y Indentation Rules.tmPreferences<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> <plist version="1.0"> <dict> <key>name</key> <string>Indentation Rules</string> <key>scope</key> <string>source.php - comment</string> <key>settings</key> <dict> <key>decreaseIndentPattern</key> <string>(?x) ^ (.*\*/)? \s* \} .* $|<\?(php)?\s+(else(if)?|end(if|for(each)?|while))</string> <key>indentNextLinePattern</key> <string>^(?!.*(#|//|\*/|<\?))(?!.*[};:]\s*(//|/\*.*\*/\s*$)).*[^\s;:{}]\s*$|<\?php.+?\b(if|else(?:if)?|for(?:each)?|while)\b.*:(?!.*end\1)</string> <key>bracketIndentNextLinePattern</key> <string>(?x) ^ \s* \b(if|while|else|elseif|foreach)\b [^;]* $ | ^ \s* \b(for)\b .* $ </string> </dict> <key>uuid</key> <string>CA15DF69-E80D-46DA-BD45-E88C68E92117</string> </dict> </plist> PK TY>+x<