-
Notifications
You must be signed in to change notification settings - Fork 0
Summary of Resources Libraries Helpers Plugins...
The [url=http://www.codeigniter.com/wiki/]wiki[/url] and [url=http://www.ciforge.com/]CIForge[/url] were a little difficult to navigate.
This is a compilation of community contributed resources. Most of the text is stolen from other contributors [url=http://www.codeigniter.com/wiki/]wiki[/url]/[url=http://www.ciforge.com/]CIForge[/url]/[url=http://www.derekallard.com/blog/category/codeigniter/P10/]Derek Allard Blog[/url]/etc).
Current list only includes the wiki and CIForge. Might be good to post links to contributions posted in the forums as well.
[size=6][b] LIBRARIES [/b][/size]
Library: [url=http://www.rapyd.com/]Rapyd Library[/url] Rapyd is a set of components/classes that can help to develop CI applications "rapidly". It has data presentation components (grids, tables) and data editing components (forms, filters, cruds). Rapyd is thought to build CMS, and to build a CRUD is easy, you need to join two or three components. Felix built this contribution up so much that it grew from its humble wiki entry, into its own website!
[color=purple][b][i] User Management [/i][/b][/color]
Library: [url=http://www.tomcode.com/inside/code-igniter/userauth/userauth_0.9.2t52]UserAuth Mini-App[/url] Simple useage, User Management System. Access Control List (ACL) Groups. Role based system, definable in config file “Remember Me” with db backed cookies. User/Group Administration Management. UI, Tables and Forms are multi-lingual. Configurable, Inactive Login Expiration. Auto-install of required db tables. Supports table prefixes for db. [url=http://www.codeigniter.com/forums/viewreply/232047]Forum[/url]
Library: [url=http://www.ciforge.com/projects/freakauth]FreakAuth[/url] FreakAuth is a library to secure your application. It performs: - user login/logout - user registration - reset password - change password - website reserved areas locking. Along with these basic functionnalities, Freakauth is a backend administration application to manage users (roles, profiles...). [url=http://codeigniter.com/forums/viewthread/51699/]Forum[/url]
Library: [url=http://www.codeigniter.com/wiki/sentry/]Sentry[/url] A simple security system written by thzero and actively discussed on the forums. Sentry is perfect for those mid-size applications that need a functional user authentication system but don't really warrant building your own. It is practically plug and play, and when combined with hooks is a very quick and easy authentication system. Sentry discussion in the forums says that the project is no longer being developed and that no one can get it to work with the newest release of CI. The auth project seems to fork sentry though and claims to work in 1.5. That might be the best direction.
Library: [url=http://codeigniter.com/wiki/auth/]Auth[/url] The user authorization system that handles login and registration of users based on the Sentry-system.(yes it is the modified Sentry. this one is working on CI 1.5.0.1 and higher) It uses a configuration database table to store user information and stores minimal information in the session. Features: Login/logout functionality, Registration, with activation, Forgotten password reset, Auto-login via cookie, Support for multiple languages.
Library: [url=http://codeigniter.com/wiki/Simplelogin/] Simplelogin [/url] Simplelogin is designed to give you a quick and simple login library that will get you up and running with an unobtrusive authorization system very quickly. It does not try to guess how you want to structure your app, it simply tries to give you a little help. Feel free to edit it in any way to suit your needs. It is designed to help if you need it; otherwise, it stays out of your way. [url=http://codeigniter.com/forums/viewthread/51095/] Forum[/url]
Library: [url=http://codeigniter.com/wiki/Simple_Authorization_Lib/] Simple Authorization Lib [/url]
[color=purple][b][i] Session Libraries [/i][/b][/color]
Sessions form the backbone of nearly every web application you can build. Tracking logins, userinformation, preferences, etc. Code Igniter does come with its own very handy session class, but there are community contributions that make working with sessions even more secure and powerful. There are at least 3 excellent contributions in the session management realm.
Library: [url=http://www.codeigniter.com/wiki/Native_session/] Native Session [/url] A "go to" session management library. Nice work, and thanks Seele! A favourite feature? "Flashdata"; you can set the session attribute that will persist only for the next request.
Library: [url=http://www.codeigniter.com/wiki/DB_Session/] DB Session [/url] This library provides a session class that stores session variables in a database. Code Igniter bundles a session class, working with cookies. Unfortunately, this class stores session data directly inside the cookie, thus allowing the client to see and edit those data. Here is a replacement class that stores data in the database.
Library: [url=http://codeigniter.com/wiki/OB_Session/] OB Session [/url] An attempt to provide the best of all possible session worlds. By Oscar Bajner. This replacement class for Code Igniter session library borrows from ideas presented in Native session and DB session. It attempts to retain all the benefits of the original CI implementation, adding the best features from other libs and adds several enhancements. [url=http://codeigniter.com/forums/viewthread/49253/]Forum[/url]
Library: [url=http://www.codeigniter.com/wiki/PHPSession/] PHPsession [/url] This is a session library that uses native PHP sessions. It stores data server-side, instead of client-side (like regular CI sessions). This library also supports ‘flash’ variables, as described in this [url=http://codeigniter.com/forums/viewthread/45062/]forum thread[/url]. These let you set a variable that will only exist for one page load, then be automatically destroyed (unless you specify you want to keep them for one more load). Useful for passing variables from one page to the next (ie, error messages) without having to do anything in the URL.
Library: [url=http://www.codeigniter.com/wiki/PHPSession/] Yet another session library [/url] [url=http://codeigniter.com/forums/viewthread/52747/] Forum [/url]
[color=purple][b][i] Filters [/i][/b][/color]
Library: [url=http://www.codeigniter.com/wiki/Filters_system//] Filters System [/url] Filters allow you to execute code before, after or around a controller; modifying a controllers execution path without modifying the controller itself. Filters permit customization of an application to specific deployment requirements using CI hooks. Useful for for authentication, data cleanup, and other assorted and sundry uses. It also seems to be one of those features that other frameworks use and is a commonly requested feature.
[color=purple][b][i] XML, DOM, AJAX[/i][/b][/color]
Library: [url=http://www.ciforge.com/projects/libxtm] XML Topic Maps [/url] A flexible set of libraries, one abstracting the native PHP dom functions (for ease of use), and another abstracting that class utilizing hard-coded node naming conventions standardized in the www.topicmaps.org XTM DTD - with higher level attribute and value control given to the user. Use of these libraries is near to impossible unless you know what Topic Maps are, and also how the XTM specification is used/structured. This is PHP5 ONLY at the moment.
Libray: [url=http://codeigniter.com/wiki/Xml_Library/] Xml Library [/url] The XML library is an XML parser. It currently has limited features, and is more of a helper library.
Library: [url=http://codeigniter.com/wiki/DOM_library/] DOM library [/url] DOMLib was built to ease the use of the PHP DOM object.
Library: [url=http://codeigniter.com/wiki/AJAX_for_CodeIgniter/] AJAX for CodeIgniter [/url] AJAX for CodeIgniter is a CodeIgniter library that provides you with AJAX functionality for your CodeIgniter web applications. It comes with simple to use AJAX helpers that you can directly put in use in your apps. AJAX for CodeIgniter includes both Prototype and Scriptaculous helpers. Compatible with CodeIgniter 1.5.1.
Library: [url=http://codeigniter.com/wiki/XAJAX/] XAJAX [/url] Xajax is an AJAX library for PHP that allows you to create AJAX functionality without writing javascript. It’s very functional and fairly simple to use.
Library: [url=http://codeigniter.com/wiki/TinyAjax/] TinyAjax [/url] TinyAjax is a small php5 library that allows you to easily add AJAX-functionality to existing pages and create new AJAX-enabled pages with just a few lines of code.
Library: [url=http://codeigniter.com/wiki/Using_CI_yuiyui-ext_and_MySQL_for_Ajax_Development/] YUI [/url] Demonstrates using a combination of tools to build a website. Addresses some questions about how to use YUI javascript frameworks with CI. Includes several custom libraries and helpers.
Library: [url=http://codeigniter.com/wiki/jQuery/] jQuery [/url] For fancy Web 2.0 stuff using [url=http://www.jquery.com/] jQuery [/url]. It’s lean, it’s easy, it’s fast and it’s fun. To speed up production uses a jquery class. It’s far from complete, probably has bugs, error handling broke but posted anyway. Knowledge of jQuery is necessary to work with it, it might be helpful for some. Using http://www.visualjquery.com/index.xml is very much recommended, the jquery API is on it.
[color=purple][b][i] Forms [/i][/b][/color]
Library: [url=http://wgilk.com/code/ci/forge/] FORGE: Form Generation Library [/url] Library: [http://codeigniter.com/forums/viewthread/49484/] Forum[/url]
Library: [url=http://codeigniter.com/wiki/Form_Library/] Form Library [/url] The Form library is a complete replacement for the Form helper. It reads an XML document and converts it to an array (via the Xml Library).
Library: [url=http://codeigniter.com/wiki/Generate_a_form_from_a_DB_table/] Generate a form from a DB table [/url] Generate a form from a DB table As is, this depends on XAJAX CI library. If you just want to produce forms based on DB tables then use the “_formBuilder” function by itself by commenting-out/removing one line of code for it to be independent (there is a comment beside the line in the code below). [url=http://codeigniter.com/forums/viewthread/50443/] Forum [/url]
Library: [url=http://codeigniter.com/wiki/Form_Generation/] Form Generation [/url] Form Generation Class integrates the native form helper (with two added functions) and the validation library. It uses Code Igniter 1.5.x.
Library: [url=http://codeigniter.com/wiki/FormDate/] Formdate [/url] FormDate is a class that creates select and option tags for date and time elements. It relies on the form helpers form_dropdown function. The [url=http://codeigniter.com/forums/viewthread/45356/]forum [/url] thread were it all started.
[color=purple][b][i] Paypal [/i][/b][/color]
Library: [url=http://www.ciforge.com/projects/phppaypalpro] phppaypalpro integration library [/url] very light wrapper implemented as library around phppaypalpro, also at [url=http://phppaypalpro.sourceforge.net/] sourceforge [/url]
Library: [url=http://codeigniter.com/wiki/PayPal_Lib/] PayPal Lib [/url] This library provides a neat and simple method to interface with paypal and the paypal Instant Payment Notification (IPN) interface. Also on [url=http://www.ciforge.com/projects/paypallib]CIForge[/url].
Library: [url=http://www.ciforge.com/projects/paypal-ipn-library] Paypal IPN Library [/url] A complete Paypal IPN library. The library is complete, I am just getting it ready for public consumption. More details to follow...
[color=purple][b][i] Charting / Graphing [/i][/b][/color]
Library: [url=http://www.ciforge.com/projects/graphing] Graphing [/url] Simple graphing library for code igniter
Library: [url=http://codeigniter.com/wiki/Charting/] Panaci: A Charting Library [/url] If your application needs to output graphic charts at run-time, such as bar, line area, step or impulse charts, then Panaci makes this rather easy. It utilises the Panachart charting class released under the GPL by Eugen Fernea. PanaChart is a PHP class for online charts creation using PHP scripting language and the GD image manipulation library. It makes it easy to plot several types of charts with less then 10 lines of code. PanaChart is suited for any scientific or business web application. I needed a graphing library in my most recent project, and Panachart library worked out beautifully. Thanks go to Oscar Bajner for doing this up and making it available.
Library: [url=http://www.codeigniter.com/wiki/3d-pie-chart/]3D Pie chart library [/url]. Craig's adaptation of an excellent and elegant 3D Pie chart library.
Library: [url=http://codeigniter.com/wiki/JP_Graph/] JP Graph [/url] A brief summary of how to integrate the JpGraph charting library with CodeIgniter. JpGraph is a comprehensive charting package with support for over 15 chart types.
Library: [url=http://codeigniter.com/wiki/Google_Maps/] Google Maps [/url] Reference for how to implement a google maps api library into CI.
Library: [url=http://codeigniter.com/wiki/layout_library/] layout library [/url] A cake-like layout/view system.
[color=purple][b][i] Templates [/i][/b][/color]
Library: (Yet Another Template System) [url=http://codeigniter.com/wiki/Yet_Another_Template_System/] YATS [/url] YATS is a template system designed as a library with helper functions for Code Igniter 1.5. This library was designed after the CI philosophies—it’s lean and straight forward. After installing YATS you’ll see how easy is to create and edit templates for your projects!
Library: [url=http://codeigniter.com/wiki/TinyButStrong_Template_Engine/] TinyButStrong [/url] This is a template library that wraps around TinyButStrong.
Library: [url=http://www.ciforge.com/projects/catalystmodel] Catalyst Model [/url] An extension to the CI Model class that provides some functionality similar to what can be found in Django and Rails (among others).
Library: [url=http://codeigniter.com/forums/viewthread/52211/] Simple view library[/url] A way to build a page with the least amount of code necessary but flexible enough to use it for every site.[url=http://codeigniter.com/forums/viewthread/52211/] Forum[/url]
[color=purple][b][i] Database [/i][/b][/color]
Library: [url=http://www.ciforge.com/projects/adodb] ADODB [/url] A CodeIgniter interface to the ADODB library
Library: [url=http://codeigniter.com/forums/viewthread/51495/] ORM - Object Relational Mapper [/url] In short, it maps your database tables and fields with their relationships to programming objects. [url=http://codeigniter.com/forums/viewthread/51495/]Forum[/url]
Library: [url=http://codeigniter.com/wiki/FilemakerPro_Database_Integration/] Filemaker [/url] A CodeIgniter interface to the Filemaker FX.php library
[color=purple][b][i] Email [/i][/b][/color]
Library: [url=http://www.codeigniter.com/wiki/Richmail/] Richmail [/url] This library extends the Email library, adds the ability to take images and add them as inline attachments. It also made some performance improvements. If you build an email application, you can see how these are sorely needed. The richmail project has so much potential. Unfortunately it hasn't evolved much since its inception, and won't work without some heavy hacking.
Library: [url=http://codeigniter.com/wiki/CI_SWIFT_MAILER/] CI SWIFT MAILER [/url] A solution for using SWIFT MAILER library with CI.
[color=purple][b][i] Pagination [/i][/b][/color]
Library: [url=http://codeigniter.com/wiki/Alternate_Pagination_class/] Alternate Pagination Library [/url] An Alternate CI Pagination Library. This alternate pagination lib (Requires PHP5) uses page numbers in the URI as opposed to the offsets used by the stock class. Where the default CI class returns a html string, this class returns an array to be formatted by your own templates or views.
Library: [url=http://codeigniter.com/wiki/Digg_Style_Pagination/] Digg Style Pagination Library [/url] Library to produce digg-style pagination.
[color=purple][b][i] Miscellaneous [/i][/b][/color]
Library: [url=http://codeigniter.com/wiki/Language_Selection/] Language Selection [/url] This package allows you to select the national language of your web site. The initial language is determined from the browser’s language list as available to PHP as the $_SERVER[’HTTP_ACCEPT_LANGUAGE’] value. This list should reflect the language preferences of the user. The entries of the browser’s list usually are predefined by the language variant of the browser, but the user can modify this list if he or she likes to read web content in various languages. [url=http://codeigniter.com/forums/viewthread/49840/] Forum[/url]
Library: [url=http://codeigniter.com/wiki/Unzip/] Unzip [/url] This class allows programmer to easily unzip files on the fly. The origial class made by “Alexandre Tedeschi” was modified to a code codeigniter library.
Library: [url=http://codeigniter.com/wiki/dbug/] dbug [/url] How to use phpDump as library for use in CI. PHP Dump is an enhanced version of the var_dump PHP function. It can be used during debugging to quickly output and display many data types, including multi-dimensional arrays and MySQL result sets.
Library: [url=http://codeigniter.com/wiki/captcha/] captcha [/url] An older CI plugin for generating captcha is converted to a library.
Library: [url=http://codeigniter.com/forums/viewthread/51260/] Associative Arrays via $_POST, $_GET, and $_COOKIE [/url] Extends the CI Input and Validation libraries so it now supports associative arrays via post , get and cookie! Now you can read your arrays elements via CI Input methods!
Library: [url=http://codeigniter.com/wiki/Messages/] Message Notification Class [/url] This is a library inpsired by (but not derived from) the [url=http://www.horde.org/] Horde Notification[/url] to enable your scripts to write messages that can be output to the end-user or logged to a file. By default there are 4 message levels: success - a successful event has take place, message - a notification message, warning - a warning about something, error - an error has occurred. [url=http://codeigniter.com/forums/viewthread/52128/]Forum[/url]
[size=6][b] PLUGINS [/b][/size]
[color=purple][b][i] Editor WYSWYG [/i][/b][/color]
Plugin: [url=http://codeigniter.com/wiki/FCKeditor/] FCKeditor [/url] Incorporate the FCKeditor using Code Igniter’s 1.4x Libraries.
Plugin: [url=http://codeigniter.com/wiki/SPAW/] SPAW [/url] SPAW is a very powerful and easy to use visual editor that I like to use in my applications. I wanted to keep it flowing with the rest of my CI app by using the loader class to load it (instead of including it at strange places in my views), so I turned it into a custom library which can be loaded.
[url=http://codeigniter.com/forums/viewthread/53053/]Forum[/url]
[color=purple][b][i] PDF [/i][/b][/color]
Plugin: [url=http://www.codeigniter.com/wiki/PDF_generation_using_dompdf/] PDF generation using dompdf plugin [/url] I needed to be able to generate PDFs on the fly for Bambooinvoice's invoice export. There are a few choices out there, and I played with most of them. FPDF was nice, but I found the syntax to onerous to be practical (I want users to be able to control the look of their PDFs, and with FPDF they’d essentially need to learn a new language). After much searching, I hit upon dompdf. EXCELLENT! Decent support for what I needed to do, and has decent (not great) support for many CSS styles and XHTML. Please note, that it is PHP 5 only.
Plugin: [url=http://codeigniter.com/forums/viewthread/51979/] htmldoc [/url] Snags on dompdf? Use a plugin for mediawiki by Thomas Hempel that relies on htmldoc…
[color=purple][b][i] Forms [/i][/b][/color]
Plugin: [url=http://www.ciforge.com/projects/quickmodel] QuickModel [/url] A model class that uses PEAR's HTML_Quickform to generate forms and the associated CRUD (create, update, delete) operations to connect them to a database (either CI database, or ADODB). Think of it as scaffolding on steroids.
[color=purple][b][i] Excel [/i][/b][/color]
Plugin: [url=http://www.codeigniter.com/wiki/Excel_Plugin/] Excel [/url] If you work with information long enough, you're going to find a need to move it into the format of popular desktop applications. Ability to take arbitrary database results and push them out into CSV format that would get read by Excel.
Library: [url=http://codeigniter.com/wiki/Excel_Reader_Class/] Excel Reader [/url] This library reads an Excel formatted spreadsheet document. Currently it only works with newer versions of Excel but will be made to work with older versions in time.
[size=6][b] HELPERS [/b][/size]
[color=purple][b][i] Forms [/i][/b][/color]
Helper: (FAF) [url=http://www.ciforge.com/projects/formautofill] Form Auto Fill [/url] Form Auto Fill is a helper will populate HTML form elements with values taken from hashed array or object
Helper: [url=http://codeigniter.com/wiki/ObjectForm/] ObjectForm [/url] The form helper provided with CodeIgniter is a good idea to help view creators in managing forms ; for example, the form_dropdown() function is really time and code length improving, but some function prototypes don’t suit me.
[color=purple][b][i] AJAX [/i][/b][/color]
Helper: [url=http://codeigniter.com/wiki/JSON_Helper/] JSON Helper [/url] The JSON helper is a simple interface to the Pear Services_JSON class created by Michal Migurski, Matt Knapp, and Brett Stimmerman. Only two functions exist, json_encode and json_decode. Both functions take one parameter, the data to be encoded/decoded. Once data is encoded, it is decoded in Javascript as so (javascript brackets should be parentheses):
Helper: [url=http://codeigniter.com/wiki/Mootools/] Mootools [/url] A reference article to make it easy to utilize mootools in CI projects.
[color=purple][b][i] Validation [/i][/b][/color]
Helper: [url=http://codeigniter.com/wiki/Useful_helper_function/] hexadecimal validation [/url] Useful for validating hexadecimal value
Collaboration: [url=http://codeigniter.com/wiki/Validation/] Validation[/url] A collaboration to extend the validation library.
[color=purple][b][i] Miscellaneous [/i][/b][/color]
Helper: [url=http://codeigniter.com/wiki/MySQL_DATETIME_Helper/] MySQL DATETIME [/url] A reference describing how to enhance CI’s date helper with MySQL DATETIME / DATE functionality.
Helper: [url=http://codeigniter.com/wiki/BBCode_Helper/] BBCode Helper [/url] Use this helper to parse strings and turn BBCode style tags into basic HTML with settings available to offer protection from reprbate types who post ginourmous images.
Helper: [url=http://www.codeigniter.com/wiki/microformats/] Microformats [/url] Designed for humans first and machines second, microformats are a set of simple, open data formats built upon existing and widely adopted standards. This helper is meant to ease the creation of various well known microformats. So if you ever need to generate microformats on your site, consider using the Microformats plugin. Currently it supports the widely used hCard implementation, and the less widely used (but I needed it) rel="license".
[size=6][b] CORE [/b][/size]
Core: [url=http://www.ciforge.com/projects/filters-system/] Filters system [/url] Filters allow you to execute code before, after or around a controller modifying a controllers execution path without modifying the controller itself . Filters permit customization of an application to specific deployment requirements using CI hooks.
Extending Config: [url=http://codeigniter.com/wiki/Config_Extend_to_Database/] Config Extend to Database[/url] - While looking around for usage and performance examples of application configuration should come from a database or file system. I found an [url=http://weblogs.asp.net/jeff/archive/2006/07/28/Config-versus-Database.aspx]interesting example[/url] between the pros and cons of each. So whipped out the trusty IDE (PHP Eclipse) and whipped up this simple addition to the core of CI.
[size=6][b] MINI-APPLICATIONS[/b][/size]
Mini-Application: [url=http://www.ciforge.com/projects/codecrafter] CodeCrafter [/url] CodeCrafter is a code generator for the Code Igniter framework. One might say, it is a CRUD utility. It will convert your database into ready-to-run CodeIgniter source code.
Mini-Application: [url=http://codeigniter.com/wiki/Fire_Ignition/] Fire Ignition [/url] Fire Ignition allows you to see log messages and special messages on the fly, using Mozilla Firefox. Developed using CI 1.5.3. Probably compatible with CI 1.5.x.