当前位置: 首页>>代码示例>>PHP>>正文


PHP Propal::getDefaultCreateValueFor方法代码示例

本文整理汇总了PHP中Propal::getDefaultCreateValueFor方法的典型用法代码示例。如果您正苦于以下问题:PHP Propal::getDefaultCreateValueFor方法的具体用法?PHP Propal::getDefaultCreateValueFor怎么用?PHP Propal::getDefaultCreateValueFor使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Propal的用法示例。


在下文中一共展示了Propal::getDefaultCreateValueFor方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: DolEditor

     print '<td colspan="3" class="maxwidthonsmartphone">';
     print $form->select_incoterms(!empty($soc->fk_incoterms) ? $soc->fk_incoterms : '', !empty($soc->location_incoterms) ? $soc->location_incoterms : '');
     print '</td></tr>';
 }
 // Template to use by default
 print '<tr>';
 print '<td>' . $langs->trans("DefaultModel") . '</td>';
 print '<td colspan="2">';
 $liste = ModelePDFPropales::liste_modeles($db);
 print $form->selectarray('model', $liste, $conf->global->PROPALE_ADDON_PDF_ODT_DEFAULT ? $conf->global->PROPALE_ADDON_PDF_ODT_DEFAULT : $conf->global->PROPALE_ADDON_PDF);
 print "</td></tr>";
 // Public note
 print '<tr>';
 print '<td class="border" valign="top">' . $langs->trans('NotePublic') . '</td>';
 print '<td valign="top" colspan="2">';
 $note_public = $object->getDefaultCreateValueFor('note_public', is_object($objectsrc) ? $objectsrc->note_public : null);
 $doleditor = new DolEditor('note_public', $note_public, '', 80, 'dolibarr_notes', 'In', 0, false, true, ROWS_3, '90%');
 print $doleditor->Create(1);
 // Private note
 if (empty($user->societe_id)) {
     print '<tr>';
     print '<td class="border" valign="top">' . $langs->trans('NotePrivate') . '</td>';
     print '<td valign="top" colspan="2">';
     $note_private = $object->getDefaultCreateValueFor('note_private', !empty($origin) && !empty($originid) && is_object($objectsrc) ? $objectsrc->note_private : null);
     $doleditor = new DolEditor('note_private', $note_private, '', 80, 'dolibarr_notes', 'In', 0, false, true, ROWS_3, '90%');
     print $doleditor->Create(1);
     // print '<textarea name="note_private" wrap="soft" cols="70" rows="'.ROWS_3.'">'.$note_private.'.</textarea>
     print '</td></tr>';
 }
 // Other attributes
 $parameters = array('colspan' => ' colspan="3"');
开发者ID:Albertopf,项目名称:prueba,代码行数:31,代码来源:propal.php


注:本文中的Propal::getDefaultCreateValueFor方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。