You are here

profile-module-manager-bundle-actions-disabled.tpl.php in Profile Module Manager 7

Same filename and directory in other branches
  1. 7.2 templates/profile-module-manager-bundle-actions-disabled.tpl.php

File

templates/profile-module-manager-bundle-actions-disabled.tpl.php
View source
<?php

/* Variables:
 *
 * $enable_url : url to enable bundle
 * $demo_url : url for demo/more info of bundle
 */
?>

<?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);