Index: trunk/phase3/includes/api/ApiParamInfo.php |
— | — | @@ -92,6 +92,7 @@ |
93 | 93 | $result = $this->getResult(); |
94 | 94 | $retval['classname'] = get_class( $obj ); |
95 | 95 | $retval['description'] = implode( "\n", (array)$obj->getDescription() ); |
| 96 | + $retval['examples'] = implode( "\n", (array)$obj->getExamples() ); |
96 | 97 | $retval['version'] = implode( "\n", (array)$obj->getVersion() ); |
97 | 98 | $retval['prefix'] = $obj->getModulePrefix(); |
98 | 99 | |