PHP Classes

File: index.php

Recommend this page to a friend!
  Classes of Subin Siby   PHP HTML Compressor   index.php   Download  
File: index.php
Role: Auxiliary data
Content type: text/plain
Description: The main page
Class: PHP HTML Compressor
Compress Web pages HTML, CSS and JavaScript
Author: By
Last change: Update of index.php
Date: 4 months ago
Size: 3,390 bytes
 

Contents

Class file image Download
<!DOCTYPE html> <?include "load.php";?> <html> <head> <title>Site Compressor from subinsb.com</title> <link href="css/main.css" rel="stylesheet"/> <link href="css/scrollbar.css" rel="stylesheet"/> <script src="js/jquery.js"></script> <script src="js/scrollbar.js"></script> <!-- Probably in the next version - http://subinsb.com <link href="css/smoothness/jquery-ui.css" rel="stylesheet"/> <script src="js/jquery-ui.js"></script> --> <script src="js/main.js"></script> </head> <body> <div class="top"> <div class="table"> <div class="left"> <div class="scrollbar"><div class="track"><div class="thumb"><div class="end"></div></div></div></div> <h2>Site Details</h2> <form id="siteDetails"> <label> <span>Site Location</span> <input type="text" data-binding="siteLoc" name="location"/> <p>The site's source code full absolute location</p> </label> <label> <span>Output</span> <input type="text" data-binding="siteOutput" name="output"/> <p>The location where the output must be written</p> </label> <h2>Replacer</h2> <div id="replaceFields"> <p>You can also replace strings like <b>localsite.dev</b> to <b>mydomain.com</b></p> <a class="addReplaceField button">Add New Field</a> </div> <div> <h2>Before Compression</h2> <label> <input type="text" data-binding="beforeCommand" placeholder="Type Command Here" name="beforeCommand"/> <p>Run a Terminal command before compression starts</p> <p>Avoid using double quotes (")</p> </label> </div> <div> <h2>After Compression</h2> <label> <input type="text" data-binding="afterCommand" placeholder="Type Command Here" name="afterCommand"/> <p>Run a Terminal command after compression finished</p> <p>Avoid using double quotes (")</p> </label> </div> <button class="button">Let's Start Compressing</button> </form> </div> <div class="right"> <h2>Compression Options</h2> <form id="options"> <label> <input type="checkbox" data-binding="minHtml" checked="checked" name="minHtml"/> Minimize HTML </label> <label> <input type="checkbox" data-binding="minPHP" checked="checked" name="minPHP"/> Minimize HTML in .php Files </label> <label> <input type="checkbox" data-binding="noComments" checked="checked" name="noComments"/> Remove Comments </label> <label> <input type="checkbox" data-binding="minCss" checked="checked" name="minCss"/> Minimize CSS </label> <label> <input type="checkbox" data-binding="minJs" checked="checked" name="minJs"/> Minimize JS </label> <label> <input type="checkbox" data-binding="minInline" checked="checked" name="minInline"/> Minimize Inline CSS, JS (&lt;script>&lt;/script>, &lt;style>&lt;/style>) </label> </form> <a class="button" id="saveConfig">Save Current Configuration</a> <p>(including Site & Replacer Details). Here is a list of saves :</p> <div id="configSaves"></div> </div> </div> </div> <div class="content"> Compression details will be shown up here after you request for compression. </div> </body> </html>