コード例 #1
0
ファイル: gallery_theme.php プロジェクト: Joe7/gallery3
 static function admin_credits()
 {
     return gallery_theme::credits();
 }
コード例 #2
0
 public function credits()
 {
     if (module::get_var("gallery", "show_credits")) {
         $version_string = SafeString::of_safe_html('Gallery ' . gallery::VERSION);
         return '<ul id="g-credits">' . '<li class="g-branding"><a id="g-gallery-logo" href="http://gallery.menalto.com" title="' . $version_string . '"></a>' . '<a id="g-theme-logo" href="http://codex.gallery2.org/Gallery3:Themes:greydragon" target="_blank" title="' . $this->themename . ' ' . $this->themeversion . ' (' . $this->colorpack . ')"></a></li>' . gallery_theme::credits() . '</ul>';
     } else {
         return '';
     }
 }