Development

Changeset 5952

You must first sign up to be able to contribute.

Changeset 5952

Show
Ignore:
Timestamp:
11/10/07 15:43:23 (1 year ago)
Author:
fabien
Message:

added missing public for some render methods

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/lib/widget/sfWidgetFormDate.class.php

    r5950 r5952  
    4343   * @see sfWidgetForm 
    4444   */ 
    45   function render($name, $value = null, $attributes = array(), $errors = array()) 
     45  public function render($name, $value = null, $attributes = array(), $errors = array()) 
    4646  { 
    4747    // convert value to a timestamp 
  • trunk/lib/widget/sfWidgetFormIdentity.class.php

    r5937 r5952  
    2222   * @see sfWidgetForm 
    2323   */ 
    24   function render($name, $value = null, $attributes = array(), $errors = array()) 
     24  public function render($name, $value = null, $attributes = array(), $errors = array()) 
    2525  { 
    2626    return $value; 
  • trunk/lib/widget/sfWidgetFormInput.class.php

    r5937 r5952  
    3838   * @see sfWidgetForm 
    3939   */ 
    40   function render($name, $value = null, $attributes = array(), $errors = array()) 
     40  public function render($name, $value = null, $attributes = array(), $errors = array()) 
    4141  { 
    4242    return $this->renderTag('input', array_merge(array('type' => $this->getOption('type'), 'name' => $name, 'value' => $value), $attributes)); 
  • trunk/lib/widget/sfWidgetFormInputCheckbox.class.php

    r5937 r5952  
    3232   * @see sfWidgetForm 
    3333   */ 
    34   function render($name, $value = null, $attributes = array(), $errors = array()) 
     34  public function render($name, $value = null, $attributes = array(), $errors = array()) 
    3535  { 
    3636    if ($value) 
  • trunk/lib/widget/sfWidgetFormSelect.class.php

    r5937 r5952  
    3838   * @see sfWidgetForm 
    3939   */ 
    40   function render($name, $value = null, $attributes = array(), $errors = array()) 
     40  public function render($name, $value = null, $attributes = array(), $errors = array()) 
    4141  { 
    4242    if ($this->getOption('multiple')) 
  • trunk/lib/widget/sfWidgetFormTextarea.class.php

    r5937 r5952  
    2222   * @see sfWidgetForm 
    2323   */ 
    24   function render($name, $value = null, $attributes = array(), $errors = array()) 
     24  public function render($name, $value = null, $attributes = array(), $errors = array()) 
    2525  { 
    2626    return $this->renderContentTag('textarea', self::escapeOnce($value), array_merge(array('name' => $name, 'cols' => 30, 'rows' => 4), $attributes)); 
  • trunk/lib/widget/sfWidgetFormTime.class.php

    r5950 r5952  
    4444   * @see sfWidgetForm 
    4545   */ 
    46   function render($name, $value = null, $attributes = array(), $errors = array()) 
     46  public function render($name, $value = null, $attributes = array(), $errors = array()) 
    4747  { 
    4848    // convert value to a timestamp