function 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 615

Code

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