profile-module-manager-bundle-actions-disabled.tpl.php in Profile Module Manager 7
File
templates/profile-module-manager-bundle-actions-disabled.tpl.php
View source
<?php
?>
<?php
$links = array();
if (isset($enable_url)) {
$links[] = l(t('Enable'), $enable_url, array(
'attributes' => array(
'class' => array(
'bundle-enable-link',
),
),
'html' => TRUE,
));
}
if (isset($demo_url)) {
$links[] = l(t('More Information'), $demo_url, array(
'attributes' => array(
'class' => array(
'bundle-demo-link',
),
'target' => '_blank',
),
'html' => TRUE,
));
}
print join(' | ', $links);