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


PHP Button::danger方法代码示例

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


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

示例1:

                                    </div>
                                <?php 
        } else {
            ?>
                                    <h4>Pay all pilots to contiune</h4>
                                <?php 
        }
        ?>
                            <?php 
    }
    ?>
                        </div>
                    <?php 
}
?>

                    <?php 
if (!$site->finished && $site->active) {
    ?>
                        <div class="jumbotron">
                            <?php 
    echo Modal::named('close')->withTitle('Close Sheet')->withButton(Button::danger('Close')->block())->withBody(view('modals.close_sheet')->with('id', $site->id)->render());
    ?>
                        </div>
                    <?php 
}
?>
                </div>
            </div>

开发者ID:Necrotex,项目名称:lootsheet,代码行数:29,代码来源:single.php

示例2:

_64.jpg" />
					</td>
					<td><?php 
    echo $admin->name;
    ?>
</td>
					<td>
                        <span data-toggle="tooltip" data-placement="top" title="<?php 
    echo $admin->updated_at;
    ?>
">
                            <?php 
    echo Carbon\Carbon::parse($admin->updated_at)->diffForHumans();
    ?>
                        </span>
					</td>
					<td>
						<?php 
    echo Modal::named('demote_' . $admin->id)->withTitle('Demote ' . $admin->name)->withButton(Button::danger('demote')->setSize('btn-xs'))->withBody(view('modals.admin_user_info_content')->with('user', $admin)->render());
    ?>
					</td>
				</tr>
			<?php 
}
?>
		</tbody>
	</table>
</div>

<?php 
echo Modal::named('user_info');
开发者ID:Necrotex,项目名称:lootsheet,代码行数:31,代码来源:users.php

示例3: foreach

foreach ($allowed_corps as $corp) {
    ?>
        <tr>
            <td><?php 
    echo $corp->name;
    ?>
</td>
            <td><?php 
    echo $corp->value;
    ?>
</td>
            <td class=""><?php 
    echo Modal::named('edit_option_' . $corp->id)->withTitle('Edit Corp')->withButton(Button::success('edit')->setSize('btn-xs'))->withBody(view('modals.edit_corp')->with('corp', $corp)->render());
    ?>
                <?php 
    echo Modal::named('remove_corp_' . $corp->id)->withTitle('Remvoe Corp')->withButton(Button::danger('remove')->setSize('btn-xs'))->withBody(view('modals.remove_corp')->with('corp', $corp)->render());
    ?>

            </td>
        </tr>
    <?php 
}
?>
    </tbody>
</table>

<div class="page-header">
    <h1>Sheet Options</h1>
</div>

<table class="table table-striped">
开发者ID:Necrotex,项目名称:lootsheet,代码行数:31,代码来源:overview.php


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