[Phpslash-commit] CVS: phpslash-dev/public_html config-dist.php,1.31,1.32
Brought to you by:
joestewart,
nhruby
From: Joe S. <joe...@us...> - 2004-11-05 16:35:35
|
Update of /cvsroot/phpslash/phpslash-dev/public_html In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31919/phpslash-dev/public_html Modified Files: config-dist.php Log Message: block plugins operational Index: config-dist.php =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/public_html/config-dist.php,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** config-dist.php 23 Oct 2004 17:20:02 -0000 1.31 --- config-dist.php 5 Nov 2004 16:35:24 -0000 1.32 *************** *** 938,941 **** --- 938,973 ---- */ + $default_block_options[] = array( + 'name' => "input", + 'description' => 'apply this filter at block save', + 'value' => "", + 'type' => 'select', + 'selected' => 'value', + 'hook' => 'input', + 'choices' => array('' => 'none', + 'html' => 'html(no text changes)', + 'plaintext'=> 'Plain Text(Returns added)', + 'exttrans' => 'Extended Translation(show html code)', + 'mssmartquotes' => 'Convert MS Smart Quotes', + 'wiki' => 'Wiki', + 'bbcode' => 'BBCode') + ); + + + $default_block_options[] = array( + 'name' => "output", + 'description' => 'apply this filter at display time', + 'value' => "", + 'type' => 'select', + 'hook' => 'output', + 'choices' => array('' => 'none', + 'html' => 'html(no text changes)', + 'plaintext'=> 'Plain Text(Returns added)', + 'exttrans' => 'Extended Translation(show html code)', + 'wiki' => 'Wiki', + 'bbcode' => 'BBCode') + ); + + $_PSL['default_block_options'] = $default_block_options; |