You are here

function scald_switch_to_feature_form in Scald: Media Management made easy 7

Switch to feature form.

1 string reference to 'scald_switch_to_feature_form'
scald_admin_dashboard in includes/scald.admin.inc
The Scald Admin Dashboard.

File

includes/scald.admin.inc, line 737

Code

function scald_switch_to_feature_form() {
  $form = array();
  $form['text'] = array(
    '#markup' => '<p>' . t('You can now export your contexts with Features. This will break existing exports and you will have to review your existing features containing scald contexts.') . '</p>',
  );
  $form['submit'] = array(
    '#type' => 'submit',
    '#value' => t('Switch to Features Export'),
  );
  return $form;
}