<?xml version="1.0" encoding="utf-8"?>
<!-- generator="FeedCreator 1.7.2-ppt DokuWiki" -->
<?xml-stylesheet href="http://kerkness.ca/wiki/lib/exe/css.php?s=feed" type="text/css"?>
<rdf:RDF
    xmlns="http://purl.org/rss/1.0/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
    xmlns:dc="http://purl.org/dc/elements/1.1/">
    <channel rdf:about="http://kerkness.ca/wiki/feed.php">
        <title>Unofficial Kohana 3.0 Wiki</title>
        <description></description>
        <link>http://kerkness.ca/wiki/</link>
        <image rdf:resource="http://kerkness.ca/wiki/lib/images/favicon.ico" />
       <dc:date>2010-03-14T18:34:51+00:00</dc:date>
        <items>
            <rdf:Seq>
                <rdf:li rdf:resource="http://kerkness.ca/wiki/doku.php?id=how_to_enable_and_configure_the_database_module&amp;rev=1268504647&amp;do=diff"/>
                <rdf:li rdf:resource="http://kerkness.ca/wiki/doku.php?id=routing:creating_a_custom_404_page&amp;rev=1268503707&amp;do=diff"/>
                <rdf:li rdf:resource="http://kerkness.ca/wiki/doku.php?id=orm&amp;rev=1267790624&amp;do=diff"/>
                <rdf:li rdf:resource="http://kerkness.ca/wiki/doku.php?id=how_to_create_a_file_upload_field&amp;rev=1267712086&amp;do=diff"/>
                <rdf:li rdf:resource="http://kerkness.ca/wiki/doku.php?id=start&amp;rev=1267694179&amp;do=diff"/>
            </rdf:Seq>
        </items>
    </channel>
    <image rdf:about="http://kerkness.ca/wiki/lib/images/favicon.ico">
        <title>Unofficial Kohana 3.0 Wiki</title>
        <link>http://kerkness.ca/wiki/</link>
        <url>http://kerkness.ca/wiki/lib/images/favicon.ico</url>
    </image>
    <item rdf:about="http://kerkness.ca/wiki/doku.php?id=how_to_enable_and_configure_the_database_module&amp;rev=1268504647&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2010-03-13T18:24:07+00:00</dc:date>
        <dc:creator>Brian Kessler</dc:creator>
        <title>how_to_enable_and_configure_the_database_module</title>
        <link>http://kerkness.ca/wiki/doku.php?id=how_to_enable_and_configure_the_database_module&amp;rev=1268504647&amp;do=diff</link>
        <description>Kohana 3.0 comes with a robust module to working with databases. By default the database module supports drivers for MySQL and PHP-PDO.

The database module is included with the Kohana 3.0 install but needs to be enabled before you can use it.  In your application/bootstrap.php file modify the call to the Kohana::modules() method to include the database module as in the following example.</description>
    </item>
    <item rdf:about="http://kerkness.ca/wiki/doku.php?id=routing:creating_a_custom_404_page&amp;rev=1268503707&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2010-03-13T18:08:27+00:00</dc:date>
        <dc:creator>Brian Kessler</dc:creator>
        <title>routing:creating_a_custom_404_page</title>
        <link>http://kerkness.ca/wiki/doku.php?id=routing:creating_a_custom_404_page&amp;rev=1268503707&amp;do=diff</link>
        <description>In order to have a custom 404 page in your Kohana application you'll want to try and catch all invalid routes and direct them to a controller/action specifically setup to display a 404 message. The following example route does this.

While most custom routes should be defined before your default route, in this case the catch all should be defined after your default route. (*note: your default route will need to be more specific than the standard default route defined in the unedited application …</description>
    </item>
    <item rdf:about="http://kerkness.ca/wiki/doku.php?id=orm&amp;rev=1267790624&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2010-03-05T12:03:44+00:00</dc:date>
        <dc:creator>Joel Pittet</dc:creator>
        <title>orm - ORM::validate($_POST, $save = TRUE)  doesn't take args in KO3</title>
        <link>http://kerkness.ca/wiki/doku.php?id=orm&amp;rev=1267790624&amp;do=diff</link>
        <description>Object Relational Mapping (ORM) allows manipulation and control of data within a database as though it was a PHP object. Once you define the relationships ORM allows you to pull data from your database, manipulate the data in any way you like and then save the result back to the database without the use of SQL. By creating relationships between models that follow convention over configuration, much of the repetition of writing queries to create, read, update and delete information from the datab…</description>
    </item>
    <item rdf:about="http://kerkness.ca/wiki/doku.php?id=how_to_create_a_file_upload_field&amp;rev=1267712086&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2010-03-04T14:14:46+00:00</dc:date>
        <dc:creator>Jeremy Lindblom</dc:creator>
        <title>how_to_create_a_file_upload_field</title>
        <link>http://kerkness.ca/wiki/doku.php?id=how_to_create_a_file_upload_field&amp;rev=1267712086&amp;do=diff</link>
        <description>The Form::file() method works exactly the same as the Form::input() method except that it automatically sets the type attribute to file and it doesn't accept a value parameter.

  echo Form::file('name');  &lt;input type=&quot;file&quot; name=&quot;name&quot; /&gt;

The second parameter accepts an array of attributes</description>
    </item>
    <item rdf:about="http://kerkness.ca/wiki/doku.php?id=start&amp;rev=1267694179&amp;do=diff">
        <dc:format>text/html</dc:format>
        <dc:date>2010-03-04T09:16:19+00:00</dc:date>
        <dc:creator>Johan</dc:creator>
        <title>start - added two new dealtaker tuts</title>
        <link>http://kerkness.ca/wiki/doku.php?id=start&amp;rev=1267694179&amp;do=diff</link>
        <description>Kohana is a PHP 5 framework that uses the Model View Controller architectural pattern. It aims to be secure, lightweight, and easy to use.


	*  Kohana Userguide
	*  API Documentation
	*  Kohana Forums
	*  GitHub Repository
	*  Redmine Project Page
	*  The official Mailing List : Subscribe by sending an email to kohana@librelist.com</description>
    </item>
</rdf:RDF>
