Initial commit.
This commit is contained in:
3
vim/snippets/php-cake/actas.snippet
Executable file
3
vim/snippets/php-cake/actas.snippet
Executable file
@@ -0,0 +1,3 @@
|
||||
var $actsAs = array(
|
||||
'${1:BehaviorName}'${2: => ${3:ConfigForBehavior}}
|
||||
);
|
||||
1
vim/snippets/php-cake/addc.snippet
Executable file
1
vim/snippets/php-cake/addc.snippet
Executable file
@@ -0,0 +1 @@
|
||||
<?php echo $html->addCrumb('${1:CrumbName}'${2:, '${3:CrumbLink}'}) ?>
|
||||
3
vim/snippets/php-cake/aftdel.snippet
Executable file
3
vim/snippets/php-cake/aftdel.snippet
Executable file
@@ -0,0 +1,3 @@
|
||||
function afterDelete() {
|
||||
${1}
|
||||
};
|
||||
3
vim/snippets/php-cake/aftfin.snippet
Executable file
3
vim/snippets/php-cake/aftfin.snippet
Executable file
@@ -0,0 +1,3 @@
|
||||
function afterFind() {
|
||||
${1}
|
||||
};
|
||||
3
vim/snippets/php-cake/aftfind.snippet
Executable file
3
vim/snippets/php-cake/aftfind.snippet
Executable file
@@ -0,0 +1,3 @@
|
||||
function afterFind(${1:$results}) {
|
||||
${2}
|
||||
};
|
||||
3
vim/snippets/php-cake/aftsave.snippet
Executable file
3
vim/snippets/php-cake/aftsave.snippet
Executable file
@@ -0,0 +1,3 @@
|
||||
function afterSave(${1:$created}) {
|
||||
${2}
|
||||
};
|
||||
4
vim/snippets/php-cake/aftss.snippet
Executable file
4
vim/snippets/php-cake/aftss.snippet
Executable file
@@ -0,0 +1,4 @@
|
||||
function _afterScaffoldSave($method) {
|
||||
${1}
|
||||
return true;
|
||||
};
|
||||
4
vim/snippets/php-cake/aftsse.snippet
Executable file
4
vim/snippets/php-cake/aftsse.snippet
Executable file
@@ -0,0 +1,4 @@
|
||||
function _afterScaffoldSaveError($method) {
|
||||
${1}
|
||||
return true;
|
||||
};
|
||||
3
vim/snippets/php-cake/befdel.snippet
Executable file
3
vim/snippets/php-cake/befdel.snippet
Executable file
@@ -0,0 +1,3 @@
|
||||
function beforeDelete() {
|
||||
${1}
|
||||
};
|
||||
3
vim/snippets/php-cake/beffil.snippet
Executable file
3
vim/snippets/php-cake/beffil.snippet
Executable file
@@ -0,0 +1,3 @@
|
||||
function beforeFilter() {
|
||||
${1}
|
||||
};
|
||||
3
vim/snippets/php-cake/beffind.snippet
Executable file
3
vim/snippets/php-cake/beffind.snippet
Executable file
@@ -0,0 +1,3 @@
|
||||
function beforeFind(${1:$queryData}) {
|
||||
${2}
|
||||
};
|
||||
3
vim/snippets/php-cake/befren.snippet
Executable file
3
vim/snippets/php-cake/befren.snippet
Executable file
@@ -0,0 +1,3 @@
|
||||
function beforeRender() {
|
||||
${1}
|
||||
};
|
||||
3
vim/snippets/php-cake/befsave.snippet
Executable file
3
vim/snippets/php-cake/befsave.snippet
Executable file
@@ -0,0 +1,3 @@
|
||||
function beforeSave() {
|
||||
${1}
|
||||
};
|
||||
4
vim/snippets/php-cake/befsca.snippet
Executable file
4
vim/snippets/php-cake/befsca.snippet
Executable file
@@ -0,0 +1,4 @@
|
||||
function _beforeScaffold($method) {
|
||||
${1}
|
||||
return true;
|
||||
};
|
||||
3
vim/snippets/php-cake/befval.snippet
Executable file
3
vim/snippets/php-cake/befval.snippet
Executable file
@@ -0,0 +1,3 @@
|
||||
function beforeValidate() {
|
||||
${1}
|
||||
};
|
||||
3
vim/snippets/php-cake/bt.snippet
Executable file
3
vim/snippets/php-cake/bt.snippet
Executable file
@@ -0,0 +1,3 @@
|
||||
var $belongsTo = array(
|
||||
'${1:Model}'${2: => array(${3:'className' => '${4:${1:ModelClassName}}',}${5:'foreignKey' => '${6:foreign_key_field}'})}
|
||||
);
|
||||
3
vim/snippets/php-cake/cbefdel.snippet
Executable file
3
vim/snippets/php-cake/cbefdel.snippet
Executable file
@@ -0,0 +1,3 @@
|
||||
function beforeDelete($controller, $url, $status, $exit) {
|
||||
${1}
|
||||
};
|
||||
1
vim/snippets/php-cake/cfg.snippet
Executable file
1
vim/snippets/php-cake/cfg.snippet
Executable file
@@ -0,0 +1 @@
|
||||
$config['${1:...}'] = ${2:'${3:...}'}
|
||||
1
vim/snippets/php-cake/cfl.snippet
Executable file
1
vim/snippets/php-cake/cfl.snippet
Executable file
@@ -0,0 +1 @@
|
||||
echo $content_for_layout
|
||||
4
vim/snippets/php-cake/cinit.snippet
Executable file
4
vim/snippets/php-cake/cinit.snippet
Executable file
@@ -0,0 +1,4 @@
|
||||
function initialize(&$controller) {
|
||||
$this->controller = &$controller;
|
||||
${1}
|
||||
};
|
||||
1
vim/snippets/php-cake/cri.snippet
Executable file
1
vim/snippets/php-cake/cri.snippet
Executable file
@@ -0,0 +1 @@
|
||||
$${1:varName} = ClassRegistry::init('${2:ClassName}');
|
||||
1
vim/snippets/php-cake/dat.snippet
Executable file
1
vim/snippets/php-cake/dat.snippet
Executable file
@@ -0,0 +1 @@
|
||||
$this->data${1:['${2:...}']}
|
||||
1
vim/snippets/php-cake/dbg.snippet
Executable file
1
vim/snippets/php-cake/dbg.snippet
Executable file
@@ -0,0 +1 @@
|
||||
debug(${1:$var});
|
||||
1
vim/snippets/php-cake/dela.snippet
Executable file
1
vim/snippets/php-cake/dela.snippet
Executable file
@@ -0,0 +1 @@
|
||||
$this->${1:Model}->deleteAll(${2:$conditions}${3:, ${4: $cascade}})
|
||||
1
vim/snippets/php-cake/ele.snippet
Executable file
1
vim/snippets/php-cake/ele.snippet
Executable file
@@ -0,0 +1 @@
|
||||
<?php echo $this->element('${1:path/to/element}') ?>
|
||||
1
vim/snippets/php-cake/fchk.snippet
Executable file
1
vim/snippets/php-cake/fchk.snippet
Executable file
@@ -0,0 +1 @@
|
||||
<?php echo $form->checkbox(${1:'${2:name}'}) ?>
|
||||
1
vim/snippets/php-cake/fcre.snippet
Executable file
1
vim/snippets/php-cake/fcre.snippet
Executable file
@@ -0,0 +1 @@
|
||||
<?php echo $form->create(${1:name}') ?>
|
||||
1
vim/snippets/php-cake/fend.snippet
Executable file
1
vim/snippets/php-cake/fend.snippet
Executable file
@@ -0,0 +1 @@
|
||||
<?php echo $form->end(${2:'${3:SubmitButtonValue}'}) ?>
|
||||
1
vim/snippets/php-cake/ferr.snippet
Executable file
1
vim/snippets/php-cake/ferr.snippet
Executable file
@@ -0,0 +1 @@
|
||||
<?php echo $form->error(${1:'$2'}, ${3:'$4'}) ?>
|
||||
1
vim/snippets/php-cake/ffil.snippet
Executable file
1
vim/snippets/php-cake/ffil.snippet
Executable file
@@ -0,0 +1 @@
|
||||
<?php echo $form->file(${1:'${2:name}'}) ?>
|
||||
1
vim/snippets/php-cake/fhid.snippet
Executable file
1
vim/snippets/php-cake/fhid.snippet
Executable file
@@ -0,0 +1 @@
|
||||
<?php echo $form->hidden(${1:'${2:name}'}) ?>
|
||||
1
vim/snippets/php-cake/finp.snippet
Executable file
1
vim/snippets/php-cake/finp.snippet
Executable file
@@ -0,0 +1 @@
|
||||
<?php echo $form->input(${1:'${2:name}'}) ?>
|
||||
1
vim/snippets/php-cake/flbl.snippet
Executable file
1
vim/snippets/php-cake/flbl.snippet
Executable file
@@ -0,0 +1 @@
|
||||
<?php echo $form->label(${1:'${2:fieldName}'}, ${3:'${4:labelText}'}) ?>
|
||||
1
vim/snippets/php-cake/fpwd.snippet
Executable file
1
vim/snippets/php-cake/fpwd.snippet
Executable file
@@ -0,0 +1 @@
|
||||
<?php echo $form->password(${1:'${2:name}'}) ?>
|
||||
1
vim/snippets/php-cake/frad.snippet
Executable file
1
vim/snippets/php-cake/frad.snippet
Executable file
@@ -0,0 +1 @@
|
||||
<?php echo $form->radio(${1:'${2:name}'}) ?>
|
||||
1
vim/snippets/php-cake/fsel.snippet
Executable file
1
vim/snippets/php-cake/fsel.snippet
Executable file
@@ -0,0 +1 @@
|
||||
<?php echo $form->select(${1:'${2:name}'}, ${3:$options}, ${4:$selected}, ${5:$attributes}, ${6:$showEmpty}) ?>
|
||||
1
vim/snippets/php-cake/fsub.snippet
Executable file
1
vim/snippets/php-cake/fsub.snippet
Executable file
@@ -0,0 +1 @@
|
||||
<?php echo $form->submit(${1:'${2:name}'}) ?>
|
||||
1
vim/snippets/php-cake/fsubimg.snippet
Executable file
1
vim/snippets/php-cake/fsubimg.snippet
Executable file
@@ -0,0 +1 @@
|
||||
<?php echo $form->submitImage(${1:$path}) ?>
|
||||
1
vim/snippets/php-cake/ftarea.snippet
Executable file
1
vim/snippets/php-cake/ftarea.snippet
Executable file
@@ -0,0 +1 @@
|
||||
<?php echo $form->textarea(${1:'${2:name}'}) ?>
|
||||
1
vim/snippets/php-cake/ftxt.snippet
Executable file
1
vim/snippets/php-cake/ftxt.snippet
Executable file
@@ -0,0 +1 @@
|
||||
<?php echo $form->text(${1:'${2:name}'}) ?>
|
||||
1
vim/snippets/php-cake/getc.snippet
Executable file
1
vim/snippets/php-cake/getc.snippet
Executable file
@@ -0,0 +1 @@
|
||||
<?php echo $html->getCrumbs(${1:'${2:«separator»}'}) ?>
|
||||
3
vim/snippets/php-cake/habtm.snippet
Executable file
3
vim/snippets/php-cake/habtm.snippet
Executable file
@@ -0,0 +1,3 @@
|
||||
var $hasAndBelongsToMany = array(
|
||||
'${1:Model}'${2: => array(${3:'className' => '${4:${1:ModelClassName}}',}${5:'foreignKey' => '${6:foreign_key_field}'})}
|
||||
);
|
||||
3
vim/snippets/php-cake/hm.snippet
Executable file
3
vim/snippets/php-cake/hm.snippet
Executable file
@@ -0,0 +1,3 @@
|
||||
var $hasMany = array(
|
||||
'${1:Model}'${2: => array(${3:'className' => '${4:${1:ModelClassName}}',}${5:'foreignKey' => '${6:foreign_key_field}'})}
|
||||
);
|
||||
3
vim/snippets/php-cake/ho.snippet
Executable file
3
vim/snippets/php-cake/ho.snippet
Executable file
@@ -0,0 +1,3 @@
|
||||
var $hasOne = array(
|
||||
'${1:Model}'${2: => array(${3:'className' => '${4:${1:ModelClassName}}',}${5:'foreignKey' => '${6:foreign_key_field}'})}
|
||||
);
|
||||
1
vim/snippets/php-cake/imp.snippet
Executable file
1
vim/snippets/php-cake/imp.snippet
Executable file
@@ -0,0 +1 @@
|
||||
App::import('${1:Core}', '${2:ClassName}');
|
||||
1
vim/snippets/php-cake/inflector/camelize.snippet
Executable file
1
vim/snippets/php-cake/inflector/camelize.snippet
Executable file
@@ -0,0 +1 @@
|
||||
Inflector::camelize(${1:$word})
|
||||
1
vim/snippets/php-cake/inflector/classify.snippet
Executable file
1
vim/snippets/php-cake/inflector/classify.snippet
Executable file
@@ -0,0 +1 @@
|
||||
Inflector::classify(${1:$word})
|
||||
1
vim/snippets/php-cake/inflector/humanize.snippet
Executable file
1
vim/snippets/php-cake/inflector/humanize.snippet
Executable file
@@ -0,0 +1 @@
|
||||
Inflector::humanize(${1:$word})
|
||||
1
vim/snippets/php-cake/inflector/pluralize.snippet
Executable file
1
vim/snippets/php-cake/inflector/pluralize.snippet
Executable file
@@ -0,0 +1 @@
|
||||
Inflector::pluralize(${1:$word})
|
||||
1
vim/snippets/php-cake/inflector/singularize.snippet
Executable file
1
vim/snippets/php-cake/inflector/singularize.snippet
Executable file
@@ -0,0 +1 @@
|
||||
Inflector::singularize(${1:$word})
|
||||
1
vim/snippets/php-cake/inflector/slug.snippet
Executable file
1
vim/snippets/php-cake/inflector/slug.snippet
Executable file
@@ -0,0 +1 @@
|
||||
Inflector::slug(${1:$word})
|
||||
1
vim/snippets/php-cake/inflector/tabelize.snippet
Executable file
1
vim/snippets/php-cake/inflector/tabelize.snippet
Executable file
@@ -0,0 +1 @@
|
||||
Inflector::tabelize(${1:$word})
|
||||
1
vim/snippets/php-cake/inflector/underscore.snippet
Executable file
1
vim/snippets/php-cake/inflector/underscore.snippet
Executable file
@@ -0,0 +1 @@
|
||||
Inflector::underscore(${1:$word})
|
||||
1
vim/snippets/php-cake/inflector/variable.snippet
Executable file
1
vim/snippets/php-cake/inflector/variable.snippet
Executable file
@@ -0,0 +1 @@
|
||||
Inflector::variable(${1:$word})
|
||||
1
vim/snippets/php-cake/lay.snippet
Executable file
1
vim/snippets/php-cake/lay.snippet
Executable file
@@ -0,0 +1 @@
|
||||
var $layout = ${1:'${2}'};
|
||||
1
vim/snippets/php-cake/lay=.snippet
Executable file
1
vim/snippets/php-cake/lay=.snippet
Executable file
@@ -0,0 +1 @@
|
||||
var $layout = ${1:}'${2:layout_name}';
|
||||
1
vim/snippets/php-cake/lia.snippet
Executable file
1
vim/snippets/php-cake/lia.snippet
Executable file
@@ -0,0 +1 @@
|
||||
<?php echo $html->link('${1:Link Title}', array('action' => '${2:action_name}')) ?>
|
||||
1
vim/snippets/php-cake/lic.snippet
Executable file
1
vim/snippets/php-cake/lic.snippet
Executable file
@@ -0,0 +1 @@
|
||||
<?php echo $html->link('${1:Link Title}', array('controller' => '${2:controller_name}')) ?>
|
||||
1
vim/snippets/php-cake/lica.snippet
Executable file
1
vim/snippets/php-cake/lica.snippet
Executable file
@@ -0,0 +1 @@
|
||||
<?php echo $html->link('${1:Link Title}', array('controller' => '${2:controller_name}', 'action' => '${3:action_name}')) ?>
|
||||
1
vim/snippets/php-cake/lin.snippet
Executable file
1
vim/snippets/php-cake/lin.snippet
Executable file
@@ -0,0 +1 @@
|
||||
<?php echo $html->link('${1:Link Title}', '${2:/controller/action}') ?>
|
||||
1
vim/snippets/php-cake/matom.snippet
Executable file
1
vim/snippets/php-cake/matom.snippet
Executable file
@@ -0,0 +1 @@
|
||||
<?php echo $html->meta('atom', ${1:$this->webroot('${2:atom.xml}')}) ?>
|
||||
1
vim/snippets/php-cake/mdel.snippet
Executable file
1
vim/snippets/php-cake/mdel.snippet
Executable file
@@ -0,0 +1 @@
|
||||
$this->${1:Model}->del(${2:$id}${3:, ${4: $cascade}})
|
||||
1
vim/snippets/php-cake/mdesc.snippet
Executable file
1
vim/snippets/php-cake/mdesc.snippet
Executable file
@@ -0,0 +1 @@
|
||||
<?php echo $html->meta('description', ${1:'${2:your description here}'}) ?>
|
||||
1
vim/snippets/php-cake/mfind.snippet
Executable file
1
vim/snippets/php-cake/mfind.snippet
Executable file
@@ -0,0 +1 @@
|
||||
$this->${1:Model}->find(${2:...})
|
||||
1
vim/snippets/php-cake/mfinda.snippet
Executable file
1
vim/snippets/php-cake/mfinda.snippet
Executable file
@@ -0,0 +1 @@
|
||||
$this->${1:Model}->find('all', ${2:...})
|
||||
1
vim/snippets/php-cake/mfindb.snippet
Executable file
1
vim/snippets/php-cake/mfindb.snippet
Executable file
@@ -0,0 +1 @@
|
||||
$this->${1:Model}->findBy${2:ColumnName}(${3:...})
|
||||
1
vim/snippets/php-cake/mfindc.snippet
Executable file
1
vim/snippets/php-cake/mfindc.snippet
Executable file
@@ -0,0 +1 @@
|
||||
$this->${1:Model}->find('count', ${2:...})
|
||||
1
vim/snippets/php-cake/mfindf.snippet
Executable file
1
vim/snippets/php-cake/mfindf.snippet
Executable file
@@ -0,0 +1 @@
|
||||
$this->${1:Model}->find('first', ${2:...})
|
||||
1
vim/snippets/php-cake/mfindl.snippet
Executable file
1
vim/snippets/php-cake/mfindl.snippet
Executable file
@@ -0,0 +1 @@
|
||||
$this->${1:Model}->find('list', ${2:...})
|
||||
1
vim/snippets/php-cake/mfindn.snippet
Executable file
1
vim/snippets/php-cake/mfindn.snippet
Executable file
@@ -0,0 +1 @@
|
||||
$this->${1:Model}->find('neighbors', ${2:...})
|
||||
1
vim/snippets/php-cake/mfindt.snippet
Executable file
1
vim/snippets/php-cake/mfindt.snippet
Executable file
@@ -0,0 +1 @@
|
||||
$this->${1:Model}->find('threaded', ${2:...})
|
||||
1
vim/snippets/php-cake/micon.snippet
Executable file
1
vim/snippets/php-cake/micon.snippet
Executable file
@@ -0,0 +1 @@
|
||||
<?php echo $html->meta('icon', ${1:$this->webroot('${2:favicon.ico}')}) ?>
|
||||
1
vim/snippets/php-cake/mid.snippet
Executable file
1
vim/snippets/php-cake/mid.snippet
Executable file
@@ -0,0 +1 @@
|
||||
$this->${1:Model}->id = ${2:$id};
|
||||
5
vim/snippets/php-cake/mifsave.snippet
Executable file
5
vim/snippets/php-cake/mifsave.snippet
Executable file
@@ -0,0 +1,5 @@
|
||||
if ($this->${1:Model}->save(${2:$this->data})) {
|
||||
$3
|
||||
} else {
|
||||
$4
|
||||
};
|
||||
1
vim/snippets/php-cake/mkeyw.snippet
Executable file
1
vim/snippets/php-cake/mkeyw.snippet
Executable file
@@ -0,0 +1 @@
|
||||
<?php echo $html->meta('keywords', ${1:'${2:your, keywords, here}'}) ?>
|
||||
1
vim/snippets/php-cake/mrem.snippet
Executable file
1
vim/snippets/php-cake/mrem.snippet
Executable file
@@ -0,0 +1 @@
|
||||
$this->${1:Model}->remove(${2:$id}${3:, ${4: $cascade})
|
||||
1
vim/snippets/php-cake/mrss.snippet
Executable file
1
vim/snippets/php-cake/mrss.snippet
Executable file
@@ -0,0 +1 @@
|
||||
<?php echo $html->meta('rss', ${1:$this->webroot('${2:feed.rss}')}) ?>
|
||||
1
vim/snippets/php-cake/msave.snippet
Executable file
1
vim/snippets/php-cake/msave.snippet
Executable file
@@ -0,0 +1 @@
|
||||
$this->${1:Model}->save(${2:$this->data})
|
||||
1
vim/snippets/php-cake/msavef.snippet
Executable file
1
vim/snippets/php-cake/msavef.snippet
Executable file
@@ -0,0 +1 @@
|
||||
$this->${1:Model}->saveField(${2:'$3'}, ${4:$fieldValue})
|
||||
1
vim/snippets/php-cake/mupa.snippet
Executable file
1
vim/snippets/php-cake/mupa.snippet
Executable file
@@ -0,0 +1 @@
|
||||
$this->${1:Model}->updateAll(${2:$fields}${3:, ${4: $conditions}})
|
||||
3
vim/snippets/php-cake/newbeh.snippet
Executable file
3
vim/snippets/php-cake/newbeh.snippet
Executable file
@@ -0,0 +1,3 @@
|
||||
class ${1:My}Behavior extends ModelBehavior {
|
||||
${2:// My Code ...}
|
||||
};
|
||||
4
vim/snippets/php-cake/newcom.snippet
Executable file
4
vim/snippets/php-cake/newcom.snippet
Executable file
@@ -0,0 +1,4 @@
|
||||
class ${1:My}Component extends Object {
|
||||
${2:var $controller;}
|
||||
${3}
|
||||
};
|
||||
3
vim/snippets/php-cake/newcon.snippet
Executable file
3
vim/snippets/php-cake/newcon.snippet
Executable file
@@ -0,0 +1,3 @@
|
||||
class ${1:My}Controller extends AppController {
|
||||
${2:// My Code ...}
|
||||
};
|
||||
3
vim/snippets/php-cake/newhel.snippet
Executable file
3
vim/snippets/php-cake/newhel.snippet
Executable file
@@ -0,0 +1,3 @@
|
||||
class ${1:My}Helper extends AppHelper {
|
||||
${2:// My Code ...}
|
||||
};
|
||||
3
vim/snippets/php-cake/newmod.snippet
Executable file
3
vim/snippets/php-cake/newmod.snippet
Executable file
@@ -0,0 +1,3 @@
|
||||
class ${1:My}Model extends AppModel {
|
||||
${2:// My Code ...}
|
||||
};
|
||||
3
vim/snippets/php-cake/onerr.snippet
Executable file
3
vim/snippets/php-cake/onerr.snippet
Executable file
@@ -0,0 +1,3 @@
|
||||
function onError() {
|
||||
${1}
|
||||
};
|
||||
1
vim/snippets/php-cake/par.snippet
Executable file
1
vim/snippets/php-cake/par.snippet
Executable file
@@ -0,0 +1 @@
|
||||
$this->params['${1:...}']
|
||||
1
vim/snippets/php-cake/pr.snippet
Executable file
1
vim/snippets/php-cake/pr.snippet
Executable file
@@ -0,0 +1 @@
|
||||
pr(${1:$var});
|
||||
1
vim/snippets/php-cake/pt=.snippet
Executable file
1
vim/snippets/php-cake/pt=.snippet
Executable file
@@ -0,0 +1 @@
|
||||
var $this->pageTitle = ${1:'${2:Page Title}'};
|
||||
1
vim/snippets/php-cake/ran.snippet
Executable file
1
vim/snippets/php-cake/ran.snippet
Executable file
@@ -0,0 +1 @@
|
||||
'rule' => 'alphaNumeric'
|
||||
1
vim/snippets/php-cake/rbe.snippet
Executable file
1
vim/snippets/php-cake/rbe.snippet
Executable file
@@ -0,0 +1 @@
|
||||
'rule' => array('between', ${1:min}, ${2:max})
|
||||
1
vim/snippets/php-cake/rbl.snippet
Executable file
1
vim/snippets/php-cake/rbl.snippet
Executable file
@@ -0,0 +1 @@
|
||||
'rule' => 'blank'
|
||||
1
vim/snippets/php-cake/rbo.snippet
Executable file
1
vim/snippets/php-cake/rbo.snippet
Executable file
@@ -0,0 +1 @@
|
||||
'rule' => 'boolean'
|
||||
1
vim/snippets/php-cake/rcc.snippet
Executable file
1
vim/snippets/php-cake/rcc.snippet
Executable file
@@ -0,0 +1 @@
|
||||
'rule' => array('cc', '${1:visa}')
|
||||
1
vim/snippets/php-cake/rco.snippet
Executable file
1
vim/snippets/php-cake/rco.snippet
Executable file
@@ -0,0 +1 @@
|
||||
'rule' => array('comparison', '${1:an operator}'${2:, '{3:a second value}'})
|
||||
1
vim/snippets/php-cake/rcu.snippet
Executable file
1
vim/snippets/php-cake/rcu.snippet
Executable file
@@ -0,0 +1 @@
|
||||
'rule' => array('custom', '${1:regular expression}')
|
||||
1
vim/snippets/php-cake/rda.snippet
Executable file
1
vim/snippets/php-cake/rda.snippet
Executable file
@@ -0,0 +1 @@
|
||||
'rule' => array('date', '${1:Ymd}')
|
||||
1
vim/snippets/php-cake/rde.snippet
Executable file
1
vim/snippets/php-cake/rde.snippet
Executable file
@@ -0,0 +1 @@
|
||||
'rule' => 'decimal'
|
||||
1
vim/snippets/php-cake/rea.snippet
Executable file
1
vim/snippets/php-cake/rea.snippet
Executable file
@@ -0,0 +1 @@
|
||||
$this->redirect(array('action' => '${1:action_name}'));
|
||||
1
vim/snippets/php-cake/rec.snippet
Executable file
1
vim/snippets/php-cake/rec.snippet
Executable file
@@ -0,0 +1 @@
|
||||
$this->redirect(array('controller' => '${1:controller_name}'));
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user