diff options
| author | Nick Palmer <nick@sluggardy.net> | 2007-03-05 02:19:54 +0000 |
|---|---|---|
| committer | Nick Palmer <nick@sluggardy.net> | 2007-03-05 02:19:54 +0000 |
| commit | 7f7d658ddf04bad83f17867d1e4d952e9446a1f3 (patch) | |
| tree | 9ecbde11fdd8eef9d3f9c9b66d3b23efb65d68eb /admin | |
| parent | 00613a642f9f88969f0a8cbfda5672b601ddba15 (diff) | |
| download | pigeonholes-7f7d658ddf04bad83f17867d1e4d952e9446a1f3.tar.gz pigeonholes-7f7d658ddf04bad83f17867d1e4d952e9446a1f3.tar.bz2 pigeonholes-7f7d658ddf04bad83f17867d1e4d952e9446a1f3.zip | |
Fix issues with assign content I broke before. Add forbid insert feature. Fix bug with insert when there are no checks on the page. Need to add better security on insert still but the interface doesn't offer it now.
Diffstat (limited to 'admin')
| -rw-r--r-- | admin/admin_pigeonholes_inc.php | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/admin/admin_pigeonholes_inc.php b/admin/admin_pigeonholes_inc.php index 4003f04..a6fdfbd 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.15 2007/03/04 14:03:40 nickpalmer Exp $ +// $Header: /cvsroot/bitweaver/_bit_pigeonholes/admin/admin_pigeonholes_inc.php,v 1.16 2007/03/05 02:19:54 nickpalmer Exp $ $pigeonholeDisplaySettings = array( 'pigeonholes_display_path' => array( @@ -30,10 +30,14 @@ $pigeonholeDisplaySettings = array( 'label' => 'Group gating', 'note' => 'Limit category access to specific groups. Group settings are inhertied by child categories.', ), - 'reverse_assign_table' => array( + 'pigeonholes_reverse_assign_table' => array( 'label' => 'Assign Categories in Rows', 'note' => 'The assign categories page will have categories in rows instead of columns and content in columns instead of rows. This is better if you have lots of categories that do not fit on a single page easily.', ), + 'pigeonholes_allow_forbid_insertion' => array( + 'label' => 'Allow Forbid Insertion', + 'note' => 'Allows pigeonholes to be set to forbid insertion of new members. This is good for heirarchical categories where only leaf categories should have members.' + ), ); $gBitSmarty->assign( 'pigeonholeDisplaySettings', $pigeonholeDisplaySettings ); |
