コード例 #1
0
ファイル: ContactForm.class.php プロジェクト: yasirgit/afids
 public function configure()
 {
     unset($this['id'], $this['person_id'], $this['date_added'], $this['date_updated']);
     $sources = RefSourcePeer::getForSelectParent();
     $types = ContactTypePeer::getForSelectParent();
     $companies = CompanyPeer::getForSelectParent();
     # Fields
     $this->widgetSchema['ref_source_id'] = new sfWidgetFormChoice(array('choices' => $sources), array('class' => 'text narrow'));
     $this->widgetSchema['send_app_format'] = new sfWidgetFormInput(array(), array('class' => 'text'));
     $this->widgetSchema['comment'] = new sfWidgetFormInput(array(), array('class' => 'text'));
     $this->widgetSchema['letter_sent'] = new widgetFormDate(array('change_year' => true, 'change_month' => true, 'format_date' => array('js' => 'mm/dd/yy', 'php' => 'm/d/Y')), array('class' => 'text narrow'));
     $this->widgetSchema['contact_type_id'] = new sfWidgetFormChoice(array('choices' => $types), array('class' => 'text narrow'));
     $this->widgetSchema['company_name'] = new sfWidgetFormChoice(array('choices' => $companies), array('class' => 'text narrow'));
     $this->widgetSchema->setLabels(array('person_id' => 'Person'));
     $this->widgetSchema->setLabels(array('ref_source_id' => 'Ref Source'));
     $this->widgetSchema->setLabels(array('send_app_format' => 'Send Application Format'));
     $this->widgetSchema->setLabels(array('comment' => 'Comment'));
     $this->widgetSchema->setLabels(array('letter_sent' => 'Letter Sent'));
     $this->widgetSchema->setLabels(array('contact_type_id' => 'Contact Type'));
     $this->widgetSchema->setLabels(array('company_name' => 'Company Name'));
     $this->validatorSchema['ref_source_id'] = new sfValidatorInteger(array('required' => false));
     $this->validatorSchema['send_app_format'] = new sfValidatorString(array('required' => false));
     $this->validatorSchema['comment'] = new sfValidatorString(array('required' => false));
     $this->validatorSchema['letter_sent'] = new sfValidatorDate(array('max' => time(), 'required' => false), array('invalid' => 'Letter sent is invalid !.'));
     $this->validatorSchema['contact_type_id'] = new sfValidatorInteger(array('required' => false));
     $this->validatorSchema['company_name'] = new sfValidatorInteger(array('required' => false));
     $this->widgetSchema->setNameFormat('contact[%s]');
 }
