Hackfut Security File Manager
Current Path:
/home/haielekt/public_html/wp-content/plugins/ghylrock-custom-script
home
/
haielekt
/
public_html
/
wp-content
/
plugins
/
ghylrock-custom-script
/
📁
..
📄
child-theme-editor.php
(3.36 KB)
📄
child-theme.php
(967 B)
📄
create-child-theme.php
(2.01 KB)
📁
css
📄
ghylrock-custom-script.php
(16.41 KB)
📁
gsap
📁
icons
📄
index.php
(1.22 KB)
📁
js
📄
modal.php
(2.07 KB)
📁
script-editor
📄
script-editor.php
(2.13 KB)
📄
test.php
(21 B)
Editing: modal.php
<div class="modal-parent-script"> <div id="modal"> <table class="form-table" role="presentation"> <tbody> <tr> <th><label for="script-name">Script Name</label></th> <td><input name="script-name" id="script-name" type="text" class="regular-text"></td> </tr> <tr> <th><label for="page-destination">Page Destination</label></th> <td> <select class="w-full" name="page-destination" id="page-destination"> <option value=""></option> <option page-name="Global" value="global">Global</option> <?php $pages = get_pages(); foreach ($pages as $page) { echo '<option page-name="'.$page->post_title.'" value="'.$page->post_name.'">'. $page->post_title .'</option>'; } ?> </select> </td> </tr> <tr> <th><label for="script-type">Script Type</label></th> <td> <select class="w-full" name="script-type" id="script-type"> <option value=""></option> <option value="css">CSS</option> <option value="javascript">Javascript</option> </select> </td> </tr> </tbody> </table> <div class="flex w-full mt-2 flex-row gap-1"> <button onclick="UPDATE()" id="update-script" class="button_action update m-auto">Update Script</button> <button onclick="CREATE()" id="create-script" class="button_action create m-auto">Create Script</button> <button onclick="CLOSE()" id="close" class="button_action close m-auto">Close</button> </div> </div> </div>
Upload File
Create Folder