当前位置: 首页>>代码示例>>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;未经允许,请勿转载。