Index: admin_menu.api.php =================================================================== RCS file: admin_menu.api.php diff -N admin_menu.api.php --- /dev/null 1 Jan 1970 00:00:00 -0000 +++ admin_menu.api.php 18 Jul 2009 22:49:18 -0000 @@ -0,0 +1,50 @@ + t('My item'), + // #attributes are used for list items (LI). Note the special syntax for + // the 'class' attribute. + '#attributes' => array('class' => array('mymodule-myitem')), + '#href' => 'mymodule/path', + // #options are passed to l(). Note that you can apply 'attributes' for + // links (A) here. + '#options' => array( + 'query' => drupal_get_destination(), + ), + // #weight controls the order of links in the resulting item list. + '#weight' => 50, + ); + // Add link to manually run cron. + $content['links']['myitem']['cron'] = array( + '#title' => t('Run cron'), + '#access' => user_access('administer site configuration'), + '#href' => 'admin/reports/status/run-cron', + ); +} +