Root/
| |
|---|---|
| Source at commit HEAD created 10 months 9 days ago. By dpobel, Added files about move to Github | |
| 1 | <?php |
| 2 | /** |
| 3 | * $Id: ezinfo.php 2 2009-10-25 21:48:12Z dpobel $ |
| 4 | * $HeadURL: http://svn.projects.ez.no/autostatus/tags/autostatus_0.1/extension/autostatus/ezinfo.php $ |
| 5 | * |
| 6 | * SOFTWARE NAME: autostatus |
| 7 | * SOFTWARE RELEASE: 0.1 |
| 8 | * COPYRIGHT NOTICE: Copyright (C) 2009 Damien POBEL |
| 9 | * SOFTWARE LICENSE: GNU General Public License v2.0 |
| 10 | * NOTICE: > |
| 11 | * This program is free software; you can redistribute it and/or |
| 12 | * modify it under the terms of version 2.0 of the GNU General |
| 13 | * Public License as published by the Free Software Foundation. |
| 14 | * |
| 15 | * This program is distributed in the hope that it will be useful, |
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 18 | * GNU General Public License for more details. |
| 19 | * |
| 20 | * You should have received a copy of version 2.0 of the GNU General |
| 21 | * Public License along with this program; if not, write to the Free |
| 22 | * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, |
| 23 | * MA 02110-1301, USA. |
| 24 | */ |
| 25 | |
| 26 | class autostatusInfo |
| 27 | { |
| 28 | static function info() |
| 29 | { |
| 30 | return array( 'Name' => 'Auto Status', |
| 31 | 'Version' => '0.1', |
| 32 | 'Copyright' => 'Copyright (C) 2009 Damien POBEL', |
| 33 | 'License' => 'GNU General Public License v2.0' ); |
| 34 | } |
| 35 | |
| 36 | } |
| 37 | |
| 38 | |
| 39 | ?> |
| 40 | |
