From 47d95c7e4d1f0bec6937c01e9631d9e133e640fc Mon Sep 17 00:00:00 2001 From: Kazhnuz Date: Sun, 2 Mar 2025 09:40:12 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Add=20source=20link?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bl-kernel/admin/views/edit-content.php | 18 ++++++++++++++++++ bl-kernel/admin/views/new-content.php | 19 +++++++++++++++++++ bl-kernel/pages.class.php | 1 + bl-kernel/pagex.class.php | 5 +++++ 4 files changed, 43 insertions(+) diff --git a/bl-kernel/admin/views/edit-content.php b/bl-kernel/admin/views/edit-content.php index b9a653a3..79b05342 100644 --- a/bl-kernel/admin/views/edit-content.php +++ b/bl-kernel/admin/views/edit-content.php @@ -92,6 +92,15 @@ echo Bootstrap::pageTitle(array('title'=>$L->g("Edit")." (".$contentType->plural 'rows' => 5, 'placeholder' => $L->get('this-field-can-help-describe-the-content') )); + + // Source Link + echo ContentPage::formInputTextBlock($contentType,array( + 'name' => 'sourceLink', + 'label' => $L->g('Source Link'), + 'placeholder' => '', + 'tip' => $L->g('The external link you refer to in the post'), + 'value' => $page->sourceLink() + )); } ?> @@ -176,6 +185,15 @@ echo Bootstrap::pageTitle(array('title'=>$L->g("Edit")." (".$contentType->plural 'rows' => 5, 'placeholder' => $L->get('this-field-can-help-describe-the-content') )); + + // Source Link + echo ContentPage::formInputTextBlock($contentType,array( + 'name' => 'sourceLink', + 'label' => $L->g('Source Link'), + 'placeholder' => '', + 'tip' => $L->g('The external link you refer to in the post'), + 'value' => $page->sourceLink() + )); } // Sticky diff --git a/bl-kernel/admin/views/new-content.php b/bl-kernel/admin/views/new-content.php index a3bde48d..960cfc50 100644 --- a/bl-kernel/admin/views/new-content.php +++ b/bl-kernel/admin/views/new-content.php @@ -85,7 +85,17 @@ echo Bootstrap::pageTitle(array('title'=>$L->g("New")." (".$contentType->plural( 'rows' => 5, 'placeholder' => $L->get('this-field-can-help-describe-the-content') )); + + // Source Link + echo ContentPage::formInputTextBlock($contentType,array( + 'name' => 'sourceLink', + 'label' => $L->g('Source Link'), + 'placeholder' => '', + 'tip' => $L->g('The external link you refer to in the post'), + 'value' => '' + )); } ?> + customFields(); @@ -167,6 +177,15 @@ echo Bootstrap::pageTitle(array('title'=>$L->g("New")." (".$contentType->plural( 'rows' => 5, 'placeholder' => $L->get('this-field-can-help-describe-the-content') )); + + // Source Link + echo ContentPage::formInputTextBlock($contentType,array( + 'name' => 'sourceLink', + 'label' => $L->g('Source Link'), + 'placeholder' => '', + 'tip' => $L->g('The external link you refer to in the post'), + 'value' => '' + )); } // Sticky diff --git a/bl-kernel/pages.class.php b/bl-kernel/pages.class.php index 9e3dbfd8..72f65911 100644 --- a/bl-kernel/pages.class.php +++ b/bl-kernel/pages.class.php @@ -24,6 +24,7 @@ class Pages extends dbJSON 'noindex' => false, 'nofollow' => false, 'noarchive' => false, + 'sourceLink'=>'', 'custom' => array() ); diff --git a/bl-kernel/pagex.class.php b/bl-kernel/pagex.class.php index ec0e64a3..c276090e 100644 --- a/bl-kernel/pagex.class.php +++ b/bl-kernel/pagex.class.php @@ -447,6 +447,11 @@ class Page return $this->getValue('noarchive'); } + // retour the source link + public function sourceLink() { + return $this->getValue('sourceLink'); + } + // Returns the page slug public function slug() {