function form_field($id, $name, $label, $value, $type, $options = array(), $args = array(), $wrap = false)
 {
     if (!$label) {
         $label = $id;
     }
     $label_args = is_array($args) && array_key_exists('label_args', $args) ? $args['label_args'] : false;
     return Slickr_Flickr_Utils::form_field($id, $name, $this->tooltips->tip($label, $label_args), $value, $type, $options, $args, $wrap);
 }