1
|
<?php
|
2
|
// vim: filetype=php
|
3
|
|
4
|
require ("../CDM_DataPortal/CDM_DataPortal.profile);
|
5
|
|
6
|
/************************************************************
|
7
|
* BLOCKS *
|
8
|
************************************************************/
|
9
|
// Taxon tree
|
10
|
db_query(
|
11
|
"INSERT INTO {blocks} (module,delta,theme,status,weight,region,custom,throttle,visibility,pages,title)
|
12
|
VALUES ('%s', '%s', '%s', %d, %d, '%s', %d, %d, %d, '%s', '%s')",
|
13
|
'cdm_taxontree', 'cdm_tree', 'garland_EDIT', '1', '-9', 'left', '0', '0', '0', '', ''
|
14
|
);
|
15
|
// Search Taxa
|
16
|
db_query(
|
17
|
"INSERT INTO {blocks} (module,delta,theme,status,weight,region,custom,throttle,visibility,pages,title)
|
18
|
VALUES ('%s', '%s', '%s', %d, %d, '%s', %d, %d, %d, '%s', '%s')",
|
19
|
'cdm_dataportal', '2', 'garland', '1', '-10', 'left', '0', '0', '0', '', ''
|
20
|
);
|
21
|
|
22
|
?>
|