CodeIgniter Forums
Code Igniter & Fast Development - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: Code Igniter & Fast Development (/showthread.php?tid=17936)

Pages: 1 2


Code Igniter & Fast Development - El Forum - 04-21-2009

[eluser]jdfwarrior[/eluser]
More of mine are..

jqstart:
Code:
$(document).ready(function() {

    |

});

css:
Code:
<link rel="stylesheet" type="text/css" href="/public/css/|.css" />

lib:
Code:
$this->load->library('|');

mod:
Code:
$this->load->model('|');

help:
Code:
$this->load->helper('|');

function:
Code:
/**
*
* <Name> Function
*
* <explanation>
*
* @param <parameters>
* @returns <return values>
*
**/

function |() {

}

etc.

Some were removed because they were script includes for javascript, and to auto include jquery from google. I have a few more, but didnt wanna get too long. Remember also, that in mine the | character is where the cursor is auto positioned when the text is placed in the code.