Rendering form inside block
Hi Guys,
Wow this is great, I have watching the module building video session, and now i want to try my first modules about to make a search-box for searching taxonomy term to finding a content that have the term, so... I have writing this code in my module
/<strong>
* @file
* Let users to search any content based on taxonomy keywords.
*/
/</strong>
* Implement hook_block_info()
*/
function nab_taxonomy_search_block_info() {
// Blocks information.
$blocks['nab_taxo_search'] = array(
'info' => t('Taxonomy Search'),
'cache' => DRUPAL_NO_CACHE,
);
return $blocks;
}
but I missing how to adding a form search to block content, so anyone help me please. Right now I'm very exciting about developing a module.
Thank you anyway.