This would be my first time using PhpEd for such a large project. I am currently using an array of items defined as a new instance of a custom class, and would benefit greatly from having code completion work for this implementation and was wondering what i can do to make it work
scenario:
File
a.php has a function:
class cms_site
{
var $GRIDS = array();
function load_grid($grid_name)
{
$this->GRIDS[$grid_name] = new grid_config($grid_name);
}
}
$SITE = new cms_site();
|
File
b.php has a statement like:
$SITE->load_grid('GRID-DEV-MENUS'); |
Elsewhere I am looking for code insight/completion to work when doing something such as:
$SITE->GRIDS['GRID-DEV-MENUS']-> | |
... any assistance appreciated.