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/filter/doctrine/apostrophePlugin/base/BaseaMediaItemFormFilter.class.php

    r1354 r1754  
    1414  { 
    1515    $this->setWidgets(array( 
     16      'lucene_dirty'          => new sfWidgetFormChoice(array('choices' => array('' => 'yes or no', 1 => 'yes', 0 => 'no'))), 
    1617      'type'                  => new sfWidgetFormChoice(array('choices' => array('' => '', 'image' => 'image', 'video' => 'video', 'audio' => 'audio', 'pdf' => 'pdf'))), 
    1718      'service_url'           => new sfWidgetFormFilterInput(), 
     
    3334 
    3435    $this->setValidators(array( 
     36      'lucene_dirty'          => new sfValidatorChoice(array('required' => false, 'choices' => array('', 1, 0))), 
    3537      'type'                  => new sfValidatorChoice(array('required' => false, 'choices' => array('image' => 'image', 'video' => 'video', 'audio' => 'audio', 'pdf' => 'pdf'))), 
    3638      'service_url'           => new sfValidatorPass(array('required' => false)), 
     
    105107    return array( 
    106108      'id'                    => 'Number', 
     109      'lucene_dirty'          => 'Boolean', 
    107110      'type'                  => 'Enum', 
    108111      'service_url'           => 'Text',