1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
<?php
/*
* Copyright 2006 Sony Computer Entertainment Inc.
*
* Licensed under the MIT Open Source License, for details please see license.txt or the website
* http://www.opensource.org/licenses/mit-license.php
*
*/
// INCLUDES
$inc = array();
global $meta;
global $includeList;
for( $i=0; $i<count( $bag['ref_elements'] ); $i++ )
{
if ( !in_array( $_globals['prefix'] . ucfirst( $bag['ref_elements'][$i] ), $includeList ) ) {
$inc[] = "#include <" . $_globals['prefix'] . "/" . $_globals['prefix'] . ucfirst( $bag['ref_elements'][$i] ) . ".h>";
$includeList[] = $_globals['prefix'] . ucfirst( $bag['ref_elements'][$i] );
}
}
if($meta[$bag['content_type']]['isAComplexType']) {
if ( !in_array( $_globals['prefix'] . ucfirst( $bag['content_type'] ), $includeList ) ) {
$inc[] = "#include <" . $_globals['prefix'] . "/" . $_globals['prefix'] . ucfirst( $bag['content_type'] ) . ".h>";
$includeList[] = $_globals['prefix'] . ucfirst( $bag['content_type'] );
}
}
if ( count( $inc ) ) { //only print if you have to include something
print implode( "\n", $inc ) . "\n";
}
$keys = array_keys( $bag['inline_elements'] );
if ( count( $keys ) > 0 )
{
foreach( $keys as $k )
{
print applyTemplate( 'INCLUDES', $bag['inline_elements'][ $k ] );
}
}
?>
|