31 lines
976 B
Twig
31 lines
976 B
Twig
<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>
|
|
|