Update of /cvsroot/phpslash/phpslash-ft/public_html
In directory sc8-pr-cvs1:/tmp/cvs-serv9879/phpslash-ft/public_html
Modified Files:
config.php3 config-dist.php3
Log Message:
provided example default block option - column
Index: config.php3
===================================================================
RCS file: /cvsroot/phpslash/phpslash-ft/public_html/config.php3,v
retrieving revision 1.181
retrieving revision 1.182
diff -C2 -d -r1.181 -r1.182
*** config.php3 6 Feb 2003 20:28:20 -0000 1.181
--- config.php3 13 Feb 2003 18:24:10 -0000 1.182
***************
*** 852,855 ****
--- 852,874 ----
}
+ $default_block_options = '';
+ /*
+ * default values of options for all blocks
+ *
+ * default options legend:
+ *
+ * name - option name. This option will always be available to the admin.
+ * value - option value. This value will be displayed for the option. The
+ * admin can assign a new value.
+ *
+ * To add default option items, add a complete entry below.
+ */
+ $default_block_options[] = array(
+ 'name' => "column",
+ 'value' => ""
+ );
+
+ $_PSL['default_block_options'] = $default_block_options;
+
/* ============= Things to deprecate ============= */
Index: config-dist.php3
===================================================================
RCS file: /cvsroot/phpslash/phpslash-ft/public_html/config-dist.php3,v
retrieving revision 1.34
retrieving revision 1.35
diff -C2 -d -r1.34 -r1.35
*** config-dist.php3 6 Feb 2003 20:28:20 -0000 1.34
--- config-dist.php3 13 Feb 2003 18:24:12 -0000 1.35
***************
*** 648,651 ****
--- 648,669 ----
}
+ $default_block_options = '';
+ /*
+ * default values of options for all blocks
+ *
+ * default options legend:
+ *
+ * name - option name. This option will always be available to the admin.
+ * value - option value. This value will be displayed for the option. The
+ * admin can assign a new value.
+ *
+ * To add default option items, add a complete entry below.
+ */
+ $default_block_options[] = array(
+ 'name' => "column",
+ 'value' => ""
+ );
+
+ $_PSL['default_block_options'] = $default_block_options;
/* ============= Things to deprecate ============= */
|