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
+7
View File
@@ -0,0 +1,7 @@
{
"plugin-data":
{
"name": "За мен",
"description": "Кратко описание за вашия сайт или за себе си."
}
}
+6
View File
@@ -0,0 +1,6 @@
{
"plugin-data": {
"description": "Vis en lille beskrivelse af dit websted eller om dig selv.",
"name": "About"
}
}
+7
View File
@@ -0,0 +1,7 @@
{
"plugin-data":
{
"name": "Über",
"description": "Kurzer Text über die Website oder zum Betreiber des Blogs oder der Website."
}
}
+7
View File
@@ -0,0 +1,7 @@
{
"plugin-data":
{
"name": "Über",
"description": "Kurzer Text über die Website oder zum Betreiber des Blogs oder der Website."
}
}
+7
View File
@@ -0,0 +1,7 @@
{
"plugin-data":
{
"name": "About",
"description": "Show a small description of your site or about yourself."
}
}
+7
View File
@@ -0,0 +1,7 @@
{
"plugin-data":
{
"name": "Acerca de",
"description": "Breve descripción de ti mismo o sobre tu sitio."
}
}
+7
View File
@@ -0,0 +1,7 @@
{
"plugin-data":
{
"name": "درباره",
"description": "نمایش توضیح کوتاهی از شما و یا وبسایتتان."
}
}
+7
View File
@@ -0,0 +1,7 @@
{
"plugin-data":
{
"name": "À Propos",
"description": "Afficher une courte description sur votre site ou sur vous-même."
}
}
+7
View File
@@ -0,0 +1,7 @@
{
"plugin-data":
{
"name": "Informazioni",
"description": "Visualizza una breve descrizione sul tuo sito o su te stesso."
}
}
+7
View File
@@ -0,0 +1,7 @@
{
"plugin-data":
{
"name": "About",
"description": "サイトやあなたについての簡単な説明を表示します。"
}
}
+7
View File
@@ -0,0 +1,7 @@
{
"plugin-data":
{
"name": "Over",
"description": "Een korte beschrijving over de site of over uzelf."
}
}
+7
View File
@@ -0,0 +1,7 @@
{
"plugin-data":
{
"name": "О блоге",
"description": "Небольшое описание о вашем сайте или о себе."
}
}
+7
View File
@@ -0,0 +1,7 @@
{
"plugin-data":
{
"name": "Hakkında",
"description": "Senin veya siten hakkında kısa bilgiler"
}
}
+7
View File
@@ -0,0 +1,7 @@
{
"plugin-data":
{
"name": "Про блог",
"description": "Невеликий опис вашого сайту або про Вас."
}
}
+10
View File
@@ -0,0 +1,10 @@
{
"author": "Bludit",
"email": "",
"website": "https://plugins.bludit.com",
"version": "3.22.0",
"releaseDate": "2026-05-10",
"license": "MIT",
"compatible": "3.22",
"notes": ""
}
+47
View File
@@ -0,0 +1,47 @@
<?php
class pluginAbout extends Plugin
{
public function init()
{
$this->dbFields = array(
'label' => 'About',
'text' => ''
);
}
public function form()
{
global $L;
$html = '<div class="alert alert-primary" role="alert">';
$html .= $this->description();
$html .= '</div>';
$html .= '<div>';
$html .= '<label>' . $L->get('Label') . '</label>';
$html .= '<input name="label" type="text" dir="auto" value="' . $this->getValue('label') . '">';
$html .= '<span class="tip">' . $L->get('This title is almost always used in the sidebar of the site') . '</span>';
$html .= '</div>';
$html .= '<div>';
$html .= '<label>' . $L->get('About') . '</label>';
$html .= '<textarea name="text" id="jstext">' . $this->getValue('text') . '</textarea>';
$html .= '</div>';
return $html;
}
public function siteSidebar()
{
$html = '<div class="plugin plugin-about">';
$html .= '<h2 class="plugin-label">' . $this->getValue('label') . '</h2>';
$html .= '<div class="plugin-content">';
$html .= html_entity_decode(nl2br($this->getValue('text')));
$html .= '</div>';
$html .= '</div>';
return $html;
}
}