CMS Made Simple Snippets
The is a package for Sublime Text 2 which contains a bunch of snippets commonly used for module development.
Details
Installs
- Total 2K
- Win 2K
- Mac 509
- Linux 265
Dec 21 | Dec 20 | Dec 19 | Dec 18 | Dec 17 | Dec 16 | Dec 15 | Dec 14 | Dec 13 | Dec 12 | Dec 11 | Dec 10 | Dec 9 | Dec 8 | Dec 7 | Dec 6 | Dec 5 | Dec 4 | Dec 3 | Dec 2 | Dec 1 | Nov 30 | Nov 29 | Nov 28 | Nov 27 | Nov 26 | Nov 25 | Nov 24 | Nov 23 | Nov 22 | Nov 21 | Nov 20 | Nov 19 | Nov 18 | Nov 17 | Nov 16 | Nov 15 | Nov 14 | Nov 13 | Nov 12 | Nov 11 | Nov 10 | Nov 9 | Nov 8 | Nov 7 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Mac | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Linux | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
Readme
- Source
- raw.githubusercontent.com
SublimeCMSMadeSimple
Sublime Text 2 CMS Made Simple package is a collection of CMS Made Simple snippets and auto-completions for Sublime Text 2. It includes all of the methods found in the CMSModule class plus a few commonly used snippets for PHP and smarty programing.
Installation
Install the package via the package control (CMS Made Simple) or clone the contents of the repo in your Sublime Text 2 package directory.
Usage
PHP Files: Begin typing the name of the method you would like to use. The auto-completion menu will appear. Select the desired function from the list. Most all methods have placeholders. You can cycle through the placeholders using the tab key. A list of all the available CMSModule class methods can be viewed here: http://apidoc.cmsmadesimple.org/CMS/CMSModule.html
Smarty Files (*.tpl): Type the full name of the snippet followed by the tab key.
Available Snippets
PHP
- cms_db -
$db = cmsms()->GetDb();
- cms_dict -
$dict = NewDataDictionary($db);
- cms_loop
while($results && $row = $results->FetchRow())
{
$onerow = stdClass;
$onerow->name = $row['name'];
$entryarray[] = $onerow;
}
- cms_getmod -
$mod = cms_utils::get_module('module_name');
- get_tabopt -
$taboptarray = array('mysql' => 'TYPE=MyISAM');
- cms_createtab
$sqlarray = $dict->CreateTableSQL(cms_db_prefix()."tablename",
$flds, $taboptarray);
$dict->ExecuteSQLArray($sqlarray);
- cms_getconfig -
$config = cmsms()->GetConfig();
- cms_getsmarty -
$smarty = cms_utils::get_smarty();
- cms_createtabindex
$sqlarray = $dict->CreateIndexSQL(cms_db_prefix().'index_name',
cms_db_prefix().'table_name',
'column_name');
$dict->ExecuteSQLArray($sqlarray);
- cms_db_sql -
$db->sql;
- cms_db_error -
$db->ErrorMsg();
- cms_db_getone -
$db->GetOne($query,array(value,value));
- cms_db_execute -
$db->Execute($query,array(value,value));
- cms_db_fetchrow -
$results->FetchRow();
Smarty
- smarty_form
{$startform}
<div class="pageoverflow">
<p class="pagetext">{$prompt_name}</p>
<p class="pageinput">{$input_name}</p>
</div>
<div class="pageoverflow">
<p class="pagetext"> </p>
<p class="pageinput">{$submit} {$cancel} {$apply}</p>
</div>
{$endform}
- smarty_table
“
Heading 1 Heading 2 Heading 3 Heading 4 Heading 5 {$entry->one} {$entry->two} {$entry->three} {$entry->four} {$entry->five} {$entry->six} {$entry->seven} {$entry->eight} {$entry->nine}
+ **smarty_foreach**
{foreach from=$items key=key item=entry name=name} {$entry->item} {/foreach}
Author
------
**Ben Bonora**
+ http://twitter.com/bbonora
+ http://github.com/bbonora
+ http://www.bennyvbonora.com