12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?php
- function _title_install_set_weight($weight) {
- db_update('system')
- ->fields(array('weight' => $weight))
- ->condition('name', 'title')
- ->execute();
- }
- function title_install() {
-
-
- _title_install_set_weight(100);
- }
- function title_update_7001() {
- _title_install_set_weight(100);
- }
- function title_update_7002() {
- $variables = array();
- foreach (variable_get('title_auto_attach', array()) as $variable) {
- $pieces = explode(':', $variable);
- $variables['title_' . $pieces[0]]['auto_attach'][$pieces[1]] = $pieces[1];
- }
- foreach ($variables as $name => $value) {
- variable_set($name, $value);
- }
- variable_del('title_auto_attach');
- }
|