| [ Index ] |
PHP Cross Reference of Joomla 1.5.25 |
[Summary view] [Print] [Text view]
1 <?php // no direct access 2 defined( '_JEXEC' ) or die( 'Restricted access' ); ?> 3 <fieldset class="adminform"> 4 <legend><?php echo JText::_( 'Cache Settings' ); ?></legend> 5 <table class="admintable" cellspacing="1"> 6 7 <tbody> 8 <tr> 9 <td class="key"> 10 <span class="editlinktip hasTip" title="<?php echo JText::_( 'Cache' ); ?>::<?php echo JText::_( 'TIPCACHE' ); ?>"> 11 <?php echo JText::_( 'Cache' ); ?> 12 </span> 13 </td> 14 <td> 15 <?php echo $lists['caching']; ?> 16 </td> 17 </tr> 18 <tr> 19 <td class="key"> 20 <span class="editlinktip hasTip" title="<?php echo JText::_( 'Cache Time' ); ?>::<?php echo JText::_( 'TIPCACHETIME' ); ?>"> 21 <?php echo JText::_( 'Cache Time' ); ?> 22 </span> 23 </td> 24 <td> 25 <input class="text_area" type="text" name="cachetime" size="5" value="<?php echo $row->cachetime; ?>" /> 26 <?php echo JText::_( 'minutes' ); ?> 27 </td> 28 </tr> 29 <tr> 30 <td class="key"> 31 <span class="editlinktip hasTip" title="<?php echo JText::_( 'Cache Handler' ); ?>::<?php echo JText::_( 'TIPCACHEHANDLER' ); ?>"> 32 <?php echo JText::_( 'Cache Handler' ); ?> 33 </span> 34 </td> 35 <td> 36 <?php echo $lists['cache_handlers']; ?> 37 </td> 38 </tr> 39 <?php if ($row->cache_handler == 'memcache' || $row->session_handler == 'memcache') : ?> 40 <tr> 41 <td class="key"> 42 <?php echo JText::_( 'Memcache Persistent' ); ?> 43 </td> 44 <td> 45 <?php echo $lists['memcache_persist']; ?> 46 </td> 47 </tr> 48 <tr> 49 <td class="key"> 50 <?php echo JText::_( 'Memcache Compression' ); ?> 51 </td> 52 <td> 53 <?php echo $lists['memcache_compress']; ?> 54 </td> 55 </tr> 56 <tr> 57 <td class="key"> 58 <?php echo JText::_( 'Memcache Server' ); ?> 59 </td> 60 <td> 61 <?php echo JText::_( 'Host' ); ?>: 62 <input class="text_area" type="text" name="memcache_settings[servers][0][host]" size="25" value="<?php echo @$row->memcache_settings['servers'][0]['host']; ?>" /> 63 <br /><br /> 64 <?php echo JText::_( 'Port' ); ?>: 65 <input class="text_area" type="text" name="memcache_settings[servers][0][port]" size="6" value="<?php echo @$row->memcache_settings['servers'][0]['port']; ?>" /> 66 </td> 67 </tr> 68 <?php endif; ?> 69 </tbody> 70 </table> 71 </fieldset>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Mon Nov 14 16:47:20 2011 | Cross-referenced by PHPXref 0.7.1 |