first commit
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
<h1>
|
||||
Direct install of packages
|
||||
</h1>
|
||||
|
||||
<div class="direct-install-content">
|
||||
|
||||
<h2>Install a zip package by uploading it</h2>
|
||||
|
||||
<form action="{{ base_url_relative }}/tools/task:directInstall" method="post" enctype="multipart/form-data">
|
||||
<input type="file" name="uploaded_file" id="uploaded_file" required accept="application/zip, application/octet-stream">
|
||||
<input type="submit" value="Upload and install" name="submit" class="button">
|
||||
<input type="hidden" name="task" value="directInstall" />
|
||||
|
||||
{{ nonce_field('admin-form', 'admin-nonce')|raw }}
|
||||
</form>
|
||||
|
||||
|
||||
<h2>Install a zip package from a remote location</h2>
|
||||
|
||||
<form action="{{ base_url_relative }}/tools/task:directInstall" method="post">
|
||||
<input type="text" name="file_path" required />
|
||||
<input type="submit" value="Install" name="submit" class="button">
|
||||
<input type="hidden" name="task" value="directInstall" />
|
||||
|
||||
{{ nonce_field('admin-form', 'admin-nonce')|raw }}
|
||||
</form>
|
||||
|
||||
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user