Import.php 247 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 <?php namespace ACP\Migrate\Admin\Section; use AC\Renderable; use AC\View; class Import implements Renderable { public function render() { $view = new View(); $view->set_template( 'admin/section-import' ); return $view->render(); } }