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


PHP FormOther::select_color方法代碼示例

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


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

示例1: foreach

 $reshook = $hookmanager->executeHooks('formObjectOptions', $parameters, $object, $action);
 // Note that $action and $object may have been modified by hook
 if (empty($reshook) && !empty($extrafields->attribute_label)) {
     foreach ($extrafields->attribute_label as $key => $label) {
         $value = isset($_POST["options_" . $key]) ? $_POST["options_" . $key] : $object->array_options["options_" . $key];
         print '<tr><td>' . $label . '</td><td colspan="3">';
         print $extrafields->showInputField($key, $value);
         print '</td></tr>' . "\n";
     }
 }
 print '</table>';
 print '</br><br>';
 print '<table class="border" width="100%">';
 print '<tr><td width="25%" class="fieldrequired">' . $langs->trans("MailTopic") . '</td><td><input class="flat" name="sujet" size="60" value="' . $_POST['sujet'] . '"></td></tr>';
 print '<tr><td width="25%">' . $langs->trans("BackgroundColorByDefault") . '</td><td colspan="3">';
 $htmlother->select_color($_POST['bgcolor'], 'bgcolor', 'new_mailing', 0);
 print '</td></tr>';
 print '<tr><td width="25%" class="fieldrequired" valign="top">' . $langs->trans("MailMessage") . '<br>';
 print '<br><i>' . $langs->trans("CommonSubstitutions") . ':<br>';
 foreach ($object->substitutionarray as $key => $val) {
     print $key . ' = ' . $langs->trans($val) . '<br>';
 }
 print '</i></td>';
 print '<td>';
 // Editeur wysiwyg
 require_once DOL_DOCUMENT_ROOT . "/core/class/doleditor.class.php";
 $doleditor = new DolEditor('body', $_POST['body'], '', 320, 'dolibarr_mailings', '', true, true, $conf->global->FCKEDITOR_ENABLE_MAILING, 20, 70);
 $doleditor->Create();
 print '</td></tr>';
 print '</table>';
 print '<br><center><input type="submit" class="button" value="' . $langs->trans("CreateMailing") . '"></center>';
開發者ID:nrjacker4,項目名稱:crm-php,代碼行數:31,代碼來源:fiche.php

示例2:

$var=true;
while ($i <= $MAXAGENDA)
{
	$key=$i;
	$var=!$var;
	print "<tr ".$bc[$var].">";
	print '<td width="180" nowrap="nowrap">'.$langs->trans("AgendaExtNb",$key)."</td>";
	$name='AGENDA_EXT_NAME'.$key;
	$src='AGENDA_EXT_SRC'.$key;
	$color='AGENDA_EXT_COLOR'.$key;
	print "<td><input type=\"text\" class=\"flat\" name=\"agenda_ext_name".$key."\" value=\"". $conf->global->$name . "\" size=\"28\"></td>";
	print "<td><input type=\"text\" class=\"flat\" name=\"agenda_ext_src".$key."\" value=\"". $conf->global->$src . "\" size=\"60\"></td>";
	print '<td nowrap="nowrap" align="center">';
	// Possible colors are limited by Google
	//print $formadmin->select_colors($conf->global->$color, "google_agenda_color".$key, $colorlist);
	print $formother->select_color($conf->global->$color, "agenda_ext_color".$key, 'extsitesconfig', 1, '');
	print '</td>';
	print "</tr>";
	$i++;
}

print '</table>';
print '<br>';

print '<center>';

print "<input type=\"submit\" name=\"save\" class=\"button\" value=\"".$langs->trans("Save")."\">";
print "</center>";

print "</form>\n";
開發者ID:remyyounes,項目名稱:dolibarr,代碼行數:30,代碼來源:agenda_extsites.php


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