vote up 1 vote down star

I'm working with Views 2 in Drupal 6, and I am having difficulty finding documentation on the methods of the View object. Is there any PHP function like print_r that outputs methods as well as fields?

flag

70% accept rate

3 Answers

vote up 7 vote down check

I believe you're looking for get_class_methods. If this is the case, get_class_vars may also interest you.

link|flag
Would upvote if not for SO's restrictions. Good work. – mcandre Aug 17 at 20:07
vote up 3 vote down

The Reflection API might be of interest to you (if it's not overkill). Specifically:-

<?php
    Reflection::export(new ReflectionClass('View'));
?>

Check out the manual for more in-depth examples.

link|flag
More flexible than get_class_methods because you can also get parameters and comments. – Kris Aug 17 at 20:23
vote up 0 vote down

Besides the functions mentioned by Mathachew you can also take a look at Reflection, especially the ReflectionClass class.

$class = new ReflectionClass('YourViewClass');
$class->getMethods();
$class->getProperties();
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.