Is there any way to scan a codebase for any TODO’s and generate a list that can be displayed on a standard web page.
E.g.
@todo Deprecated function remove……… (functions.php [Line 12])
This needs to work on a local WAMP server.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
On a Windows platform or if you wanted to use PHP itself, you could use…
I have not tested it, but it should work in theory. 🙂
On *nix, you could use grep…
It’s not perfect (it will find it within strings) but it should be good enough. 🙂