Tag: implementation

  • Codeigniter-Doctrine migration from Windows to Linux

    Before I begin, Codeigniter is a php framework that implements the Model-View-Controller design architecture. Doctrine is an Object Relational Mapper and a powerful Database Abstraction Layer built on top of php. Doctrine handles all, if not most, database commands such as create, read, update and delete. I have first started working with Doctrine and Kohana…

  • Roles Management Module

    Recently Ive been working on some systems that require several user types, Ill call them roles. Roles are essential to most applications because for one, youll want to have a hierarchy of users and what they can do in the system. Im sure most developers have already implemented this in some systems they develop. One…