/**
 * object_doctrine_admin_check_list
 *
 * @param string $object 
 * @param string $method 
 * @param string $options 
 * @return void
 */
function object_doctrine_admin_check_list($object, $method, $options = array())
{
    return object_admin_check_list($object, $method, $options, '_get_doctrine_object_list');
}
Esempio n. 2
0
    <div class="clear_float"></div>

    <label class="label" for="audience">Rsvp</label>
    <div class="value">
      <?php 
if ($sf_request->hasError('audience')) {
    ?>
        <?php 
    echo form_error('audience', array('class' => 'form-error-msg'));
    ?>
      <?php 
}
?>
    
      <?php 
$value = object_admin_check_list($etime, 'getEtimeRsvp', array('control_name' => 'audience', 'through_class' => 'EtimeRsvp'));
echo $value ? $value : '&nbsp;';
?>
    </div>

    <div class="clear_float"></div>

    <label class="label" for="notes">Tags</label>
    <div class="value">
      <?php 
echo object_input_tag($etime, 'getEtimeTagString', array('class' => 'long'));
?>
    </div>

    <div class="clear_float"></div>