[ Index ] |
|
Code source de eZ Publish 3.9.0 |
1 <?php 2 // 3 // Created on: <31-Sep-2004 16:31:33 bh> 4 // 5 // SOFTWARE NAME: eZ publish 6 // SOFTWARE RELEASE: 3.9.0 7 // BUILD VERSION: 17785 8 // COPYRIGHT NOTICE: Copyright (C) 1999-2006 eZ systems AS 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 27 include_once ( "lib/ezutils/classes/ezhttptool.php" ); 28 include_once ( "kernel/classes/ezsection.php" ); 29 include_once ( "kernel/common/template.php" ); 30 31 $http =& eZHTTPTool::instance(); 32 $SectionID =& $Params["SectionID"]; 33 $Module =& $Params["Module"]; 34 $Offset = $Params['Offset']; 35 $viewParameters = array( 'offset' => $Offset ); 36 37 $section = eZSection::fetch( $SectionID ); 38 39 if ( !$section ) 40 { 41 return $Module->handleError( EZ_ERROR_KERNEL_NOT_AVAILABLE, 'kernel' ); 42 } 43 44 $tpl =& templateInit(); 45 46 $tpl->setVariable( "view_parameters", $viewParameters ); 47 $tpl->setVariable( "section", $section ); 48 49 $Result = array(); 50 $Result['content'] =& $tpl->fetch( "design:section/view.tpl" ); 51 $Result['path'] = array( array( 'url' => false, 52 'text' => ezi18n( 'kernel/section', 'View section' ) ) ); 53 54 ?>
titre
Description
Corps
titre
Description
Corps
titre
Description
Corps
titre
Corps
Généré le : Sat Feb 24 10:30:04 2007 | par Balluche grâce à PHPXref 0.7 |