The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
17 views

equivalent function for $this->_ci_cached_vars in CI Helpers

I'm creating a custom helper in codeigniter. There is an instance where I check if certain parameter is passed to view. In view, i can get all the passed variables by using this function: ...
0
votes
1answer
110 views

PHP Code Igniter Ion Auth - Can't successfully create a new tier of user

I'm rather new at CodeIgniter and especially Ion Auth. I'm building a website which will have three tiers of user: User, Moderator and Admin. My aim is to use this code snippet: if ...
0
votes
1answer
92 views

PHP CodeIgniter Ion Auth Creating a New Group

I am building a website and am new to Codeigniter and Ion Auth. My website consists of three tiers of user: regular user, moderator and admin. I understand is_admin and is_logged in, but can't figure ...
0
votes
2answers
34 views

Which is better in codeigniter? Adding a function in a helper or adding a function in an extended base class

In a codeigniter project i have to do some set of stuff in one than one controller. I code all that stuff in a function and now i need to call whenever necessary. i think Writing this function in ...
0
votes
1answer
208 views

CodeIgniter: How to add css link tag to the head of html page from within a helper

I've got a helper method which renders some html along with the required css and js links. I am simply concatenating all the html tags and returning the built string. The helper method is something ...
53
votes
5answers
34k views

CodeIgniter: Create new helper?

I need to loop lot of arrays in different ways and display it in a page. The arrays are generated by a module class. I know that its better not to include functions on 'views' and I want to know where ...