예제 #1
0
파일: Packages.php 프로젝트: dweelie/grav
 public function __construct()
 {
     $items = ['plugins' => new Plugins(), 'themes' => new Themes()];
     parent::__construct($items);
 }
예제 #2
0
파일: Packages.php 프로젝트: dweelie/grav
 public function __construct($refresh = false, $callback = null)
 {
     $items = ['plugins' => new Plugins($refresh, $callback), 'themes' => new Themes($refresh, $callback)];
     parent::__construct($items);
 }