function lingotek_support_footer in Lingotek Translation 7.3
Same name and namespace in other branches
- 7.7 lingotek.util.inc \lingotek_support_footer()
- 7.2 lingotek.util.inc \lingotek_support_footer()
- 7.4 lingotek.util.inc \lingotek_support_footer()
- 7.5 lingotek.util.inc \lingotek_support_footer()
- 7.6 lingotek.util.inc \lingotek_support_footer()
Outputs the support footer renderable array.
9 calls to lingotek_support_footer()
- lingotek_community_select_form in ./
lingotek.setup.inc - Community Select Screen (for Current Users) - Form
- lingotek_community_settings_select_form in ./
lingotek.setup.inc - Project Select Screen (for Current Users) - Form Layout
- lingotek_dashboard in ./
lingotek.dashboard.inc - Tab: Dashboard - The main Lingotek dashboard page.
- lingotek_help in ./
lingotek.module - lingotek_setup_account_settings_form in ./
lingotek.setup.inc - Account Settings (for Current Users) - Form
File
- ./
lingotek.util.inc, line 341 - Utility functions.
Code
function lingotek_support_footer() {
return array(
'#type' => 'markup',
'#markup' => theme('table', array(
'header' => array(),
'rows' => array(
array(
t('<strong>Support Hours:</strong><br>9am - 6pm MDT'),
t('<strong>Phone:</strong><br> (801) 331-7777'),
t('<strong>Email:</strong><br> <a href="mailto:support@lingotek.com">support@lingotek.com</a>'),
),
),
'attributes' => array(
'style' => 'width:500px; margin-top: 20px;',
),
)),
);
}