setHook( 'inputbox', array( 'InputBoxHooks', 'render' ) ); // Continue return true; } // Render the input box public static function render( $input, $args, $parser ) { // Create InputBox $inputBox = new InputBox( $parser ); // Configure InputBox $inputBox->extractOptions( $parser->replaceVariables( $input ) ); // Return output return $inputBox->render(); } }