[PECL-CVS] [web-pecl] master: chore: added deprecation message to all pages
[email protected] (NickSdot via Derick Rethans) Wed, 24 Jun 2026 11:01:41 +0000
| Newsgroups | php.pecl.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: NickSdot (NickSdot)
Committer: Derick Rethans (derickr)
Date: 2026-06-24T12:01:38+01:00
Commit: https://github.com/php/web-pecl/commit/fb7e759cc930fa2c3aef46eef5da6719bda34afa
Raw diff: https://github.com/php/web-pecl/commit/fb7e759cc930fa2c3aef46eef5da6719bda34afa.diff
chore: added deprecation message to all pages
Changed paths:
M include/pear-format-html.php
M templates/layout.php
M templates/pages/account_request.php
M templates/pages/index.php
M templates/pages/package_new.php
M templates/pages/release_upload.php
Diff:
diff --git a/include/pear-format-html.php b/include/pear-format-html.php
index 49f2edb7..aacb332b 100644
--- a/include/pear-format-html.php
+++ b/include/pear-format-html.php
@@ -173,6 +173,11 @@ function response_header($title = 'The PHP Extension Community Library', $style
</form>
</td>
</tr>
+ <tr>
+ <td colspan="2">
+ <?php include '../templates/includes/pie.php'; ?>
+ </td>
+ </tr>
</table>
<!-- END HEADER -->
diff --git a/templates/layout.php b/templates/layout.php
index 3638a844..7dd6e0b5 100644
--- a/templates/layout.php
+++ b/templates/layout.php
@@ -61,6 +61,11 @@
</form>
</td>
</tr>
+ <tr>
+ <td colspan="2">
+ <?php $this->insert('includes/pie.php'); ?>
+ </td>
+ </tr>
</table>
<table class="middle" cellspacing="0" cellpadding="0">
diff --git a/templates/pages/account_request.php b/templates/pages/account_request.php
index 08624f08..52cdb93c 100644
--- a/templates/pages/account_request.php
+++ b/templates/pages/account_request.php
@@ -6,8 +6,6 @@
<h1>Publishing in PECL</h1>
- <?php $this->insert('includes/pie.php'); ?>
-
<p>A single suggested reason why you might apply for a PECL account:</p>
<ul>
diff --git a/templates/pages/index.php b/templates/pages/index.php
index a8ccaf4f..ad9ff4a0 100644
--- a/templates/pages/index.php
+++ b/templates/pages/index.php
@@ -4,8 +4,6 @@
<h3>What is PECL?</h3>
-<?php $this->insert('includes/pie.php'); ?>
-
<p>
<acronym title="PHP Extension Community Library">PECL</acronym> is a repository
for PHP Extensions, providing a directory of all known extensions and hosting
diff --git a/templates/pages/package_new.php b/templates/pages/package_new.php
index e2f0e081..f997b4f4 100644
--- a/templates/pages/package_new.php
+++ b/templates/pages/package_new.php
@@ -4,8 +4,6 @@
<h1>New package</h1>
- <?php $this->insert('includes/pie.php'); ?>
-
<p>PECL has been deprecated. <strong>No new packages will be accepted onto PECL</strong>.</p>
<p>Please follow the instructions to add your extension to the PIE ecosystem: <a href="https://github.com/php/pie/blob/main/docs/extension-maintainers.md">PIE for Extension Maintainers</a>.</p>
diff --git a/templates/pages/release_upload.php b/templates/pages/release_upload.php
index 0dec5d72..c6e31c74 100644
--- a/templates/pages/release_upload.php
+++ b/templates/pages/release_upload.php
@@ -5,8 +5,6 @@
<?php if ($displayForm): ?>
<h1>Upload New Release</h1>
- <?php $this->insert('includes/pie.php'); ?>
-
<?php if ($success): ?>
<div class="success">
Version