Lines:
101 to 200 of 222
/* function oikai_set_pragmatic_links() – Set a pragmatic link on each relevant token in the dummy TCES */ /* function oikai_handle_hook() – Handle the hook */ /* function oikai_set_context() – Set/reset the context fields for this function */ /* function oikai_handle_association() – Handle the add_action() or add_filter() association */ /* function oikai_handle_token_T_CONSTANT_ENCAPSED_STRING() – Handle a T_CONSTANT_ENCAPSED_STRING token */ /* function oikai_handle_dummy_TCES() – Handle a ‘dummy’ T_CONSTANT_ENCAPSED_STRING token */ /* function oikai_dummy_TCES() – Save the token ids for later processing. */ /* function oikai_handle_token_T_ENCAPSED_AND_WHITESPACE() – Handle a T_ENCAPSED_AND_WHITESPACE token */ /* function oikai_handle_token_T_STRING_VARNAME() – Handle a T_STRING_VARNAME token ( e.g. ${post_type} ) */ /* function oikai_handle_token_T_STRING() – Handle a T_STRING token */ /* function oikai_link_to_local_site() – Create a link to the local site */ /* function oikai_pragmatic_link_to_api() – Create a link to the API without accessing the database */ /* function oikai_handle_token_T_DOC_COMMENT() – Handle a T_DOC_COMMENT When we see a T_DOC_COMMENT in a function then this is expected to precede the first call to do_action() or apply_filters() and contains the definition of the action or filter. */ /* function oikai_handle_token_T_OBJECT_OPERATOR() – Handle a T_OBJECT_OPERATOR ( -> ) */ /* function oikai_handle_token_T_DOUBLE_ARROW() – Handle a T_DOUBLE_ARROW ( => ) */ /* function oikai_handle_token_T_DOUBLE_COLON() – Handle a T_DOUBLE_COLON ( :: ) */ /* function oikai_handle_token_T_ARRAY() – Handle a T_ARRAY ( array ) */ /* function oikai_handle_token_T_VARIABLE() – Handle a T_VARIABLE */ /* function oikai_handle_token_T_FUNC_C() – Handle a T_FUNC_C */ /* function oikai_query_function_type() – Match the function type, if it’s a defined function */ /* function oiksc_load_wordpress_cache */ /* function oikai_query_wordpress_api_type */ /* function oikai_determine_function_type() – Determine the function type */ /* function oikai_concoct_api_name() – Concoct an API name */ /* function oikai_handle_token() – Handle this specific token */ /* function oikai_handle_char() – Handle this specific character */ /* function oikai_handle_char_() – Default handling for a character */ /* function oikai_handle_char_comma() – Handle a parameter to a hook definition or invocation */ /* function oikai_handle_char_rparen() – Handle the last parameter to a hook definition or invocation */ /* function oikai_handle_char_dquote() – Handle a double quote ( " ) */ /* function oikai_handle_char_semicolon() – Handle the semicolon ( ; ) */ /* function oikai_handle_char_equals() – Handle the equals sign token */ /* function oikai_easy_tokens() – Display the PHP source of a method or API */ /* function oikai_process_tokens1() – First pass of tokens */ /* function oikai_process_tokens2() – Second pass of tokens */ /* function oikai_handle_token2() – Display the output token, as a link if available */ /* function oikai_syntax_source() – Produce a nicely formatted version of the function’s source code */ /* function oikai_get_func() – Return the API or method name given the full funcname and classname */ /* function oikai_get_class() – Return the class name for this method */ /* function oikai_get_oik_class_byname() – Query class from class name */ /* function oikai_get_classref() – Return the classref for the API, if applicable, creating the oik_class if necessary */ /* function oikai_oik_class_post_title() – Return the title for an oik_class post */ /* function oikai_oik_class_parent() – Return this class’es parent ID */ /* function oikai_create_oik_class() – Programmatically create an oik_class record for a selected plugin’s method */ /* function oikai_update_oik_class() – Programmatically update the oik_class record */ /* function oikai_build_apiref() – Automatically create the API reference */ /* function oikai_build_dynamic_docs() – Build some dynamic documentation from the embedded content */ /* function oikai_get_noderef_value() – Get the string value for a noderef */View on GitHub