コード例 #2
0
ファイル: DonorForm.class.php プロジェクト: yasirgit/afids
 public function configure()
 {
     unset($this['id'], $this['date_added'], $this['date_updated']);
     $affiliations = AffiliationPeer::getForSelectParent();
     $companies = CompanyPeer::getForSelectParent();
     $persons = PersonPeer::getForSelectParent();
     # Fields
     $this->widgetSchema['co_donor_id'] = new sfWidgetFormInput(array(), array('class' => 'text narrow'));
     $this->widgetSchema['affiliation_id'] = new sfWidgetFormChoice(array('choices' => $affiliations));
     $this->widgetSchema['block_mailings'] = new sfWidgetFormInputCheckbox(array(), array('value' => 1));
     $this->widgetSchema['prospect_comment'] = new sfWidgetFormTextarea(array(), array('class' => 'text'));
     $this->widgetSchema['salutation'] = new sfWidgetFormInput(array(), array('class' => 'text'));
     $this->widgetSchema['company_id'] = new sfWidgetFormChoice(array('choices' => $companies));
     $this->widgetSchema['position'] = new sfWidgetFormInput(array(), array('class' => 'text'));
     $this->widgetSchema['donor_potential'] = new sfWidgetFormInput(array(), array('class' => 'text'));
     $this->widgetSchema['person_id'] = new sfWidgetFormChoice(array('choices' => $persons));
     $this->widgetSchema->setLabels(array('co_donor_id' => 'Co Donor Id'));
     $this->widgetSchema->setLabels(array('affiliation_id' => 'Affiliation Id'));
     $this->widgetSchema->setLabels(array('block_mailings' => 'Block mailings'));
     $this->widgetSchema->setLabels(array('prospect_comment' => 'Prospect comment'));
     $this->widgetSchema->setLabels(array('salutation' => 'Salutation'));
     $this->widgetSchema->setLabels(array('company_id' => 'Company'));
     $this->widgetSchema->setLabels(array('position' => 'Position'));
     $this->widgetSchema->setLabels(array('donor_potential' => 'Donor potential'));
     $this->widgetSchema->setLabels(array('person_id' => 'Person'));
     $this->validatorSchema['co_donor_id'] = new sfValidatorInteger(array('required' => false), array('invalid' => 'Co donor id must be in number format !'));
     $this->validatorSchema['affiliation_id'] = new sfValidatorInteger(array('required' => false));
     $this->validatorSchema['block_mailings'] = new sfValidatorInteger(array('required' => false));
     $this->validatorSchema['prospect_comment'] = new sfValidatorString(array('required' => false));
     $this->validatorSchema['salutation'] = new sfValidatorString(array('required' => false));
     $this->validatorSchema['company_id'] = new sfValidatorInteger(array('required' => false));
     $this->validatorSchema['position'] = new sfValidatorString(array('required' => false));
     $this->validatorSchema['donor_potential'] = new sfValidatorInteger(array('required' => false), array('invalid' => 'Donor porential must be in number format !'));
     $this->validatorSchema['person_id'] = new sfValidatorInteger(array('required' => false));
     $this->widgetSchema->setNameFormat('donor[%s]');
 }
コード例 #3
0
<?php

$categoryId = $product->getCompanyId();
if ($categoryId) {
    $c = new Criteria();
    $c->add(CompanyPeer::ID, $categoryId);
    $data = CompanyPeer::doSelect($c);
    echo $data[0]->getName();
} else {
    echo "-";
}
コード例 #4
0
ファイル: BaseElement.php プロジェクト: Chipusy/lkbroker
 /**
  * Get the associated Company object
  *
  * @param      PropelPDO Optional Connection object.
  * @return     Company The associated Company object.
  * @throws     PropelException
  */
 public function getCompany(PropelPDO $con = null)
 {
     if ($this->aCompany === null && $this->company_id !== null) {
         $this->aCompany = CompanyPeer::retrieveByPk($this->company_id);
         /* The following can be used additionally to
         		   guarantee the related object contains a reference
         		   to this object.  This level of coupling may, however, be
         		   undesirable since it could result in an only partially populated collection
         		   in the referenced object.
         		   $this->aCompany->addElements($this);
         		 */
     }
     return $this->aCompany;
 }
コード例 #5
0
ファイル: BaseCompany.php プロジェクト: Chipusy/lkbroker
 /**
  * Populates the object using an array.
  *
  * This is particularly useful when populating an object from one of the
  * request arrays (e.g. $_POST).  This method goes through the column
  * names, checking to see whether a matching key exists in populated
  * array. If so the setByName() method is called for that column.
  *
  * You can specify the key type of the array by additionally passing one
  * of the class type constants BasePeer::TYPE_PHPNAME, BasePeer::TYPE_STUDLYPHPNAME,
  * BasePeer::TYPE_COLNAME, BasePeer::TYPE_FIELDNAME, BasePeer::TYPE_NUM.
  * The default key type is the column's phpname (e.g. 'AuthorId')
  *
  * @param      array  $arr     An array to populate the object from.
  * @param      string $keyType The type of keys the array uses.
  * @return     void
  */
 public function fromArray($arr, $keyType = BasePeer::TYPE_PHPNAME)
 {
     $keys = CompanyPeer::getFieldNames($keyType);
     if (array_key_exists($keys[0], $arr)) {
         $this->setId($arr[$keys[0]]);
     }
     if (array_key_exists($keys[1], $arr)) {
         $this->setName($arr[$keys[1]]);
     }
     if (array_key_exists($keys[2], $arr)) {
         $this->setPatron($arr[$keys[2]]);
     }
     if (array_key_exists($keys[3], $arr)) {
         $this->setPhone($arr[$keys[3]]);
     }
     if (array_key_exists($keys[4], $arr)) {
         $this->setFax($arr[$keys[4]]);
     }
     if (array_key_exists($keys[5], $arr)) {
         $this->setSite($arr[$keys[5]]);
     }
     if (array_key_exists($keys[6], $arr)) {
         $this->setCity($arr[$keys[6]]);
     }
     if (array_key_exists($keys[7], $arr)) {
         $this->setAdress($arr[$keys[7]]);
     }
     if (array_key_exists($keys[8], $arr)) {
         $this->setProcent($arr[$keys[8]]);
     }
     if (array_key_exists($keys[9], $arr)) {
         $this->setComment($arr[$keys[9]]);
     }
     if (array_key_exists($keys[10], $arr)) {
         $this->setOurComment($arr[$keys[10]]);
     }
 }
