Jump to content

CodeIgniter: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
Line 39: Line 39:


==Popularity==
==Popularity==
CodeIgniters is loosely based on the popular [[model–view–controller]] (MVC) development pattern. While controller classes are a necessary part of development under CodeIgniter, models and views are optional.<ref>{{cite web|url=http://www.codeigniter.com/user_guide/general/models.html|title=CodeIgniter User Guide: Models |publisher=CodeIgniter.com |accessdate=2015-02-03}}</ref> Codeigniter can be also modified to use Hierarchical Model View Controller (HMVC<ref>{{Cite web|url=https://bitbucket.org/wiredesignz/codeigniter-modular-extensions-hmvc|title=wiredesignz / codeigniter-modular-extensions-hmvc — Bitbucket|website=bitbucket.org|access-date=2016-05-05}}</ref>) which allows developers to maintain modular grouping of Controller, Models and View arranged in a sub-directory format.
CodeIgniter is loosely based on the popular [[model–view–controller]] (MVC) development pattern. While controller classes are a necessary part of development under CodeIgniter, models and views are optional.<ref>{{cite web|url=http://www.codeigniter.com/user_guide/general/models.html|title=CodeIgniter User Guide: Models |publisher=CodeIgniter.com |accessdate=2015-02-03}}</ref> Codeigniter can be also modified to use Hierarchical Model View Controller (HMVC<ref>{{Cite web|url=https://bitbucket.org/wiredesignz/codeigniter-modular-extensions-hmvc|title=wiredesignz / codeigniter-modular-extensions-hmvc — Bitbucket|website=bitbucket.org|access-date=2016-05-05}}</ref>) which allows developers to maintain modular grouping of Controller, Models and View arranged in a sub-directory format.


CodeIgniter is most often noted for its speed when compared to other PHP frameworks.<ref>{{cite web|url=http://www.tisindia.com/blog/7-best-php-frameworks-2014/ |title=7 Best PHP Frameworks |publisher=TISindia.com |date=2014-02-12}}</ref><ref>{{cite web|url=http://www.sellersrank.com/web-frameworks-benchmarking-results/ |title=PHP Frameworks Benchmarks |publisher=Sellersrank.com |date= |accessdate=2014-08-05}}</ref><ref>{{cite web|url=http://pr0digy.com/codeigniter/benchmark-update-static-cake-codeigniter-kohana/|title=Benchmark update: Cake vs. CodeIgniter vs. Kohana |publisher=Pr0digy.com |date=2008-09-03 |accessdate=2014-08-05}}</ref> In a critical take on PHP frameworks in general, PHP creator [[Rasmus Lerdorf]] spoke at [[Bonn-Rhein-Sieg University of Applied Sciences (BRSU)#FrOSCon|frOSCon]] in August 2008, noting that he liked CodeIgniter "''because it is faster, lighter and the least like a framework.''"<ref>{{cite web|url=http://www.sitepoint.com/rasmus-lerdorf-php-frameworks-think-again/ |title=Rasmus Lerdorf: PHP Frameworks? Think Again |publisher=Sitepoint.com |date=2008-08-29 |accessdate=2014-08-05}}</ref>
CodeIgniter is most often noted for its speed when compared to other PHP frameworks.<ref>{{cite web|url=http://www.tisindia.com/blog/7-best-php-frameworks-2014/ |title=7 Best PHP Frameworks |publisher=TISindia.com |date=2014-02-12}}</ref><ref>{{cite web|url=http://www.sellersrank.com/web-frameworks-benchmarking-results/ |title=PHP Frameworks Benchmarks |publisher=Sellersrank.com |date= |accessdate=2014-08-05}}</ref><ref>{{cite web|url=http://pr0digy.com/codeigniter/benchmark-update-static-cake-codeigniter-kohana/|title=Benchmark update: Cake vs. CodeIgniter vs. Kohana |publisher=Pr0digy.com |date=2008-09-03 |accessdate=2014-08-05}}</ref> In a critical take on PHP frameworks in general, PHP creator [[Rasmus Lerdorf]] spoke at [[Bonn-Rhein-Sieg University of Applied Sciences (BRSU)#FrOSCon|frOSCon]] in August 2008, noting that he liked CodeIgniter "''because it is faster, lighter and the least like a framework.''"<ref>{{cite web|url=http://www.sitepoint.com/rasmus-lerdorf-php-frameworks-think-again/ |title=Rasmus Lerdorf: PHP Frameworks? Think Again |publisher=Sitepoint.com |date=2008-08-29 |accessdate=2014-08-05}}</ref>

Revision as of 17:22, 4 April 2018

CodeIgniter
Original author(s)EllisLab
Developer(s)British Columbia Institute of Technology
Initial releaseFebruary 28, 2006 (2006-02-28)
Stable release
3.1.8[1] / March 23, 2018 (2018-03-23)
Repositoryhttps://github.com/bcit-ci/CodeIgniter
Written inPHP
Operating systemCross-platform
PlatformPHP 5.6.0+[2]
TypeWeb framework
LicenseMIT License
Websitecodeigniter.com Edit this at Wikidata

CodeIgniter is an open-source software rapid development web framework, for use in building dynamic web sites with PHP.

Popularity

CodeIgniter is loosely based on the popular model–view–controller (MVC) development pattern. While controller classes are a necessary part of development under CodeIgniter, models and views are optional.[3] Codeigniter can be also modified to use Hierarchical Model View Controller (HMVC[4]) which allows developers to maintain modular grouping of Controller, Models and View arranged in a sub-directory format.

CodeIgniter is most often noted for its speed when compared to other PHP frameworks.[5][6][7] In a critical take on PHP frameworks in general, PHP creator Rasmus Lerdorf spoke at frOSCon in August 2008, noting that he liked CodeIgniter "because it is faster, lighter and the least like a framework."[8]

Source code and license

CodeIgniter's source code is maintained at GitHub,[9] and as of the preview version 3.0rc, is certified open source software licensed with the MIT License. Versions of CodeIgniter prior to 3.0.0 are licensed under a proprietary Apache/BSD-style open source license.[10] Google is also listed it very well

A 2011 decision to switch licensing to the Open Software License (OSL) sparked some community controversy,[11] especially about the GPL incompatibility of the new license, to which EllisLab has responded with a series of articles entitled Software License Awareness Week.[12]

History

The first public version of CodeIgniter was released by EllisLab on February 28, 2006.[13]

On July 9, 2013, EllisLab announced that it was seeking a new owner for CodeIgniter, citing a lack of resources to give the framework the attention they felt it deserved.[14] On October 6, 2014, EllisLab announced that CodeIgniter would continue development under the stewardship of the British Columbia Institute of Technology.[15]

See also

References

  1. ^ "CodeIgniter 3.1.8 Released". codeigniter.com. Retrieved 23 March 2018.
  2. ^ https://www.codeigniter.com/user_guide/general/requirements.html
  3. ^ "CodeIgniter User Guide: Models". CodeIgniter.com. Retrieved 2015-02-03.
  4. ^ "wiredesignz / codeigniter-modular-extensions-hmvc — Bitbucket". bitbucket.org. Retrieved 2016-05-05.
  5. ^ "7 Best PHP Frameworks". TISindia.com. 2014-02-12.
  6. ^ "PHP Frameworks Benchmarks". Sellersrank.com. Retrieved 2014-08-05.
  7. ^ "Benchmark update: Cake vs. CodeIgniter vs. Kohana". Pr0digy.com. 2008-09-03. Retrieved 2014-08-05.
  8. ^ "Rasmus Lerdorf: PHP Frameworks? Think Again". Sitepoint.com. 2008-08-29. Retrieved 2014-08-05.
  9. ^ "bcit-ci/CodeIgniter · GitHub". Retrieved 2015-02-03.
  10. ^ "CodeIgniter License Agreement". CodeIgniter.com. Retrieved 2016-02-28.
  11. ^ "CodeIgniter changes license to OSL 3.0?". CodeIgniter.com Forum. 2011-10-21. Retrieved 2014-08-05.
  12. ^ "Software License Awareness Week". EllisLab.com. 2011-10-31. Retrieved 2012-12-28.
  13. ^ "CodeIgniter User Guide: Change Log". CodeIgniter.com. Retrieved 2016-03-21.
  14. ^ EllisLab Seeking New Owner for CodeIgniter
  15. ^ "Your Favorite PHP Framework, CodeIgniter, Has a New Home". EllisLab Blog. EllisLab. Retrieved 16 October 2014.