ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Kohana 2.​x Snippets

by golf3gtiii ALL

Kohana v 2.3.4, Keyboard shortcut for sublime text 2

Labels snippets

Details

  • 2013.03.11.08.11.47
  • github.​com
  • github.​com
  • 12 years ago
  • 4 hours ago
  • 12 years ago

Installs

  • Total 280
  • Win 152
  • Mac 77
  • Linux 51
Aug 29 Aug 28 Aug 27 Aug 26 Aug 25 Aug 24 Aug 23 Aug 22 Aug 21 Aug 20 Aug 19 Aug 18 Aug 17 Aug 16 Aug 15 Aug 14 Aug 13 Aug 12 Aug 11 Aug 10 Aug 9 Aug 8 Aug 7 Aug 6 Aug 5 Aug 4 Aug 3 Aug 2 Aug 1 Jul 31 Jul 30 Jul 29 Jul 28 Jul 27 Jul 26 Jul 25 Jul 24 Jul 23 Jul 22 Jul 21 Jul 20 Jul 19 Jul 18 Jul 17 Jul 16
Windows 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 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 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

Readme

Source
raw.​githubusercontent.​com

Kohana234-sublimeText2-plugin

Kohana v 2.3.4, Keyboard shortcuts for sublime text 2

Usage

Enter shortcut and press enter or tabulate.

shortcut :

description

kohana

kconf :

Kohana::config('')

klang :

Kohana::lang('')

ORM

korm :

ORM::factory('')

kmodel :

defined('SYSPATH') OR die('No direct access allowed.');

    class _Model extends ORM {

    }

sessions

ktsg :

$this->session->get('')

ktss :

$this->session->set('', )

kflash :

$this->session->set_flash()

url shortcuts

kbase :

url::base()

kcurrent :

url::current()

kredirect :

url::redirect()

Others

krender :

$this->auto_render = false

ktc :

$this->template->content

mail

kswift :

$swift = email::connect();
    $from = '';

    $subject = '';
    $message = '';

    $recipients = new Swift_RecipientList;
    $recipients->addTo('');
    $message = new Swift_Message($subject, $message, "text/html");
    $swift->send($message, $recipients, $from);
    $swift->disconnect();

Database

kquery :

$db = new database('');
    $query = "";
    $results = $db->query($query);