You are here

function theme_ajax_form_entity_deleted in Ajax form entity 7.x

Same name and namespace in other branches
  1. 7 ajax_form_entity.module \theme_ajax_form_entity_deleted()

Theme function for deleted rendered output.

1 string reference to 'theme_ajax_form_entity_deleted'
ajax_form_entity_theme in ./ajax_form_entity.module
Implementation of hook_theme()s Render some basic output for this module.
1 theme call to theme_ajax_form_entity_deleted()
ajax_form_entity_entity_delete_callback in ./ajax_form_entity.callback.inc
Ajax callback for deletion (ajax delete link).

File

./ajax_form_entity.module, line 483
Ajaxify entity forms.

Code

function theme_ajax_form_entity_deleted($vars) {
  $output = '<div id="deleted">';
  $output .= t($vars['content']);
  $output .= '</div>';
  return $output;
}