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


PHP Button::primary_submit方法代碼示例

本文整理匯總了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
開發者ID:pustimeunutra,項目名稱:TechnicSolder,代碼行數:26,代碼來源:configure.blade.php

示例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>
開發者ID:aaronbullard,項目名稱:litmus,代碼行數:26,代碼來源:form.blade.php

示例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
開發者ID:pustimeunutra,項目名稱:TechnicSolder,代碼行數:31,代碼來源:edit.blade.php


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