Created
November 16, 2011 18:21
-
-
Save mattyohe/1370876 to your computer and use it in GitHub Desktop.
My Drupal 7 Profiler script that corrects taxonomy vocabulary and loads terms from an xml file
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
!function_exists('profiler_v2') ? require_once('libraries/profiler/profiler.inc') : FALSE; | |
profiler_v2('ppc_test'); | |
/** | |
* Implement hook_install(). | |
* | |
* Perform actions to set up the site for this profile. | |
*/ | |
function ppc_test_install() { | |
/* Do nothing here */ | |
} | |
/** | |
* Implements hook_install_tasks(). | |
*/ | |
function ppc_test_install_tasks($install_state) { | |
include_once('libraries/profiler/profiler_api.inc'); | |
return array( | |
'ppc_tax' => array( | |
'display_name' => st('Set up taxonomies'), | |
'display' => TRUE, | |
'run' => INSTALL_TASK_RUN_IF_NOT_COMPLETED, | |
'type' => 'batch', | |
'function' => 'ppc_test_update_tax' | |
), | |
'profiler_install_profile_complete' => array(), | |
); | |
} | |
function ppc_test_update_tax(){ | |
$xml; | |
$vocab_path = DRUPAL_ROOT . '/profiles/ppc_test/vocab.xml'; | |
if (file_exists($vocab_path)) { | |
$xml = simplexml_load_file($vocab_path); | |
} else { | |
exit('Failed to open ' . $vocab_path); | |
} | |
$vid = 'vid'; | |
$name = 'name'; | |
// Get every taxonomy_vocabulary row as $node | |
foreach($xml->children()->children() as $node){ | |
$cur_vid = $node->$vid; | |
$cur_name = $node->$name; | |
$result = db_update('taxonomy_vocabulary') | |
->fields(array('vid' => $cur_vid)) | |
->condition('name', $cur_name) | |
->execute(); | |
} | |
$tid = 'tid'; | |
$description = 'description'; | |
$format = 'format'; | |
$weight = 'weight'; | |
$term_path = DRUPAL_ROOT . '/profiles/ppc_test/terms.xml'; | |
if (file_exists($term_path)) { | |
$xml = simplexml_load_file($term_path); | |
} else { | |
exit('Failed to open ' . $term_path); | |
} | |
foreach($xml->children()->children() as $node){ | |
$cur_tid = $node->$tid; | |
$cur_vid = $node->$vid; | |
$cur_name = $node->$name; | |
$cur_description = $node->$description; | |
$cur_format = $node->$format; | |
$cur_weight = $node->$weight; | |
db_insert('taxonomy_term_data') | |
->fields(array( | |
'tid' => $cur_tid, | |
'vid' => $cur_vid, | |
'name' => $cur_name, | |
'description' => $cur_description, | |
'format' => $cur_format, | |
'weight' => $cur_weight | |
)) | |
->execute(); | |
} | |
$hierarchy_path = DRUPAL_ROOT . '/profiles/ppc_test/term_hierarchy.xml'; | |
if (file_exists($hierarchy_path)) { | |
$xml = simplexml_load_file($hierarchy_path); | |
} else { | |
exit('Failed to open ' . $hierarchy_path); | |
} | |
$parent = 'parent'; | |
foreach($xml->children()->children() as $node){ | |
$cur_tid = $node->$tid; | |
$cur_parent = $node->$parent; | |
db_insert('taxonomy_term_hierarchy') | |
->fields(array( | |
'tid' => $cur_tid, | |
'parent' => $cur_parent | |
)) | |
->execute(); | |
} | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment