You are here

function flickrapi_oauth_clear_form in Flickr API 7

Same name and namespace in other branches
  1. 7.2 flickrapi.admin.inc \flickrapi_oauth_clear_form()

Form builder: confirm to delete OAuth authentication token.

1 string reference to 'flickrapi_oauth_clear_form'
flickrapi_menu in ./flickrapi.module
Implements hook_menu().

File

./flickrapi.admin.inc, line 227
Admin settings form and OAuth authentication integration

Code

function flickrapi_oauth_clear_form($form, &$form_state) {
  return confirm_form($form, t('Are you sure you want to delete the Flickr access token?'), 'admin/config/media/flickrapi', t('This action can not be undone.'), t('Delete Flickr access token'), t('Cancel'));
}