Files
Roman Pyrih c2e100a763 first commit
2023-07-24 08:30:51 +02:00

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
);
}
}