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


PHP Calendar::GetMonthOptions方法代碼示例

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


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

示例1: GetInputField

function GetInputField($paramDTO)
{
    $calendar = new Calendar();
    switch ($paramDTO->tipoParametro) {
        // case 1 INTEIRO - input simples, cai no caso default
        // case 2 STRING  - input simples, cai no caso default
        case 3:
            $properties = 'style="width:50%;"';
            // DATETIME  - cria um datetime picker
            return '<input ' . $properties . ' class="datepick" type="text" readonly="readonly" name="parametro' . $paramDTO->id . '" value="' . $paramDTO->valor . '" />';
        case 4:
            $properties = 'style="width:50%;"';
            // BOOLEAN  - cria um combobox com opções sim e não
            $trueSelected = $paramDTO->valor == 'true' ? 'selected="selected"' : '';
            $falseSelected = $paramDTO->valor == 'false' ? 'selected="selected"' : '';
            return '<select ' . $properties . ' name="parametro' . $paramDTO->id . '" ><option ' . $trueSelected . ' value="true" >Sim</option><option ' . $falseSelected . ' value="false" >Não</option></select>';
        case 5:
            $properties = 'style="width:50%;"';
            // MÊS      - cria um combobox com os meses
            return '<select ' . $properties . ' name="parametro' . $paramDTO->id . '" >' . $calendar->GetMonthOptions($paramDTO->valor) . '</select>';
        default:
            $properties = 'style="width:50%;"';
            return '<input ' . $properties . ' type="text" name="parametro' . $paramDTO->id . '" value="' . $paramDTO->valor . '" />';
    }
}
開發者ID:renatosans,項目名稱:contratos,代碼行數:25,代碼來源:gerenciar.php

示例2: date

    <label class="left" style="width:99%; text-align: left; <?php 
echo $searchMethod == 3 ? "display:inline;" : "display:none;";
?>
">Equipamento<br/>
        <select name="equipmentCode" style="width: 98%;" ></select>
    </label>
    <div style="clear:both; <?php 
echo $searchMethod == 3 ? "display:inline;" : "display:none;";
?>
">
        <br/>
    </div>
    <label class="left" style="width:45%; text-align: left;">Mês da Despesa<br/>
        <select name="month" style="width:95%;height:30px;" ><?php 
$calendar = new Calendar();
echo $calendar->GetMonthOptions(0);
?>
</select>
    </label>
    <label class="left" style="width:45%; text-align: left;">Ano da Despesa<br/>
        <input type="text" name="year" style="width:95%;height:30px;" value="<?php 
echo date('Y');
?>
" ></input>
    </label>
    <br/>
    <label class="left" style="width:99%; text-align: left; ">Despesa Mensal Área Técnica<br/>
        <input type="text" name="despesaMensal" style="width:98%;height:25px;" value="" ></input>
    </label>
    <div style="clear:both;">
        <br/>
開發者ID:renatosans,項目名稱:contratos,代碼行數:31,代碼來源:LaborExpenseFilterDialog.php

示例3: Calendar

echo $billing->id;
?>
" >Demonstrativo</a><br/><br/>
            <a href="#" id="invoiceLink" rel="<?php 
echo $invoiceNum;
?>
" >Nota Fiscal</a><br/><br/>
        </fieldset>
        <div style="clear:both;">
            <br/>
        </div>

        <label>Mes Referência<br/>
        <select name="mesReferencia" style="width:250px;height:30px;" ><?php 
$calendar = new Calendar();
echo $calendar->GetMonthOptions($billing->mesReferencia);
?>
</select>
        </label>

        <label>Ano Referência<br/>
        <input type="text" name="anoReferencia" size="45" value="<?php 
echo $billing->anoReferencia;
?>
" />
        </label>
        <div style="clear:both;">
            <br/><br/>
        </div>

        <a href="<?php 
開發者ID:renatosans,項目名稱:contratos,代碼行數:31,代碼來源:editar.php


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