drupalprojects / kalatheme

Mirror of http://drupal.org/project/kalatheme provided by hubdrop.
http://hubdrop.org/project/kalatheme
GNU General Public License v2.0
22 stars 29 forks source link

Render array for action links #293

Open soniktrooth opened 7 years ago

soniktrooth commented 7 years ago

menu_local_actions is being rendered with a theme function. A render array makes it adjustable by subthemes.

Out with :

    $variables['tabs']['#primary'][]['#markup'] = theme('menu_local_actions', array('menu_actions' => $variables['action_links'], 'attributes' => $dropdown_attributes));

In with :

    $variables['tabs']['#primary'][] = array(
      '#theme' => 'menu_local_actions',
      '#menu_actions' => $variables['action_links'],
      '#attributes' => $dropdown_attributes,
    );
soniktrooth commented 7 years ago

Also, just for reference this was needed in DENT-338