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