Inspired from the other community wikis, I'm interested in hearing about the lesser known Kohana tips, tricks and features.
- Please, include only one tip per answer.
- Add Kohana versions if necessary.
This is a community wiki.
|
|
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
Generating Form::select() options from database resultKohana 3.1 and 3.0
It should be noted this is not restricted to the ORM and can be used on all database results (they all support as_array). See the database results information for more details. If you want to add a default option:
|
||||
|
|
Set Kohana::$environmentPaste these lines to your
now, if you're on localhost, you are in development mode, otherwise you're in production mode Edit: Added support for IPv6 |
||||
|
|
|
The difference between
As you can see, $this->request->route->uri() uses current route defaults (id is null), while $this->request->uri() applies current uri segments. |
||||
|
|
Show last query executedKohana 3.1 and 3.0
Taken from In Kohana 3, how do you figure out errors made during a query?. |
||||
|
|
Add data to pivot tables using ORMORMs For example, if a user has many roles and a role has many users (through a table named roles_users), you can save information to the pivot table by passing an array of column keys and data values as the 3rd argument to the Kohana 3.1Not supported. The alternative would be to load the pivot table and add the data as you would with any other table. Kohana 3.0
where |
|||||||||||
|
Maintainable routesInstead of hardcoding anchor locations in your HTML and PHP, it's a good idea to reverse routing. This essentially means you define route locations and then use those; If you ever need to change the location it's done in one place and not hundreds. Routes can be defined anywhere, but it's good practice to put them into the application bootstrap or your modules bootstrap (init.php). They are set as follows:
When a part is surrounded by brackets, that part is optional. If a user has not provided a part and you want to provide a default value, then use the defaults method to specify values.
Kohana 3.1 and 3.0The following code is now used for having reversable routes. The URL path can be updated and all your URLs should work as before.
|
|||||||||
|
Turn off auto_rendering for AJAX requestsThese code samples assume you're extending from the template controller. Kohana 3.1
Kohana 3.0
|
|||||||||||||
|
|
Set
If your site is hosted at 1&1, you should use:
(taken from Gallery3 config file ) |
||||
|
|
Checking for an internal requestThese are known as sub-requests. Take a look at Sam de Freyssinets article: Scaling Web Applications with HMVC for a more indepth explanation. Notice the initial vs instance difference between versions. Kohana 3.1
Kohana 3.0
|
|||||
|
Display an error pageIf you need to display an error page, Kohana has built in exceptions for it. Once you've thrown an exception, you can create a custom exception handler and have a HTML error page shown. You'll want a switch to show the real error in development. Kohana 3.1
The 2nd argument provides a way for you to replace strings in the error message. Kohana 3.0Doesn't have HTTP exceptions bundled. You should create your own exceptions and handle them. Kohana has a tutorial for this: Kohana - Custom Error Pages |
||||
|
|
HMVC + AJAX = is_remote()This function checks both - the internal and AJAX requests. It might be handy if some parts of the page are initially loaded using HMVC technique, and can be then reloaded with AJAX. Place it withing some base controller, from which you extend all your proper controllers (I call it 'base controller'):
A shorter (equivalent) way of writing this:
Hope this helps. |
||||
|
|
|
To execute SQL query like |
||||
|
|