| [ Index ] |
PHP Cross Reference of Drupal 6 (gatewave) |
[Summary view] [Print] [Text view]
1 <?php 2 3 /** 4 * Implementation of hook_filter_default_formats(). 5 */ 6 function features_test_filter_default_formats() { 7 $formats = array(); 8 9 // Exported format: features_test 10 $formats['features_test'] = array( 11 'name' => 'features_test', 12 'roles' => array( 13 '0' => 'anonymous user', 14 '1' => 'authenticated user', 15 '2' => 'manager', 16 ), 17 'filters' => array( 18 '0' => array( 19 'module' => 'filter', 20 'delta' => '2', 21 'weight' => '0', 22 ), 23 '1' => array( 24 'module' => 'filter', 25 'delta' => '0', 26 'weight' => '1', 27 ), 28 '2' => array( 29 'module' => 'filter', 30 'delta' => '1', 31 'weight' => '2', 32 ), 33 '3' => array( 34 'module' => 'filter', 35 'delta' => '3', 36 'weight' => '10', 37 ), 38 ), 39 ); 40 41 return $formats; 42 }
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| Generated: Thu Mar 24 11:18:33 2011 | Cross-referenced by PHPXref 0.7 |