Welcome Guest, Not a member yet? Register   Sign In
netbeans PHP include path
#5

[eluser]yudi_set[/eluser]
Hi,

I'm a newbie to PHP and CodeIginiter.
Code-completion is something that really helps me when learning CodeIgniter.

I just read an article on NB4PHP developer blog (http://blogs.sun.com/netbeansphp/entry/f...de_insight).
It refers to an article written for CakePHP.
But the principles apply to CodeIginter, too.

For example, I put it this way in a contoller :
<?php
/**
* @property CI_Loader $load
* @property CI_Form_validation $form_validation
* @property CI_Input $input
* @property CI_Email $email
*
*/
class Form extends Controller
{
function index()
{
$this->load->helper(array('date','form'));
$this->load->library(array('email','form_validation'));

//Validaton rules
$this->form_validation->set_error_delimiters('<div class="error">', '</div>');
$this->form_validation->set_rules('member_no','Member Number','trim|required|numeric');
....
}
}

So, when we type $this-> it will offer load in the code-completion.
And when we type $this->load-> will offer all functions from the CI_Loader class.

Hope the info helps.


Messages In This Thread
netbeans PHP include path - by El Forum - 10-17-2008, 08:12 AM
netbeans PHP include path - by El Forum - 10-17-2008, 01:33 PM
netbeans PHP include path - by El Forum - 10-20-2008, 12:21 AM
netbeans PHP include path - by El Forum - 10-21-2008, 10:34 AM
netbeans PHP include path - by El Forum - 01-23-2009, 12:43 AM
netbeans PHP include path - by El Forum - 01-23-2009, 06:38 AM
netbeans PHP include path - by El Forum - 01-23-2009, 07:58 AM
netbeans PHP include path - by El Forum - 01-23-2009, 08:57 AM
netbeans PHP include path - by El Forum - 01-23-2009, 09:11 AM
netbeans PHP include path - by El Forum - 01-23-2009, 10:05 AM
netbeans PHP include path - by El Forum - 01-27-2009, 02:06 AM
netbeans PHP include path - by El Forum - 06-18-2009, 05:18 AM
netbeans PHP include path - by El Forum - 06-18-2009, 08:57 AM
netbeans PHP include path - by El Forum - 08-31-2009, 11:03 PM
netbeans PHP include path - by El Forum - 09-01-2009, 02:13 AM
netbeans PHP include path - by El Forum - 09-04-2009, 12:06 AM
netbeans PHP include path - by El Forum - 09-04-2009, 02:39 AM
netbeans PHP include path - by El Forum - 02-10-2010, 03:15 AM
netbeans PHP include path - by El Forum - 05-24-2010, 12:55 AM
netbeans PHP include path - by El Forum - 06-30-2010, 04:38 AM
netbeans PHP include path - by El Forum - 09-20-2010, 03:25 AM
netbeans PHP include path - by El Forum - 09-29-2010, 04:59 AM



Theme © iAndrew 2016 - Forum software by © MyBB