root/ez_publish/myutils/trunk/ezinfo.php

Revision 318, 1.5 KB (checked in by llaumgui, 5 weeks ago)

correction des fichiers eZInfo

Line 
1<?php
2// SOFTWARE NAME: MyUtils
3// SOFTWARE RELEASE: 1.0.0
4// COPYRIGHT NOTICE: Copyright (c) 2007 Guillaume Kulakowski and contributors.
5// SOFTWARE LICENSE: GNU General Public License v2.0
6// NOTICE: >
7//    MyUtils is free software; you can redistribute it and/or modify
8//    it under the terms of the GNU General Public License as
9//    published by the Free Software Foundation; either version 2
10//    of the License, or (at your option) any later version.
11//
12//    MyUtils is distributed in the hope that it will be useful,
13//    but WITHOUT ANY WARRANTY; without even the implied warranty
14//    of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See
15//    the GNU General Public License for more details.
16//
17//    You should have received a copy of the GNU General Public
18//    License along with ezipb; if not, write to the Free Software
19//    Foundation, Inc., 59 Temple Place, Suite 330,
20//    Boston, MA  02111-1307  USA
21//    or visit http://www.gnu.org/licenses/gpl.html
22//
23// ## END COPYRIGHT, LICENSE AND WARRANTY NOTICE ##
24//
25
26class myutilsInfo
27{
28    static function info()
29    {
30        return array(   'Name'            => "MyUtils",
31                        'Version'         => "1.0.1",
32                        'Copyright'       => "Copyright (c) 2007-2008 Guillaume Kulakowski and contributors",
33                        'info_url'        => "http://trac.llaumgui.com/wiki/eZ%20Publish/MyUtils",
34                        'License'         => "GNU General Public License v2.0"
35                 );
36    }
37}
38?>
Note: See TracBrowser for help on using the browser.