Pastie now auto-senses if line-wrap is a bad or good idea. Feedback?
## mark a section (Learn more)
/** * Implementation of hook_theme() */ function search_theme() { return array( 'search_theme_form' => array( 'arguments' => array('form' => NULL), 'template' => 'search-theme-form', ), 'search_block_form' => array( 'arguments' => array('form' => NULL), 'template' => 'search-block-form', ), 'search_result' => array( 'arguments' => array('item' => NULL, 'type' => NULL), 'file' => 'search.pages.inc', 'template' => 'search-result', ), 'search_results' => array( 'arguments' => array('results' => NULL, 'type' => NULL), 'file' => 'search.pages.inc', 'template' => 'search-results', ), ); }
This paste will be private.
From the Design Piracy series on my blog: