To participate you must create an account on apostrophenow.org. If you have already done so, click Login.

Show
Ignore:
Timestamp:
07/14/10 12:14:31 (22 months ago)
Author:
johnnyoffline
Message:

i have some modified base classes probably from a build all

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • sandboxes/asandbox/trunk/lib/form/doctrine/apostrophePlugin/base/BaseaMediaItemForm.class.php

    r1564 r1754  
    1717    $this->setWidgets(array( 
    1818      'id'                    => new sfWidgetFormInputHidden(), 
     19      'lucene_dirty'          => new sfWidgetFormInputCheckbox(), 
    1920      'type'                  => new sfWidgetFormChoice(array('choices' => array('image' => 'image', 'video' => 'video', 'audio' => 'audio', 'pdf' => 'pdf'))), 
    2021      'service_url'           => new sfWidgetFormInputText(), 
     
    3738    $this->setValidators(array( 
    3839      'id'                    => new sfValidatorChoice(array('choices' => array($this->getObject()->get('id')), 'empty_value' => $this->getObject()->get('id'), 'required' => false)), 
     40      'lucene_dirty'          => new sfValidatorBoolean(array('required' => false)), 
    3941      'type'                  => new sfValidatorChoice(array('choices' => array(0 => 'image', 1 => 'video', 2 => 'audio', 3 => 'pdf'))), 
    4042      'service_url'           => new sfValidatorString(array('max_length' => 200, 'required' => false)),