You are here

function lingotek_toolbar in Lingotek Translation 8

Same name and namespace in other branches
  1. 8.2 lingotek.module \lingotek_toolbar()
  2. 4.0.x lingotek.module \lingotek_toolbar()
  3. 3.0.x lingotek.module \lingotek_toolbar()
  4. 3.1.x lingotek.module \lingotek_toolbar()
  5. 3.2.x lingotek.module \lingotek_toolbar()
  6. 3.3.x lingotek.module \lingotek_toolbar()
  7. 3.4.x lingotek.module \lingotek_toolbar()
  8. 3.5.x lingotek.module \lingotek_toolbar()
  9. 3.6.x lingotek.module \lingotek_toolbar()
  10. 3.7.x lingotek.module \lingotek_toolbar()
  11. 3.8.x lingotek.module \lingotek_toolbar()

Implements hook_toolbar().

File

./lingotek.module, line 21
lingotek.module

Code

function lingotek_toolbar() {
  $items = array();
  $items['translation'] = array(
    '#type' => 'toolbar_item',
    '#attached' => array(
      'library' => array(
        'lingotek/lingotek.icons',
      ),
    ),
  );
  return $items;
}