function lingotek_toolbar in Lingotek Translation 8
Same name and namespace in other branches
- 8.2 lingotek.module \lingotek_toolbar()
- 4.0.x lingotek.module \lingotek_toolbar()
- 3.0.x lingotek.module \lingotek_toolbar()
- 3.1.x lingotek.module \lingotek_toolbar()
- 3.2.x lingotek.module \lingotek_toolbar()
- 3.3.x lingotek.module \lingotek_toolbar()
- 3.4.x lingotek.module \lingotek_toolbar()
- 3.5.x lingotek.module \lingotek_toolbar()
- 3.6.x lingotek.module \lingotek_toolbar()
- 3.7.x lingotek.module \lingotek_toolbar()
- 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;
}