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 |
<?php
/**
*
* @package Icy Phoenix
* @version $Id$
* @copyright (c) 2008 Icy Phoenix
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
if (!defined('IN_ICYPHOENIX'))
{
die('Hacking attempt');
}
$layout_block_positions = array(
array('right', 'r'),
array('center', 'c'),
array('nav', 'n'),
array('xsnews', 'x'),
array('centerbottom', 'b'),
);
//$layout_count_positions = 5;
$layout_count_positions = sizeof($layout_block_positions);
?> |