diff options
| author | Max Kremmel <xing@synapse.plus.com> | 2006-01-24 10:21:23 +0000 |
|---|---|---|
| committer | Max Kremmel <xing@synapse.plus.com> | 2006-01-24 10:21:23 +0000 |
| commit | df41f493d0bf27dc491e5567fdbd21cdcc5530fb (patch) | |
| tree | bffc916955c4a18cd0e1e336acc31eef2ee229d0 /admin | |
| parent | ce679c371160e03bf1928924014f64bbe80b3851 (diff) | |
| download | pigeonholes-df41f493d0bf27dc491e5567fdbd21cdcc5530fb.tar.gz pigeonholes-df41f493d0bf27dc491e5567fdbd21cdcc5530fb.tar.bz2 pigeonholes-df41f493d0bf27dc491e5567fdbd21cdcc5530fb.zip | |
rename $gPigeonholes to $gContent since we're dealing with LibertyContent
fix some minor layout issues and add some basic prefs to schema_inc
add option to not show any category members, but only category name - can act as tagging system that way
Diffstat (limited to 'admin')
| -rw-r--r-- | admin/admin_pigeonholes_inc.php | 5 | ||||
| -rw-r--r-- | admin/schema_inc.php | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/admin/admin_pigeonholes_inc.php b/admin/admin_pigeonholes_inc.php index 5fee183..26c1054 100644 --- a/admin/admin_pigeonholes_inc.php +++ b/admin/admin_pigeonholes_inc.php @@ -1,5 +1,5 @@ <?php -// $Header: /cvsroot/bitweaver/_bit_pigeonholes/admin/admin_pigeonholes_inc.php,v 1.3 2006/01/18 14:29:34 squareing Exp $ +// $Header: /cvsroot/bitweaver/_bit_pigeonholes/admin/admin_pigeonholes_inc.php,v 1.4 2006/01/24 10:21:23 squareing Exp $ $pigeonholeSettings = array( 'display_pigeonhole_path' => array( @@ -24,12 +24,13 @@ $listStyles = array( $gBitSmarty->assign( 'listStyles', $listStyles ); $memberLimit = array( - '9999' => tra( 'Unlimited' ), + '0' => tra( 'None' ), '10' => 10, '20' => 20, '30' => 30, '50' => 50, '100' => 100, + '9999' => tra( 'Unlimited' ), ); $gBitSmarty->assign( 'memberLimit', $memberLimit ); diff --git a/admin/schema_inc.php b/admin/schema_inc.php index 3a51103..66de512 100644 --- a/admin/schema_inc.php +++ b/admin/schema_inc.php @@ -46,6 +46,8 @@ $gBitInstaller->registerSchemaSequences( PIGEONHOLES_PKG_NAME, $sequences ); // ### Default Preferences $gBitInstaller->registerPreferences( PIGEONHOLES_PKG_NAME, array( array( PIGEONHOLES_PKG_NAME, 'display_pigeonhole_members','y' ), + array( PIGEONHOLES_PKG_NAME, 'limit_member_number','100' ), + array( PIGEONHOLES_PKG_NAME, 'pigeonholes_list_style','table' ), ) ); // ### Default UserPermissions |
