1<?php 2/** 3 * Delete Page Guard Plugin - Version Information 4 * 5 * Centralized version management for the plugin. 6 * This file is used by build scripts to maintain consistent versioning. 7 * 8 * @license GPL 2 (https://www.gnu.org/licenses/gpl-2.0.html) - see LICENSE.md 9 * @author Johann Duscher <jonny.dee@posteo.net> 10 * @copyright 2025 Johann Duscher 11 */ 12 13// Protect against direct call, but allow build scripts 14if (!defined('DOKU_INC') && php_sapi_name() !== 'cli') die(); 15 16return array ( 17 'version' => '1.0.0', 18 'date' => '2025-11-02', 19 'name' => 'Delete Page Guard', 20 'author' => 'Johann Duscher', 21 'email' => 'jonny.dee@posteo.net', 22 'url' => 'https://github.com/jonnydee/deletepageguard', 23); 24