diff options
Diffstat (limited to 'admin/admin_liberty_inc.php')
| -rw-r--r-- | admin/admin_liberty_inc.php | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/admin/admin_liberty_inc.php b/admin/admin_liberty_inc.php index 09c764d..fe15b74 100644 --- a/admin/admin_liberty_inc.php +++ b/admin/admin_liberty_inc.php @@ -1,11 +1,21 @@ <?php $formLibertyFeatures = array( - "liberty_quota" => array( + "liberty_cache_pages" => array( + 'label' => 'External page cache', + 'note' => 'Enabling this will download and cache external pages that are included.', + ), + "liberty_cache_images" => array( + 'label' => 'External image cache', + 'note' => 'Enabling this will download and cache external images that are included.', + ), +); +if( $gBitSystem->isPackageActive( 'quota' ) ) { + $formLibertyFeatures['liberty_quota'] = array( 'label' => 'Quota Usage System', 'note' => 'Limit users\' disk usage.', 'page' => '', - ), -); + ); +} $gBitSmarty->assign( 'formLibertyFeatures', $formLibertyFeatures ); $formImageFeatures = array( |
