function theme_login_destination_destination in Login Destination 7
Render a destination of login destination rule.
1 theme call to theme_login_destination_destination()
- login_destination_overview_form in ./
login_destination.admin.inc - Form for editing an entire login destination at once.
File
- ./
login_destination.admin.inc, line 259 - Admin page callback file for the Login Destination module.
Code
function theme_login_destination_destination($variables) {
$output = nl2br(check_plain($variables['destination']));
if (empty($output)) {
$output = '<i>' . t('Empty') . '</i>';
}
return $output;
}