本文整理汇总了PHP中Button::primary_submit方法的典型用法代码示例。如果您正苦于以下问题:PHP Button::primary_submit方法的具体用法?PHP Button::primary_submit怎么用?PHP Button::primary_submit使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Button
的用法示例。
在下文中一共展示了Button::primary_submit方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
@layout('layouts/main')
@section('content')
<h1>Configure Solder</h1>
<hr>
@if (Session::has('success'))
<div class="alert alert-success">
{{ Session::get('success') }}
</div>
@endif
<h2>Repository Settings</h2>
{{ Form::horizontal_open() }}
{{ Form::hidden("edit-solder", 1) }}
<?php
echo Form::control_group(Form::label('mirror_url', 'Mirror URL'), Form::xxlarge_text('mirror_url', Config::get('solder.mirror_url')), '', Form::block_help('This is where the launcher will be told to search for your files. If your repo location is already a URL you can use the same location here. Include a trailing slash!'));
echo Form::control_group(Form::label('repo_location', 'Repository Location'), Form::xxlarge_text('repo_location', Config::get('solder.repo_location')), '', Form::block_help('This is the location of your mod reposistory. INCLUDE a trailing slash! This can be a URL or an absolute file location. This is only required for your initial repository import.'));
?>
<h2>Platform Settings</h2>
<?php
echo Form::control_group(Form::label('platform_key', 'Platform API Key'), Form::xxlarge_text('platform_key', Config::get('solder.platform_key')), '', Form::block_help(' Enter your platform API key if you would like to link Solder to your Platform account.'));
echo Form::actions(array(Button::primary_submit('Save changes')));
?>
{{ Form::close() }}
@endsection
示例2: isset
<div id="image-upload">
@include('litmus::partials.message')
<?php
$url = isset($url) ? $url : NULL;
$verb = isset($verb) ? $verb : 'POST';
echo Form::horizontal_open_for_files($url, $verb);
//echo Form::token();
foreach ($fields as $field) {
if (isset($field['values'])) {
$form = Form::$field['type']($field['name'], $field['values']);
} else {
$attributes = array();
$attributes['value'] = isset($object) && isset($object->{$field['name']}) ? $object->{$field['name']} : NULL;
$attributes['value'] = Input::had($field['name']) ? Input::old($field['name']) : $attributes['value'];
$form = Form::$field['type']($field['name'], $attributes['value'], $attributes);
}
$label = Form::label($field['name'], $field['label']);
echo Form::control_group($label, $form);
}
echo Form::actions(array(Button::primary_submit('Submit'), Form::button('Cancel')));
echo Form::close();
?>
</div>
示例3: Access
<label class="control-label">Solderwide</label>
<div class="controls">
<label for="solder-full"><input type="checkbox" name="solder-full" id="solder-full" value="1"{{ $checked = ($user->permission->solder_full ? " checked" : "") }}> Full Solder Access (Blanket permission)</label>
<label for="manage-users"><input type="checkbox" name="manage-users" id="manage-users" value="1"{{ $checked = ($user->permission->solder_users ? " checked" : "") }}> Manage Users</label>
<label for="manage-packs"><input type="checkbox" name="manage-packs" id="manage-packs" value="1"{{ $checked = ($user->permission->solder_modpacks ? " checked" : "") }}> Manage Modpacks</label>
<label for="manage-mods"><input type="checkbox" name="manage-mods" id="manage-mods" value="1"{{ $checked = ($user->permission->solder_mods ? " checked" : "") }}> Manage Mods</label>
</div>
</div>
<div class="control-group">
<label class="control-label">Mod Library</label>
<div class="controls">
<label for="mod-create"><input type="checkbox" name="mod-create" id="mod-create" value="1"{{ $checked = ($user->permission->mods_create ? " checked" : "") }}> Create Mods</label>
<label for="mod-manage"><input type="checkbox" name="mod-manage" id="mod-manage" value="1"{{ $checked = ($user->permission->mods_manage ? " checked" : "") }}> Manage Mods</label>
<label for="mod-delete"><input type="checkbox" name="mod-delete" id="mod-delete" value="1"{{ $checked = ($user->permission->mods_delete ? " checked" : "") }}> Delete Mods</label>
</div>
</div>
<div class="control-group">
<label class="control-label">Modpack Access</label>
<div class="controls">
<label for="solder-create"><input type="checkbox" name="solder-create" id="solder-create" value="1"{{ $checked = ($user->permission->solder_create ? " checked" : "") }}> Create Modpacks</label>
@foreach (Modpack::all() as $modpack)
<label for="{{ $modpack->slug }}"><input type="checkbox" name="modpack[]" id="{{ $modpack->slug }}" value="{{ $modpack->id }}"{{ $checked = (in_array($modpack->id, $user->permission->modpacks) ? " checked" : "") }}> {{ $modpack->name }}</label>
@endforeach
</div>
</div>
@endif
<?php
echo Form::actions(array(Button::primary_submit('Save changes'), Button::link(URL::to('user/list'), 'Go Back')));
?>
{{ Form::close() }}
@endsection