コード例 #6
0
ファイル: BaseElementPeer.php プロジェクト: Chipusy/lkbroker
 /**
  * Selects a collection of Element objects pre-filled with all related objects except ElementStatus.
  *
  * @param      Criteria  $criteria
  * @param      PropelPDO $con
  * @param      String    $join_behavior the type of joins to use, defaults to Criteria::LEFT_JOIN
  * @return     array Array of Element objects.
  * @throws     PropelException Any exceptions caught during processing will be
  *		 rethrown wrapped into a PropelException.
  */
 public static function doSelectJoinAllExceptElementStatus(Criteria $criteria, $con = null, $join_behavior = Criteria::LEFT_JOIN)
 {
     $criteria = clone $criteria;
     // Set the correct dbName if it has not been overridden
     // $criteria->getDbName() will return the same object if not set to another value
     // so == check is okay and faster
     if ($criteria->getDbName() == Propel::getDefaultDB()) {
         $criteria->setDbName(self::DATABASE_NAME);
     }
     ElementPeer::addSelectColumns($criteria);
     $startcol2 = ElementPeer::NUM_COLUMNS - ElementPeer::NUM_LAZY_LOAD_COLUMNS;
     CategoryPeer::addSelectColumns($criteria);
     $startcol3 = $startcol2 + (CategoryPeer::NUM_COLUMNS - CategoryPeer::NUM_LAZY_LOAD_COLUMNS);
     CompanyPeer::addSelectColumns($criteria);
     $startcol4 = $startcol3 + (CompanyPeer::NUM_COLUMNS - CompanyPeer::NUM_LAZY_LOAD_COLUMNS);
     $criteria->addJoin(ElementPeer::CATEGORY_ID, CategoryPeer::ID, $join_behavior);
     $criteria->addJoin(ElementPeer::COMPANY_ID, CompanyPeer::ID, $join_behavior);
     // symfony_behaviors behavior
     foreach (sfMixer::getCallables(self::getMixerPreSelectHook(__FUNCTION__)) as $sf_hook) {
         call_user_func($sf_hook, 'BaseElementPeer', $criteria, $con);
     }
     $stmt = BasePeer::doSelect($criteria, $con);
     $results = array();
     while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
         $key1 = ElementPeer::getPrimaryKeyHashFromRow($row, 0);
         if (null !== ($obj1 = ElementPeer::getInstanceFromPool($key1))) {
             // We no longer rehydrate the object, since this can cause data loss.
             // See http://propel.phpdb.org/trac/ticket/509
             // $obj1->hydrate($row, 0, true); // rehydrate
         } else {
             $cls = ElementPeer::getOMClass(false);
             $obj1 = new $cls();
             $obj1->hydrate($row);
             ElementPeer::addInstanceToPool($obj1, $key1);
         }
         // if obj1 already loaded
         // Add objects for joined Category rows
         $key2 = CategoryPeer::getPrimaryKeyHashFromRow($row, $startcol2);
         if ($key2 !== null) {
             $obj2 = CategoryPeer::getInstanceFromPool($key2);
             if (!$obj2) {
                 $cls = CategoryPeer::getOMClass(false);
                 $obj2 = new $cls();
                 $obj2->hydrate($row, $startcol2);
                 CategoryPeer::addInstanceToPool($obj2, $key2);
             }
             // if $obj2 already loaded
             // Add the $obj1 (Element) to the collection in $obj2 (Category)
             $obj2->addElement($obj1);
         }
         // if joined row is not null
         // Add objects for joined Company rows
         $key3 = CompanyPeer::getPrimaryKeyHashFromRow($row, $startcol3);
         if ($key3 !== null) {
             $obj3 = CompanyPeer::getInstanceFromPool($key3);
             if (!$obj3) {
                 $cls = CompanyPeer::getOMClass(false);
                 $obj3 = new $cls();
                 $obj3->hydrate($row, $startcol3);
                 CompanyPeer::addInstanceToPool($obj3, $key3);
             }
             // if $obj3 already loaded
             // Add the $obj1 (Element) to the collection in $obj3 (Company)
             $obj3->addElement($obj1);
         }
         // if joined row is not null
         $results[] = $obj1;
     }
     $stmt->closeCursor();
     return $results;
 }
