api_filter($op, $delta = 0, $format = -1, $text = '')Implementation of hook_filter().
contrib-6/api/api.module, line 923
<?php
function api_filter($op, $delta = 0, $format = -1, $text = '') {
switch ($op) {
case 'list':
return array(0 => t('API filter'));
case 'description':
return t('Add links to API objects, like theme() or theme.inc.');
case 'process':
return api_filter_documentation($text, api_get_active_branch());
default:
return $text;
}
}
?>