You are here

function metatags_quick_admin_path_based_edit_cancel in Meta tags quick 8.3

Same name and namespace in other branches
  1. 7.2 metatags_quick.admin.inc \metatags_quick_admin_path_based_edit_cancel()

Returns back to the metatags listing

_state

Parameters

type $form:

1 string reference to 'metatags_quick_admin_path_based_edit_cancel'
metatags_quick_admin_path_based_edit in ./metatags_quick.admin.inc
Displays a form to the user allowing him to edit the path and all the fields of the metatag entity associated with that path

File

./metatags_quick.admin.inc, line 480

Code

function metatags_quick_admin_path_based_edit_cancel($form, &$form_state) {
  if (isset($_GET['destination'])) {
    $form_state['redirect'] = $_GET['destination'];
  }
}