1 |
1 |
bartman3000 |
<?php
|
2 |
|
|
/**
|
3 |
|
|
* EzPageflip extension for eZ Publish
|
4 |
|
|
* Written by Bartek Olewiński <bartman300@gmail.com>
|
5 |
|
|
* Copyright (C) 2011. Bartek Olewiński. All rights reserved.
|
6 |
|
|
* http://www.bartman3000.com
|
7 |
|
|
*
|
8 |
|
|
* This program is free software; you can redistribute it and/or
|
9 |
|
|
* modify it under the terms of the GNU General Public License
|
10 |
|
|
* as published by the Free Software Foundation; version 2 of the License.
|
11 |
|
|
*
|
12 |
|
|
* This program is distributed in the hope that it will be useful,
|
13 |
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
14 |
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
15 |
|
|
* GNU General Public License for more details.
|
16 |
|
|
*
|
17 |
|
|
* You should have received a copy of the GNU General Public License
|
18 |
|
|
* along with this program; if not, write to the Free Software
|
19 |
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
20 |
|
|
*/
|
21 |
|
|
|
22 |
|
|
class PageFlipInfo
|
23 |
|
|
{
|
24 |
|
|
static function info()
|
25 |
|
|
{
|
26 |
|
|
|
27 |
|
|
'Name' => "PageFlip extension for eZ Publish",
|
28 |
|
|
'Version' => "1.0",
|
29 |
|
|
'Author' => "<a href='http://www.bartman3000.com'>Bartek Olewiński</a>",
|
30 |
|
|
'Copyright' => "Copyright (C) 2011 Bartek Olewiński",
|
31 |
|
|
'License' => "GNU General Public License v2.0",
|
32 |
|
|
'Includes the following third-party software' => array( 'Name' => 'Dynamic Page Flip',
|
33 |
|
|
'Version' => '2',
|
34 |
|
|
'Copyright' => 'Copyright (c) 2006 Brett Tackaberry'
|
35 |
|
|
'License' => 'General Public License',
|
36 |
|
|
'For more information' => 'http://76design.ca/pageflip' ),
|
37 |
|
|
'Includes the following third-party software (2)' => array( 'Name' => 'SWFObject',
|
38 |
|
|
'Version' => "2.2",
|
39 |
|
|
'License' => 'The MIT License',
|
40 |
|
|
'For more information' => 'http://code.google.com/p/swfobject'
|
41 |
|
|
)
|
42 |
|
|
);
|
43 |
|
|
}
|
44 |
|
|
}
|
45 |
|
|
?>
|