function page_manager_page_form_clone

Entry point to clone a page.

1 string reference to 'page_manager_page_form_clone'
page_manager_page_build_subtask in page_manager/plugins/tasks/page.inc
Build a subtask array for a given page.

File

page_manager/plugins/tasks/page.admin.inc, line 1393

Code

function page_manager_page_form_clone($form, &$form_state) {
    $page =& $form_state['page']->subtask['subtask'];
    // This provides its own button because it does something totally different.
    unset($form['buttons']);
    $form['admin_title'] = array(
        '#type' => 'textfield',
        '#title' => t('Administrative title'),
        '#description' => t('The name of this page. This will appear in the administrative interface to easily identify it.'),
        '#default_value' => $page->admin_title,
    );
    $form['name'] = array(
        '#type' => 'machine_name',
        '#title' => t('Page name'),
        '#machine_name' => array(
            'exists' => 'page_manager_page_load',
            'source' => array(
                'admin_title',
            ),
        ),
        '#description' => t('Enter the name to the new page It must be unique and contain only alphanumeric characters and underscores.'),
    );
    // Path.
    $form['path'] = array(
        '#type' => 'textfield',
        '#title' => t('Path'),
        '#description' => t('The URL path to get to this page. You may create named placeholders for variable parts of the path by using %name for required elements and !name for optional elements. For example: "node/%node/foo", "forum/%forum" or "dashboard/!input". These named placeholders can be turned into contexts on the arguments form. You cannot use the same path as the original page.'),
        '#default_value' => $page->path,
    );
    $form['handlers'] = array(
        '#type' => 'checkbox',
        '#title' => t('Clone variants'),
        '#description' => t('If checked all variants associated with the page will be cloned as well. If not checked the page will be cloned without variants.'),
        '#default_value' => TRUE,
    );
    $form['submit'] = array(
        '#type' => 'submit',
        '#value' => t('Clone'),
    );
    return $form;
}