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


PHP HtmlInput::button_action_remove_operation方法代碼示例

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


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

示例1: h

    ?>
 
        <h1 class="legend"><?php 
    echo $a_tab['linked_action_div']['label'];
    ?>
</h1>
  <?php 
}
/**
 * show possible linked actions
 */
echo '<ul style="list-style-type:square;">';
for ($i = 0; $i < count($a_followup); $i++) {
    $remove = '';
    if ($access == 'W') {
        $remove = HtmlInput::button_action_remove_operation($a_followup[$i]['ago_id']);
    }
    if ($div == 'popup') {
        echo '<li id="op' . $a_followup[$i]['ago_id'] . '">' . HtmlInput::detail_action($a_followup[$i]['ag_id'], h($a_followup[$i]['ag_ref'] . " " . $a_followup[$i]['ag_title']), 0) . $remove . '</li>';
    } else {
        echo '<li id="op' . $a_followup[$i]['ago_id'] . '">' . HtmlInput::detail_action($a_followup[$i]['ag_id'], h($a_followup[$i]['ag_ref'] . " " . $a_followup[$i]['ag_title']), 1) . $remove . '</li>';
    }
}
echo '</ul>';
$related = new IRelated_Action('related');
$related->id = 'related' . $div;
if ($access == 'W') {
    echo $related->input();
}
echo '</div>';
?>
開發者ID:Kloadut,項目名稱:noalyss_ynh,代碼行數:31,代碼來源:ledger_detail_bottom.php

示例2: h

<?php 
}
?>
          
        </table>

</div>
<div style="clear: both"></div>
	<div style="float:left;width: 47%">
		<h4 style="display:inline;">Opérations concernées</h4>
		<ol>

		<?php 
for ($o = 0; $o < count($operation); $o++) {
    if ($p_view != 'READ') {
        $js = HtmlInput::button_action_remove_operation($operation[$o]['ago_id']);
        echo '<li id="op' . $operation[$o]['ago_id'] . '">' . $operation[$o]['str_date'] . " " . HtmlInput::detail_op($operation[$o]['jr_id'], $operation[$o]['jr_internal']) . " " . h($operation[$o]['jr_comment']) . " " . $js . '</li>';
    } else {
        echo '<li >' . $operation[$o]['str_date'] . " " . HtmlInput::detail_op($operation[$o]['jr_id'], $operation[$o]['jr_internal']) . " " . h($operation[$o]['jr_comment']) . " " . '</li>';
    }
}
?>
		</ol>
		<?php 
if ($p_view != 'READ') {
    echo '<span class="noprint">' . $iconcerned->input() . '</span>';
}
?>
	</div>

        <div style="float:left;width: 47%">
開發者ID:Kloadut,項目名稱:noalyss_ynh,代碼行數:31,代碼來源:detail-action.php


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