コード例 #7
0
ファイル: BaseCompanyPeer.php プロジェクト: Chipusy/lkbroker
 /**
  * Retrieve multiple objects by pkey.
  *
  * @param      array $pks List of primary keys
  * @param      PropelPDO $con the connection to use
  * @throws     PropelException Any exceptions caught during processing will be
  *		 rethrown wrapped into a PropelException.
  */
 public static function retrieveByPKs($pks, PropelPDO $con = null)
 {
     if ($con === null) {
         $con = Propel::getConnection(CompanyPeer::DATABASE_NAME, Propel::CONNECTION_READ);
     }
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria(CompanyPeer::DATABASE_NAME);
         $criteria->add(CompanyPeer::ID, $pks, Criteria::IN);
         $objs = CompanyPeer::doSelect($criteria, $con);
     }
     return $objs;
 }
コード例 #8
0
ファイル: BaseDonor.php プロジェクト: yasirgit/afids
 /**
  * Get the associated Company object
  *
  * @param      PropelPDO Optional Connection object.
  * @return     Company The associated Company object.
  * @throws     PropelException
  */
 public function getCompany(PropelPDO $con = null)
 {
     if ($this->aCompany === null && $this->company_id !== null) {
         $c = new Criteria(CompanyPeer::DATABASE_NAME);
         $c->add(CompanyPeer::ID, $this->company_id);
         $this->aCompany = CompanyPeer::doSelectOne($c, $con);
         /* The following can be used additionally to
         		   guarantee the related object contains a reference
         		   to this object.  This level of coupling may, however, be
         		   undesirable since it could result in an only partially populated collection
         		   in the referenced object.
         		   $this->aCompany->addDonors($this);
         		 */
     }
     return $this->aCompany;
 }
コード例 #9
0
ファイル: _form_fieldset.php プロジェクト: Chipusy/lkbroker
			</div>
		</div>
	</div>
	
	
	<div id="company">
		<div class="sf_admin_form_row sf_admin_text sf_admin_form_field_company_price" style="height:30px;">
			<div>
				<label for="element_company">Компания продавец</label>
				<div class="content" id="element_company_content" height="20">
					
					<div id="name" style="float:left;">
						<select name="element_company" id="element_company" size="1">
							<option value=""></option>
							<?php 
foreach (CompanyPeer::getAll() as $key2 => $value2) {
    ?>
								<option <?php 
    echo $Element->getCompanyId() == $value2->getId() ? 'selected' : '';
    ?>
 value="<?php 
    echo $value2->getId();
    ?>
"><?php 
    echo $value2->getName();
    ?>
</option>
							<?php 
}
?>
						</select>
