function views_ui_clone_title

Title callback for the views clone form.

Parameters

\Drupal\views\ViewExecutable $view: The view to clone.

1 string reference to 'views_ui_clone_title'
views_ui_menu in drupal/core/modules/views/views_ui/views_ui.module
Implements hook_menu().

File

drupal/core/modules/views/views_ui/views_ui.module, line 402
Provide structure for the administrative interface to Views.

Code

function views_ui_clone_title(ViewUI $view) {
  return t('Clone of @human_name', array(
    '@human_name' => $view
      ->getHumanName(),
  ));
}