You are here

function ctools_ajax_sample_show_sheep in Chaos Tool Suite (ctools) 6

Same name and namespace in other branches
  1. 7 ctools_ajax_sample/ctools_ajax_sample.module \ctools_ajax_sample_show_sheep()

Provide some output for our sheep.

1 string reference to 'ctools_ajax_sample_show_sheep'
ctools_ajax_sample_animals in ctools_ajax_sample/ctools_ajax_sample.module
Get a list of our animals and associated forms.

File

ctools_ajax_sample/ctools_ajax_sample.module, line 548
Sample AJAX functionality so people can see some of the CTools AJAX features in use.

Code

function ctools_ajax_sample_show_sheep($object) {
  return t('You have a @type sheep named "@name".', array(
    '@type' => $object->sheep,
    '@name' => $object->name,
  ));
}