Where to find helpbutton function

Where to find helpbutton function

by tommy wonkium -
Number of replies: 4
Im looking for the file that contains the function helpbutton(). Anyone know where I can find it?
Average of ratings: -
In reply to tommy wonkium

Re: Where to find helpbutton function

by Tim Hunt -
Picture of Core developers Picture of Documentation writers Picture of Particularly helpful Moodlers Picture of Peer reviewers Picture of Plugin developers
from the command line:

grep -R 'function helpbutton' moodle/*

from Eclipse, Search -> Find in files. For other good editors, use the equivalent command.

In this case, it will probably be in lib/weblib.php or lib/moodlelib.php.
In reply to Tim Hunt

Re: Where to find helpbutton function

by tommy wonkium -

I do not have shell access. I tried searching most of the lib/ files but found no function helpbutton.

Does anyone know where it is exactly?

In reply to tommy wonkium

Re: Where to find helpbutton function

by Mauno Korpelainen -

weblib.php

near line 4831

In reply to Mauno Korpelainen

Re: Where to find helpbutton function

by tommy wonkium -

Thank you. Could swear I looked there but I think I was searching for helpbutton( and in weblib.php its helpbutton ( (with the space).

Anyways thanks again!