Setting module weights:
Drupal 7:
Drupal 8:
To set a module's weight relative to another, a
Drupal 7:
<?php
// Set a module's weight.
db_update('system')
->fields(array('weight' => $weight))
->condition('name', $mymodule)
->execute();
?>
<?php
module_set_weight($mymodule, $weight);
?>
module_get_weight function is planned.
No comments:
Post a Comment