This commit is contained in:
Ty Clifford
2026-07-03 07:31:09 -04:00
commit cebb0d3af1
800 changed files with 89782 additions and 0 deletions
@@ -0,0 +1,14 @@
{
"plugin-data":
{
"name": "Theme Popeye",
"description": "Das Plugin erlaubt verschiedene Einstellungen für das Theme Popeye."
},
"enable-or-disable-dark-mode": "Dunkelmodus aktivieren oder deaktivieren.",
"enable-or-disable-google-fonts": "Google Fonts aktivieren oder deaktivieren.",
"relative": "Relativ",
"absolute": "Absolut",
"change-the-date-format-for-the-main-page": "Einstellung des Datumsformats auf der Haupt- oder Blogseite.",
"show-tags": "Schlagwörter zeigen",
"show-tags-in-the-main-page-for-each-article": "Zeigt auf der Haupt- oder Blogseite die Schlagwörter der Beiträge."
}
@@ -0,0 +1,14 @@
{
"plugin-data":
{
"name": "Theme Popeye",
"description": "Das Plugin erlaubt verschiedene Einstellungen für das Theme Popeye."
},
"enable-or-disable-dark-mode": "Dunkelmodus aktivieren oder deaktivieren.",
"enable-or-disable-google-fonts": "Google Fonts aktivieren oder deaktivieren.",
"relative": "Relativ",
"absolute": "Absolut",
"change-the-date-format-for-the-main-page": "Einstellung des Datumsformats auf der Haupt- oder Blogseite.",
"show-tags": "Schlagwörter zeigen",
"show-tags-in-the-main-page-for-each-article": "Zeigt auf der Haupt- oder Blogseite die Schlagwörter der Beiträge."
}
@@ -0,0 +1,14 @@
{
"plugin-data":
{
"name": "Theme Popeye",
"description": "Das Plugin erlaubt verschiedene Einstellungen für das Theme Popeye."
},
"enable-or-disable-dark-mode": "Dunkelmodus aktivieren oder deaktivieren.",
"enable-or-disable-google-fonts": "Google Fonts aktivieren oder deaktivieren.",
"relative": "Relativ",
"absolute": "Absolut",
"change-the-date-format-for-the-main-page": "Einstellung des Datumsformats auf der Haupt- oder Blogseite.",
"show-tags": "Schlagwörter zeigen",
"show-tags-in-the-main-page-for-each-article": "Zeigt auf der Haupt- oder Blogseite die Schlagwörter der Beiträge."
}
+13
View File
@@ -0,0 +1,13 @@
{
"plugin-data": {
"name": "Alternative Theme",
"description": "This plugin provides configuration for the Alternative theme."
},
"enable-or-disable-dark-mode": "Enable or disable dark mode.",
"enable-or-disable-google-fonts": "Enable or disable Google fonts.",
"relative": "Relative",
"absolute": "Absolute",
"change-the-date-format-for-the-main-page": "Change the date format for the main page.",
"show-tags": "Show tags",
"show-tags-in-the-main-page-for-each-article": "Show tags on the main page for each article."
}
@@ -0,0 +1,14 @@
{
"plugin-data":
{
"name": "Popeye Theme",
"description": "Popeyeテーマの設定を行うプラグインです。"
},
"enable-or-disable-dark-mode": "ダークモードを有効または無効にします。",
"enable-or-disable-google-fonts": "Google Fontsの利用を有効または無効にします。",
"relative": "相対的",
"absolute": "絶対的",
"change-the-date-format-for-the-main-page": "メインページの日付表示形式を変更します。",
"show-tags": "タグの表示",
"show-tags-in-the-main-page-for-each-article": "メインページの各記事にタグを表示します。"
}
@@ -0,0 +1,14 @@
{
"plugin-data":
{
"name": "Popeye Thema",
"description": "Met deze plugin kan het thema Popeye geconfigureerd worden."
},
"enable-or-disable-dark-mode": "Donkere modus in-/uitschakelen.",
"enable-or-disable-google-fonts": "Lettertypes van Google in-/uitschakelen.",
"relative": "Relatief",
"absolute": "Absoluut",
"change-the-date-format-for-the-main-page": "Het datumformaat voor de hoofdpagina aanpassen.",
"show-tags": "Tags tonen",
"show-tags-in-the-main-page-for-each-article": "Op de hoofdpagina voor ieder artikel de tags tonen."
}
+13
View File
@@ -0,0 +1,13 @@
{
"plugin-data": {
"name": "Настройки темы Alternative",
"description": "Этот плагин содержит настройки для темы Alternative."
},
"enable-or-disable-dark-mode": "Включить или выключить тёмный режим.",
"enable-or-disable-google-fonts": "Включить или выключить шрифты от Google (Google fonts).",
"relative": "Относительный",
"absolute": "Абсолютный",
"change-the-date-format-for-the-main-page": "Изменить формат даты для главной страницы.",
"show-tags": "Отображать теги",
"show-tags-in-the-main-page-for-each-article": "Показывать теги на главной странице для каждой записи."
}
+11
View File
@@ -0,0 +1,11 @@
{
"author": "Bludit",
"email": "",
"website": "https://plugins.bludit.com",
"version": "3.22.0",
"releaseDate": "2026-05-10",
"license": "MIT",
"compatible": "3.22",
"notes": "",
"type": "theme"
}
+65
View File
@@ -0,0 +1,65 @@
<?php
class alternative extends Plugin
{
public function init()
{
$this->dbFields = array(
'googleFonts' => false,
'showPostInformation' => false,
'dateFormat' => 'relative'
);
}
public function form()
{
global $L;
$html = '';
$html .= '<div class="mb-3">';
$html .= '<label class="form-label" for="googleFonts">' . $L->get('Google Fonts') . '</label>';
$html .= '<select class="form-select" id="googleFonts" name="googleFonts">';
$html .= '<option value="false" ' . ($this->getValue('googleFonts') === false ? 'selected' : '') . '>' . $L->get('Disabled') . '</option>';
$html .= '<option value="true" ' . ($this->getValue('googleFonts') === true ? 'selected' : '') . '>' . $L->get('Enabled') . '</option>';
$html .= '</select>';
$html .= '<div class="form-text">' . $L->get('Enable or disable Google fonts.') . '</div>';
$html .= '</div>';
$html .= '<div class="mb-3">';
$html .= '<label class="form-label" for="showPostInformation">' . $L->get('Show Post Information') . '</label>';
$html .= '<select class="form-select" id="showPostInformation" name="showPostInformation">';
$html .= '<option value="false" ' . ($this->getValue('showPostInformation') === false ? 'selected' : '') . '>' . $L->get('Disabled') . '</option>';
$html .= '<option value="true" ' . ($this->getValue('showPostInformation') === true ? 'selected' : '') . '>' . $L->get('Enabled') . '</option>';
$html .= '</select>';
$html .= '</div>';
$html .= '<div class="mb-3">';
$html .= '<label class="form-label" for="dateFormat">' . $L->get('Date format') . '</label>';
$html .= '<select class="form-select" id="dateFormat" name="dateFormat">';
$html .= '<option value="noshow" ' . ($this->getValue('dateFormat') == 'noshow' ? 'selected' : '') . '>' . $L->get('No show') . '</option>';
$html .= '<option value="relative" ' . ($this->getValue('dateFormat') == 'relative' ? 'selected' : '') . '>' . $L->get('Relative') . '</option>';
$html .= '<option value="absolute" ' . ($this->getValue('dateFormat') == 'absolute' ? 'selected' : '') . '>' . $L->get('Absolute') . '</option>';
$html .= '</select>';
$html .= '<div class="form-text">' . $L->get('Change the date format for the main page.') . '</div>';
$html .= '</div>';
return $html;
}
public function showPostInformation()
{
return $this->getValue('showPostInformation');
}
public function googleFonts()
{
return $this->getValue('googleFonts');
}
public function dateFormat()
{
return $this->getValue('dateFormat');
}
}