Forums / Code Collaboration / How can I track down function definitions??

How can I track down function definitions??

Results 1 to 4 of 4
18 Dec 2012, 19:52
#1
tcarden avatar

tcarden

Zen Follower

Join Date:
Oct 2012
Posts:
282
Plugin Contributions:
0

How can I track down function definitions??

Hey Everyone,
i'm a mid-level (read Junior!) PHP Developer. I'd very much like to get under the hood as much as possible. i wondering if anyone can give me advice on how I can track down, find and modify function definitions that are used through out the ZenCart framework.

I really need to do this and would sincerely appreciate help on this!,

thanks so much

Tom
18 Dec 2012, 20:30
#2
kobra avatar

kobra

Black Belt

Join Date:
Aug 2005
Posts:
31,500
Plugin Contributions:
4

Re: How can I track down function definitions??

Check the wiki
18 Dec 2012, 22:50
#3
drbyte avatar

drbyte

Sensei

Join Date:
Jan 2004
Posts:
63,506
Plugin Contributions:
173

Re: How can I track down function definitions??

The majority of functions are defined in files contained in the /includes/functions/ folder. And the majority of classes are defined in files contained in the /includes/classes/ folder.

If you're using an integrated development environment (IDE) such as Aptana or Eclipse or phpStorm, you'll find that the search capability will save you tons of time and let you find the function you seek quite easily. While not really designed for PHP, Dreamweaver is almost next in line after those I just mentioned. http://www.zen-cart.com/wiki/index.php/Useful_Tools
18 Dec 2012, 23:09
#4
tcarden avatar

tcarden

Zen Follower

Join Date:
Oct 2012
Posts:
282
Plugin Contributions:
0

Re: How can I track down function definitions??

thank you all, very helpful