-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
26 changed files
with
170 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<extension version="3.10" type="plugin" group="content" method="upgrade"> | ||
<name>PLG_CONTENT_AUTOREADMORE_TITLE</name> | ||
<creationDate>2024-09-19</creationDate> | ||
<creationDate>2024-09-21</creationDate> | ||
<copyright>Copyright (C) 2024 Conseilgouz All rights reserved.</copyright> | ||
<license>http://www.gnu.org/licenses/gpl-3.0.html GNU/GPL</license> | ||
<author>ConseilGouz</author> | ||
<authorEmail>[email protected]</authorEmail> | ||
<authorUrl>https://www.conseilgouz.com</authorUrl> | ||
<version>5.3.1</version> | ||
<version>5.3.2</version> | ||
<description>PLG_CONTENT_AUTOREADMORE_THANK_YOU_FOR_USING_AUTO_READ_MORE</description> | ||
<namespace path="src">ConseilGouz\Plugin\Content\Autoreadmore</namespace> | ||
<files> | ||
|
@@ -16,6 +16,11 @@ | |
<filename>README.md</filename> | ||
<filename>index.html</filename> | ||
</files> | ||
<media destination="plg_content_autoreadmore" folder="media"> | ||
<folder>js</folder> | ||
<folder>css</folder> | ||
<filename>index.html</filename> | ||
</media> | ||
<languages> | ||
<language tag="da-DK">language/da-DK/plg_content_autoreadmore.ini</language> | ||
<language tag="da-DK">language/da-DK/plg_content_autoreadmore.sys.ini</language> | ||
|
@@ -50,7 +55,9 @@ | |
</languages> | ||
<config> | ||
<fields name="params" > | ||
<fieldset name="basic" label="JOPTIONS" addfieldprefix="ConseilGouz\Plugin\Content\Autoreadmore\Field"> | ||
<fieldset name="basic" label="JOPTIONS" | ||
addfieldprefix="ConseilGouz\Plugin\Content\Autoreadmore\Field" | ||
addruleprefix="ConseilGouz\Plugin\Content\Autoreadmore\Rule" > | ||
<field name="version" type="version" extension="AUTOREADMORE" xml="/plugins/content/autoreadmore/autoreadmore.xml" margintop="-3em"/> | ||
|
||
<field name="debug" type="radio" class="btn-group " default="0" label="PLG_CONTENT_AUTOREADMORE_LIMITTYPE_LABEL_DEBUG"> | ||
|
@@ -218,8 +225,21 @@ | |
<option value="2">PLG_CONTENT_AUTOREADMORE_FIELD_ADD_TRIMMING_DOTS_WHEN_NEEDED</option> | ||
</field> | ||
<field showon="add_trimming_dots:1,2" name="trimming_dots" type="text" default="..." label="PLG_CONTENT_AUTOREADMORE_TRIMMING_TEXT" description="" filter="raw"/> | ||
<field name="readmore_text" type="text" default="" label="PLG_CONTENT_AUTOREADMORE_READMORE_TEXT" description="PLG_CONTENT_AUTOREADMORE_READMORE_TEXT_DESC"/> | ||
<field showon="usertype:1" name="readmore_guest" type="hidden" default="" label="PLG_CONTENT_AUTOREADMORE_READMORE_GUEST" description="PLG_CONTENT_AUTOREADMORE_READMORE_GUEST_DESC"/> | ||
<field name="multilg" type="sql" label="" description="" class="d-none" | ||
query="SELECT count(*) as value FROM #__languages where published = 1" | ||
key_field="value" value_field="value" /> | ||
<field showon="multilg:1" name="readmore_text" type="text" default="" label="PLG_CONTENT_AUTOREADMORE_READMORE_TEXT" description="PLG_CONTENT_AUTOREADMORE_READMORE_TEXT_DESC"/> | ||
<field showon="multilg!:1" name="readmore_list" type="subform" multiple ="true" | ||
label="PLG_CONTENT_AUTOREADMORE_READMORE_LIST" description="PLG_CONTENT_AUTOREADMORE_READMORE_LIST_DESC" | ||
validate="cgform"> | ||
<form> | ||
<field name="readmore_list_lang" type="sql" label="" description="" | ||
query="SELECT lang_code,title FROM #__languages where published = 1" | ||
key_field="lang_code" value_field="title" /> | ||
<field name="readmore_list_text" type="text" label="" description="" | ||
/> | ||
</form> | ||
</field> | ||
</fieldset> | ||
<fieldset name="thumbnails" label="PLG_CONTENT_AUTOREADMORE_THUMBNAIL_SETTINGS_LABEL"> | ||
<field name="Thumbnails" type="text" default="0" label="PLG_CONTENT_AUTOREADMORE_THUMBNAILS_LABEL" description="PLG_CONTENT_AUTOREADMORE_THUMBNAILS_DESC"/> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
|
||
PLG_CONTENT_AUTOREADMORE_TITLE="Indhold - Automatisk Læs Mere" | ||
PLG_CONTENT_AUTOREADMORE_THANK_YOU_FOR_USING_AUTO_READ_MORE="<p><b>Automatisk Læs Mere</b> vil automatisk tilføje et ``Læs Mere`` link til artikler. Jubii!</p><p><b>Vises email adresser ikke korrekt?</b>Juster rækkefølgen for denne programudvidelse, så det kører før Email Beskyttelse.</p>" | ||
PLG_CONTENT_AUTOREADMORE_THANK_YOU_FOR_USING_AUTO_READ_MORE="<link rel="stylesheet" href="../media/plg_content_autoreadmore/css/css_admin.css" type="text/css" /><script src="../media/plg_content_autoreadmore/js/css_admin.js"></script><p><b>Automatisk Læs Mere</b> vil automatisk tilføje et ``Læs Mere`` link til artikler. Jubii!</p><p><b>Vises email adresser ikke korrekt?</b>Juster rækkefølgen for denne programudvidelse, så det kører før Email Beskyttelse.</p>" | ||
GJ_INSTALL_ORDERING_SET="Denne programudvidelse er sat til at køre før alle andre programudvidelser" | ||
GJ_INSTALL_ORDERING_SET_FAILED="Kunne ikke sætte rækkefølgen for programudvidelser" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
|
||
PLG_CONTENT_AUTOREADMORE_TITLE="Content - Auto Read More" | ||
PLG_CONTENT_AUTOREADMORE_THANK_YOU_FOR_USING_AUTO_READ_MORE="<p><b>Auto Read More</b> will automatically add a 'Read More' link to joomla articles or other content items.</p><p><b>Email addresses not appearing properly?</b> Adjust the order of this plugin so that it runs before Email Cloaking.</p>" | ||
PLG_CONTENT_AUTOREADMORE_THANK_YOU_FOR_USING_AUTO_READ_MORE="<link rel="stylesheet" href="../media/plg_content_autoreadmore/css/css_admin.css" type="text/css" /><script src="../media/plg_content_autoreadmore/js/css_admin.js"></script><p><b>Auto Read More</b> will automatically add a 'Read More' link to joomla articles or other content items.</p><p><b>Email addresses not appearing properly?</b> Adjust the order of this plugin so that it runs before Email Cloaking.</p>" | ||
GJ_INSTALL_ORDERING_SET="Plugin ordering is set" | ||
GJ_INSTALL_ORDERING_SET_FAILED="Cound not set plugin ordering" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
|
||
PLG_CONTENT_AUTOREADMORE_TITLE="Contenido - Auto Leer Más" | ||
PLG_CONTENT_AUTOREADMORE_THANK_YOU_FOR_USING_AUTO_READ_MORE="<b> Auto Leer más </b> se añade automáticamente un ``Leer más`` enlace a los artículos. Yippee! </p> <b> Email direcciones no aparecen correctamente? </b> Ajuste el orden de este plugin para que se ejecute antes de encubrimiento por correo electrónico.</p>" | ||
PLG_CONTENT_AUTOREADMORE_THANK_YOU_FOR_USING_AUTO_READ_MORE="<link rel="stylesheet" href="../media/plg_content_autoreadmore/css/css_admin.css" type="text/css" /><script src="../media/plg_content_autoreadmore/js/css_admin.js"></script><b> Auto Leer más </b> se añade automáticamente un ``Leer más`` enlace a los artículos. Yippee! </p> <b> Email direcciones no aparecen correctamente? </b> Ajuste el orden de este plugin para que se ejecute antes de encubrimiento por correo electrónico.</p>" | ||
; GJ_INSTALL_ORDERING_SET="" | ||
; GJ_INSTALL_ORDERING_SET_FAILED="" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
|
||
PLG_CONTENT_AUTOREADMORE_TITLE="محتوا - درج اتوماتیک لینک ادامه مطلب (وب2)" | ||
PLG_CONTENT_AUTOREADMORE_THANK_YOU_FOR_USING_AUTO_READ_MORE="<p dir=\"rtl\">نام اصلی افزونه :<span dir=\"ltr\">content_autoreadmore</span><br />\n نام فارسی افزونه :درج اتوماتیک ادامه مطلب <br />\n سایت سازنده :<a href=\"http://gruz.org.ua\" target=\"_blank\">http://gruz.org.ua</a><br />\n فارسی سازی برای فارسی زبانان:ابراهیم طبرستانی <br />\n آدرس وب سایت :<a href=\"http://www.web-2.ir\" target=\"_blank\">web-2.ir</a><br />\n ایمیل :<a href=\"mailto:[email protected]\">[email protected]</a><span dir=\"rtl\"> </span><span dir=\"rtl\"> </span><span dir=\"rtl\"> </span><span dir=\"rtl\"> </span> <a href=\"mailto:[email protected]\">[email protected]</a><br />\n شماره تماس :09131979892 , 09391869944 <br />\n با استفاده از این افزونه به راحتی میتوانید در انتهای مطالب خود به صورت خودکار لینک ادامه مطلب را اضافه نمایید <br />\n نحوه کار با افزونه:ابتدا از داخل مدیریت پلاگین ها پلاگین را فعال و آن را باز نمایید.سپس داخل مدیریت پلاگین تنظیمات مربوطه را انجام داده و ذخیره نمایید. با استفاده از این افزونه می توانید تعیین نمایید تا به طور خودکار پس از تعداد مشخصی کاراکتر ، حرف و یا پاراگراف لینک ادامه مطلب قرار گیرد. <br />\n این پلاگین برای سایتهای خبری که با جوملا ساخته شده اند کاربرد ویژه ای دارد. <br />\nموفق و پیروز باشید </p>" | ||
PLG_CONTENT_AUTOREADMORE_THANK_YOU_FOR_USING_AUTO_READ_MORE="<link rel="stylesheet" href="../media/plg_content_autoreadmore/css/css_admin.css" type="text/css" /><script src="../media/plg_content_autoreadmore/js/css_admin.js"></script><p dir=\"rtl\">نام اصلی افزونه :<span dir=\"ltr\">content_autoreadmore</span><br />\n نام فارسی افزونه :درج اتوماتیک ادامه مطلب <br />\n سایت سازنده :<a href=\"http://gruz.org.ua\" target=\"_blank\">http://gruz.org.ua</a><br />\n فارسی سازی برای فارسی زبانان:ابراهیم طبرستانی <br />\n آدرس وب سایت :<a href=\"http://www.web-2.ir\" target=\"_blank\">web-2.ir</a><br />\n ایمیل :<a href=\"mailto:[email protected]\">[email protected]</a><span dir=\"rtl\"> </span><span dir=\"rtl\"> </span><span dir=\"rtl\"> </span><span dir=\"rtl\"> </span> <a href=\"mailto:[email protected]\">[email protected]</a><br />\n شماره تماس :09131979892 , 09391869944 <br />\n با استفاده از این افزونه به راحتی میتوانید در انتهای مطالب خود به صورت خودکار لینک ادامه مطلب را اضافه نمایید <br />\n نحوه کار با افزونه:ابتدا از داخل مدیریت پلاگین ها پلاگین را فعال و آن را باز نمایید.سپس داخل مدیریت پلاگین تنظیمات مربوطه را انجام داده و ذخیره نمایید. با استفاده از این افزونه می توانید تعیین نمایید تا به طور خودکار پس از تعداد مشخصی کاراکتر ، حرف و یا پاراگراف لینک ادامه مطلب قرار گیرد. <br />\n این پلاگین برای سایتهای خبری که با جوملا ساخته شده اند کاربرد ویژه ای دارد. <br />\nموفق و پیروز باشید </p>" | ||
GJ_INSTALL_ORDERING_SET="پلاگین با موفقیت نصب شد" | ||
GJ_INSTALL_ORDERING_SET_FAILED="متاسفانه پلاگین نصب نشد" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
PLG_CONTENT_AUTOREADMORE_TITLE="Contenu - Lire la suite automatique" | ||
PLG_CONTENT_AUTOREADMORE_THANK_YOU_FOR_USING_AUTO_READ_MORE="<p>Le plugin <b>Lire la suite automatique</b> ajoutera automatiquement un lien « Lire la suite » aux articles de joomla ou autres éléments de contenu.</p> <p><b>Les adresses électroniques n’apparaissent pas correctement ?</b> Ajustez l’ordre de ce plugin pour qu’il fonctionne avant Email Cloaking.</p>" | ||
PLG_CONTENT_AUTOREADMORE_THANK_YOU_FOR_USING_AUTO_READ_MORE="<link rel="stylesheet" href="../media/plg_content_autoreadmore/css/css_admin.css" type="text/css" /><script src="../media/plg_content_autoreadmore/js/css_admin.js"></script><p>Le plugin <b>Lire la suite automatique</b> ajoutera automatiquement un lien « Lire la suite » aux articles de joomla ou autres éléments de contenu.</p> <p><b>Les adresses électroniques n’apparaissent pas correctement ?</b> Ajustez l’ordre de ce plugin pour qu’il fonctionne avant Email Cloaking.</p>" | ||
GJ_INSTALL_ORDERING_SET="L'ordre du plugin est défini" | ||
GJ_INSTALL_ORDERING_SET_FAILED="Impossible de régler le classement du plugin" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
|
||
PLG_CONTENT_AUTOREADMORE_TITLE="Content - Auto Read More" | ||
PLG_CONTENT_AUTOREADMORE_THANK_YOU_FOR_USING_AUTO_READ_MORE="<p><b>Auto Read More</b> aggiunge automaticamente il link ``Leggi tutto`` agli articoli. Yippee!</p><p><b>Gli indirizzi email non appaiono in modo corretto?</b> Cambia l'ordine dei plugin così che questo compaio prima di Email Cloaking.</p>" | ||
PLG_CONTENT_AUTOREADMORE_THANK_YOU_FOR_USING_AUTO_READ_MORE="<link rel="stylesheet" href="../media/plg_content_autoreadmore/css/css_admin.css" type="text/css" /><script src="../media/plg_content_autoreadmore/js/css_admin.js"></script><p><b>Auto Read More</b> aggiunge automaticamente il link ``Leggi tutto`` agli articoli. Yippee!</p><p><b>Gli indirizzi email non appaiono in modo corretto?</b> Cambia l'ordine dei plugin così che questo compaio prima di Email Cloaking.</p>" | ||
GJ_INSTALL_ORDERING_SET="Ordine plugin impostato" | ||
GJ_INSTALL_ORDERING_SET_FAILED="Impossibile impostare ordine plugin" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
|
||
PLG_CONTENT_AUTOREADMORE_TITLE="Innhold - Auto Read more" | ||
PLG_CONTENT_AUTOREADMORE_THANK_YOU_FOR_USING_AUTO_READ_MORE="<p><b>Auto Read More</b> vil automatisk legge til en ``Les mer`` lenk til artiklene. Yippee!</p><p><b>Vises ikke Email adressene skikkelig ?</b> Endre sortering for dette programtillegget slik at det kjøres før programtilegget som heter Email Cloaking.</p>" | ||
PLG_CONTENT_AUTOREADMORE_THANK_YOU_FOR_USING_AUTO_READ_MORE="<link rel="stylesheet" href="../media/plg_content_autoreadmore/css/css_admin.css" type="text/css" /><script src="../media/plg_content_autoreadmore/js/css_admin.js"></script><p><b>Auto Read More</b> vil automatisk legge til en ``Les mer`` lenk til artiklene. Yippee!</p><p><b>Vises ikke Email adressene skikkelig ?</b> Endre sortering for dette programtillegget slik at det kjøres før programtilegget som heter Email Cloaking.</p>" | ||
; GJ_INSTALL_ORDERING_SET="" | ||
; GJ_INSTALL_ORDERING_SET_FAILED="" |
Oops, something went wrong.