Kohana
Developer(s)Kohana Software Foundation[1]
Stable release
2.2.0 / August 8, 2008 (2008-08-08)
Written inPHP
Operating systemCross-platform
TypeWeb application framework
LicenseBSD-style open source license
Websitehttp://kohanaphp.com

Kohana is an open source, PHP5, web application framework that uses the Model View Controller architectural pattern. It aims to be secure, lightweight, and easy to use.[2]

History edit

Kohana was originally created as a project fork of the CodeIgniter PHP framework under the name Blue Flame. The principal reason for the fork was to create a more community-based web application framework as many users were frustrated with CodeIgniter's lack of bug fixes and inclusion of new features requested by the community. In July 2007, Blue Flame was renamed to Kohana to avoid possible copyright issues[3]. The name Kohana was chosen when the developers began looking through Native American dictionaries to find words that would have little copyright conflict. Kohana is the Sioux word for 'swift.' It is also the Japanese word for 'tiny flower', Ukrainian word for 'beloved' (only of feminine gender) and the name of a famous killer whale (Kohana)--none of which have any relation to the original intended meaning.

While the initial release of Kohana was essentially an improved version of CodeIgniter, by the end of 2007 the Kohana development team had released version 2.0 which was a complete re-write from the ground up. The new version 2.0 was strictly a PHP5 framework and has formed the basis for all other releases since.

Differences between Kohana and CodeIgniter edit

 
Cascading resources visualized.
  • Strict PHP5 OOP. Offers many benefits: visibility protection, automatic class loading, overloading, interfaces, abstracts, and singletons.[4]
  • Kohana has joined the GoPHP5 initiative. All releases from 2.2 on will conform with this project.[4]
  • Continues CodeIgniter design patterns. Anyone who has used CodeIgniter will quickly understand Kohana's structure and design patterns.[4]
  • Community, not company, driven. Kohana is driven by community discussion, ideas, and code. Kohana developers are from all around the world, each with their own talents. This allows a rapid and flexible development cycle that can respond to bugs and requests within hours, instead of days or months.[4]
  • GET, POST, COOKIE, and SESSION arrays all work as expected. Kohana does not limit your access to global data, but offers the same filtering and XSS protection that CodeIgniter does.[4]
  • Cascading resources, modules, and inheritance. Controllers, models, libraries, helpers, and views can be loaded from any location within your system, application, or module paths. Configuration options are inherited and can by dynamically overwritten by each application.[4]
  • No namespace conflicts. Class suffixes, like _Controller, are used to prevent namespace conflicts. This allows a User's controller and Users model to both be loaded at the same time.[4]
  • True auto-loading of classes. This includes libraries, controllers, models, and helpers. This is not pre-loading, but true dynamic loading of classes, as they are instantiated.[4]
  • Helpers are static classes, not functions. For example, instead of using form_open(), you would use form::open().[4]
  • Library drivers and API consistency. Libraries can use different "drivers" to handle different external APIs transparently. For example, multiple session storage options are available (database, cookie, and native), but the same interface is used for all of them. This allows new drivers to be developed for existing libraries, which keeps the API consistent and transparent.[4]
  • Powerful event handler. Kohana events can by dynamically added to, replaced, or even removed completely. This allows many changes to Kohana execution process, without modification to existing system code.[4]

Features edit

  • Uses the MVC pattern
  • UTF-8 compatible
  • Loosely-coupled architecture

In addition, Kohana aims to be secure, lightweight, have a short learning curve, and to be easily extended.

Technology edit

  • Strict PHP5 OOP
  • Simple database abstraction using SQL drivers
  • Multiple library drivers (Session, Database, Payment) for a consistent API
  • Powerful event handler allows small modifications dynamically

Third-party vendors edit

Vendor Usage Inclusion
phputf8 All of the Kohana UTF-8 functions are ported from the phputf8 project[5] Core
Popoon The default XSS filter used by Kohana was originally created by Christian Stocker for the popoon framework. The original file is called externalinput.php[5] Core
HTML Purifier The alternative XSS filter used by Kohana is HTML Purifier[5] Optional
SwiftMailer The recommended way to send emails in Kohana is using SwiftMailer[5] Optional
PHP Markdown Markdown is a simple text-to-HTML formatting tool[5] Optional

Release history edit

Colour Meaning
Red Old release; not supported
Yellow Old release; still supported
Green Current release
Blue Future release
Product Name Major Version Code Name Minor Version Release Date Significant Changes
BlueFlame 1.0 1.0 2007-05-31[6]
  • Initial release
  • Forked from CodeIgniter 1.5.4 (pre-release, svn revision 566)[6]
Kohana 2.0 Superlime 2.0 2007-11-08[7]
  • Complete rewrite[7]
  • Dropped PHP4 support in favour of PHP5[3]
  • Fully OOP framework[3]
  • No legacy code[3]
  • Modules included[3]
  • Cascading resources concept[3]
2.1 Schneefeier 2.1.0 2008-02-05[7]
  • New libraries: Cache, Image, ORM, Payment
  • New helpers: num, expires, email, html::link(), html::breadcrumb(), arr::binary_search(), valid::standard_text(), text::widont();
  • New modules: Auth & Forge; PostgreSQL & MySQLi drivers
  • gzip output compression, bug fixes & API changes[8]
2.1.1 2008-02-06[7]
  • Fixed bug with extending helpers
  • Added English (UK), German and Macedonian languages[9]
2.1.2 2008-06-10
  • Added: KOHANA_IS_WIN constant for checking for a Windows environment
  • Fixed: Lots of bugfixes[10]
2.2 Efímera 2.2.0 2008-08-08
  • New libraries (Captcha)
  • New helpers (upload, format, etc.)
  • New configuration attributes,
  • New drivers (MSSQL, PayPal Pro)
  • General cleanup, optimization and bug fixes

[11]

2.3 Kernachtig 2.3.0 2009
  • New Router
  • New Database library (object_db)

See also edit

References edit

  1. ^ Developers - Kohana - Trac
  2. ^ overview [Kohana User Guide]
  3. ^ a b c d e f overview:history [Kohana User Guide]
  4. ^ a b c d e f g h i j k "Frequently Asked Questions". Retrieved 2007-11-25. {{cite web}}: Text "Ubuntu" ignored (help)
  5. ^ a b c d e overview:credits [Kohana User Guide]
  6. ^ a b BlueFlame 1.0 Released! | CodeIgniter Forums
  7. ^ a b c d changelog [Kohana User Guide]
  8. ^ changelog:2.1 [Kohana User Guide]
  9. ^ changelog:2.1.1 [Kohana User Guide]
  10. ^ changelog:2.1.2 [Kohana User Guide]
  11. ^ changelog:2.2 [Kohana User Guide]

External links edit

ru:Kohana (Web Framework)