plugins->moduleExists($m) || !$core->url->getBase($m . 'module') ) { return [ 'theme' => ['dir' = >null, 'url' = >null], 'public' => ['dir' => null, 'url' => null], 'module' => ['dir' => null, 'url' => null], }; } return [ 'theme' => [ 'dir' => $core->blog->themes_path . '/' . $core->blog->settings->system->theme . '/img/' . $m . '-default-image.png', 'url' => $core->blog->settings->system->themes_url . $core->blog->settings->system->theme . '/img/' . $m . '-default-image.png' ], 'public' => [ 'dir' => $core->blog->public_path . '/' . $m . '-default-image.png', 'url' => $core->blog->host . path::clean($core->blog->settings->system->public_url) . '/' . $m . '-default-image.png' ], 'module' => [ 'dir' => $core->plugins->moduleRoot($m) . '/default-templates/img/' . $m . '-default-image.png', 'url' => $core->blog->url . $core->url->getBase($m . 'module') . '/img/' . $m . '-default-image.png' ] ]; } public static function getUrl($core, $m = '') { $files = self::getArray($core, $m); foreach($files as $k => $file) { if (file_exists($files[$k]['dir'])) return $files[$k]['url']; } return null; } public static function getPath($core, $m = '') { $files = self::getArray($core, $m); foreach($files as $k => $file) { if (file_exists($files[$k]['dir'])) return $files[$k]['dir']; } return null; } public static function getSize($core, $m = '') { if (!($img = self::getPath($core, $m))) return ['w' => 16, 'h' => 16]; else { $info = getimagesize($img); return ['w' => $info[0], 'h' => floor($info[1] /3)]; } } }