コード例 #10
0
ファイル: BaseDonorPeer.php プロジェクト: yasirgit/afids
 /**
  * Selects a collection of Donor objects pre-filled with all related objects except Person.
  *
  * @param      Criteria  $c
  * @param      PropelPDO $con
  * @param      String    $join_behavior the type of joins to use, defaults to Criteria::LEFT_JOIN
  * @return     array Array of Donor objects.
  * @throws     PropelException Any exceptions caught during processing will be
  *		 rethrown wrapped into a PropelException.
  */
 public static function doSelectJoinAllExceptPerson(Criteria $c, $con = null, $join_behavior = Criteria::LEFT_JOIN)
 {
     $c = clone $c;
     // Set the correct dbName if it has not been overridden
     // $c->getDbName() will return the same object if not set to another value
     // so == check is okay and faster
     if ($c->getDbName() == Propel::getDefaultDB()) {
         $c->setDbName(self::DATABASE_NAME);
     }
     DonorPeer::addSelectColumns($c);
     $startcol2 = DonorPeer::NUM_COLUMNS - DonorPeer::NUM_LAZY_LOAD_COLUMNS;
     AffiliationPeer::addSelectColumns($c);
     $startcol3 = $startcol2 + (AffiliationPeer::NUM_COLUMNS - AffiliationPeer::NUM_LAZY_LOAD_COLUMNS);
     CompanyPeer::addSelectColumns($c);
     $startcol4 = $startcol3 + (CompanyPeer::NUM_COLUMNS - CompanyPeer::NUM_LAZY_LOAD_COLUMNS);
     $c->addJoin(array(DonorPeer::AFFILIATION_ID), array(AffiliationPeer::ID), $join_behavior);
     $c->addJoin(array(DonorPeer::COMPANY_ID), array(CompanyPeer::ID), $join_behavior);
     $stmt = BasePeer::doSelect($c, $con);
     $results = array();
     while ($row = $stmt->fetch(PDO::FETCH_NUM)) {
         $key1 = DonorPeer::getPrimaryKeyHashFromRow($row, 0);
         if (null !== ($obj1 = DonorPeer::getInstanceFromPool($key1))) {
             // We no longer rehydrate the object, since this can cause data loss.
             // See http://propel.phpdb.org/trac/ticket/509
             // $obj1->hydrate($row, 0, true); // rehydrate
         } else {
             $omClass = DonorPeer::getOMClass();
             $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
             $obj1 = new $cls();
             $obj1->hydrate($row);
             DonorPeer::addInstanceToPool($obj1, $key1);
         }
         // if obj1 already loaded
         // Add objects for joined Affiliation rows
         $key2 = AffiliationPeer::getPrimaryKeyHashFromRow($row, $startcol2);
         if ($key2 !== null) {
             $obj2 = AffiliationPeer::getInstanceFromPool($key2);
             if (!$obj2) {
                 $omClass = AffiliationPeer::getOMClass();
                 $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
                 $obj2 = new $cls();
                 $obj2->hydrate($row, $startcol2);
                 AffiliationPeer::addInstanceToPool($obj2, $key2);
             }
             // if $obj2 already loaded
             // Add the $obj1 (Donor) to the collection in $obj2 (Affiliation)
             $obj2->addDonor($obj1);
         }
         // if joined row is not null
         // Add objects for joined Company rows
         $key3 = CompanyPeer::getPrimaryKeyHashFromRow($row, $startcol3);
         if ($key3 !== null) {
             $obj3 = CompanyPeer::getInstanceFromPool($key3);
             if (!$obj3) {
                 $omClass = CompanyPeer::getOMClass();
                 $cls = substr('.' . $omClass, strrpos('.' . $omClass, '.') + 1);
                 $obj3 = new $cls();
                 $obj3->hydrate($row, $startcol3);
                 CompanyPeer::addInstanceToPool($obj3, $key3);
             }
             // if $obj3 already loaded
             // Add the $obj1 (Donor) to the collection in $obj3 (Company)
             $obj3->addDonor($obj1);
         }
         // if joined row is not null
         $results[] = $obj1;
     }
     $stmt->closeCursor();
     return $results;
 }