當前位置: 首頁>>代碼示例>>PHP>>正文


PHP ForeignKey::getPhpName方法代碼示例

本文整理匯總了PHP中Propel\Generator\Model\ForeignKey::getPhpName方法的典型用法代碼示例。如果您正苦於以下問題:PHP ForeignKey::getPhpName方法的具體用法?PHP ForeignKey::getPhpName怎麽用?PHP ForeignKey::getPhpName使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Propel\Generator\Model\ForeignKey的用法示例。


在下文中一共展示了ForeignKey::getPhpName方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: appendForeignKeyNode

 /**
  * Appends the generated <foreign-key> XML node to its parent node.
  *
  * @param ForeignKey $foreignKey The ForeignKey model instance
  * @param \DOMNode   $parentNode The parent DOMNode object
  */
 private function appendForeignKeyNode(ForeignKey $foreignKey, \DOMNode $parentNode)
 {
     $foreignKeyNode = $parentNode->appendChild($this->document->createElement('foreign-key'));
     $foreignKeyNode->setAttribute('foreignTable', $foreignKey->getForeignTableCommonName());
     if ($schema = $foreignKey->getForeignSchemaName()) {
         $foreignKeyNode->setAttribute('foreignSchema', $schema);
     }
     $foreignKeyNode->setAttribute('name', $foreignKey->getName());
     if ($phpName = $foreignKey->getPhpName()) {
         $foreignKeyNode->setAttribute('phpName', $phpName);
     }
     if ($refPhpName = $foreignKey->getRefPhpName()) {
         $foreignKeyNode->setAttribute('refPhpName', $refPhpName);
     }
     if ($defaultJoin = $foreignKey->getDefaultJoin()) {
         $foreignKeyNode->setAttribute('defaultJoin', $defaultJoin);
     }
     if ($onDeleteBehavior = $foreignKey->getOnDelete()) {
         $foreignKeyNode->setAttribute('onDelete', $onDeleteBehavior);
     }
     if ($onUpdateBehavior = $foreignKey->getOnUpdate()) {
         $foreignKeyNode->setAttribute('onUpdate', $onUpdateBehavior);
     }
     for ($i = 0, $size = count($foreignKey->getLocalColumns()); $i < $size; $i++) {
         $refNode = $foreignKeyNode->appendChild($this->document->createElement('reference'));
         $refNode->setAttribute('local', $foreignKey->getLocalColumnName($i));
         $refNode->setAttribute('foreign', $foreignKey->getForeignColumnName($i));
     }
     foreach ($foreignKey->getVendorInformation() as $vendorInformation) {
         $this->appendVendorInformationNode($vendorInformation, $foreignKeyNode);
     }
 }
開發者ID:SwissalpS,項目名稱:Propel2,代碼行數:38,代碼來源:XmlDumper.php

示例2: getFKPhpNameAffix

 /**
  * Gets the PHP method name affix to be used for fkeys for the current table (not referrers to this table).
  *
  * The difference between this method and the getRefFKPhpNameAffix() method is that in this method the
  * classname in the affix is the foreign table classname.
  *
  * @param  ForeignKey $fk     The local FK that we need a name for.
  * @param  boolean    $plural Whether the php name should be plural (e.g. initRelatedObjs() vs. addRelatedObj()
  * @return string
  */
 public function getFKPhpNameAffix(ForeignKey $fk, $plural = false)
 {
     if ($fk->getPhpName()) {
         if ($plural) {
             return $this->getPluralizer()->getPluralForm($fk->getPhpName());
         }
         return $fk->getPhpName();
     }
     $className = $fk->getForeignTable()->getPhpName();
     if ($plural) {
         $className = $this->getPluralizer()->getPluralForm($className);
     }
     return $className . $this->getRelatedBySuffix($fk);
 }
開發者ID:robin850,項目名稱:Propel2,代碼行數:24,代碼來源:AbstractOMBuilder.php

示例3: testSetNames

 public function testSetNames()
 {
     $fk = new ForeignKey();
     $fk->setName('book_author');
     $fk->setPhpName('Author');
     $fk->setRefPhpName('Books');
     $this->assertSame('book_author', $fk->getName());
     $this->assertSame('Author', $fk->getPhpName());
     $this->assertSame('Books', $fk->getRefPhpName());
 }
開發者ID:disider,項目名稱:Propel2,代碼行數:10,代碼來源:ForeignKeyTest.php


注:本文中的Propel\Generator\Model\ForeignKey::getPhpName方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。