11 lines
218 B
PHP
11 lines
218 B
PHP
<?php
|
|
|
|
class Brizy_Admin_View {
|
|
public static function render( $view, array $args = array() ) {
|
|
return Brizy_Editor_View::get(
|
|
implode( DIRECTORY_SEPARATOR, array( __DIR__, 'views', $view ) ),
|
|
$args
|
|
);
|
|
}
|
|
|
|
} |