You appear to be a bot. Output may be restricted
Description
Usage
Akismet::view( $name, $args );
Parameters
- $name
- ( mixed ) required –
- $args
- ( mixed ) optional –
Returns
void
Source
File name: akismet/class.akismet.php
Lines:
1 to 13 of 13
public static function view( $name, array $args = array() ) { $args = apply_filters( 'akismet_view_arguments', $args, $name ); foreach ( $args AS $key => $val ) { $$key = $val; } load_plugin_textdomain( 'akismet' ); $file = AKISMET__PLUGIN_DIR . 'views/'. $name . '.php'; include( $file ); }