Example #1
0
 	<ul>
 	  <li><label for="symbols">Symbols</label> <span class="toggle"><input id="symbols" type="checkbox" <?php echo parseSetting($s->symbols); ?>/></span></li>
 	  <li><label for="caps">Uppercase Letters</label> <span class="toggle"><input id="caps" type="checkbox" <?php echo parseSetting($s->caps); ?>/></span></li>
 	  <li><label>Length</label> <input type="text" name="length" placeholder="Length" value="<?php echo $s->strlen; ?>" id="length" ></li>
 	</ul>
 	
 	<h2>Algorithm</h2>
 	<ul class="rounded">
 	  <li><label for="default">Default</label><input type="radio" name="alt" value="" id="default" <?php echo (($s->h_algorithm == "default") ? "checked" : ""); ?>></li>
 	  <li><label for="legacy">Legacy</label><input type="radio" name="alt" value="" id="legacy" <?php echo (($s->h_algorithm == "legacy") ? "checked" : ""); ?>></li>
 	</ul>
 	
 	<h2>Remember</h2>
 	<ul class="rounded last">
 	  <li><label for="r_master">Remember master</label> <span class="toggle"><input id="r_master" type="checkbox" checked/></span></li>
 	  <li><label for="r_settings">Remember settings</label> <span class="toggle"><input id="r_settings" type="checkbox" <?php echo parseSetting($s->r_settings); ?>/></span></li>
 	  <li><label for="r_url">Remember URL</label> <span class="toggle"><input id="r_url" type="checkbox" checked/></span></li>
 	</ul>
 	
 	<div class="info">
     <p>
       Designed by <a href="http://nicinabox.com">Nic Haynes</a>
     </p>
     <p>Version 2.1b</p>
   </div>
 	
 	<?php if (DEBUG): ?>
 	<h2>Debug</h2>
 	<ul>
     <li>
     <pre>
Example #2
0
     $strOutput .= parseFiles($intElmntId, $strCommand);
     break;
 case NAV_PCMS_ALIASES:
     require_once 'includes/inc.tplparse_alias.php';
     $strOutput .= parseMenu($intCatId, $strCommand);
     $strOutput .= parseAlias($intElmntId, $strCommand);
     break;
 case NAV_PCMS_FEEDS:
     require_once 'includes/inc.tplparse_feeds.php';
     $strOutput .= parseMenu($intCatId, $strCommand);
     $strOutput .= parseFeeds($intElmntId, $strCommand);
     break;
 case NAV_PCMS_SETTINGS:
     require_once 'includes/inc.tplparse_setting.php';
     $strOutput .= parseMenu($intCatId, $strCommand);
     $strOutput .= parseSetting($intElmntId, $strCommand);
     break;
 case NAV_PCMS_LANGUAGES:
     require_once 'includes/inc.tplparse_language.php';
     $strOutput .= parseMenu($intCatId, $strCommand);
     $strOutput .= parseLanguage($intElmntId, $strCommand);
     break;
 case NAV_PCMS_HELP:
     require_once 'includes/inc.tplparse_help.php';
     $strOutput .= parseMenu($intCatId, $strCommand);
     $strOutput .= parseHelp($intElmntId, $strCommand);
     break;
 case NAV_PCMS_SEARCH:
     require_once 'includes/inc.tplparse_search.php';
     $strOutput .= parseMenu($intCatId, $strCommand);
     $strOutput .= parseSearch($intElmntId, $strCommand);