Replace submit button with graphic

Discussion in 'Programming' started by electricmonkey, May 16, 2007.

  1. #1
    The search module for a CMS that I am presently using has following code. I will like to replace the generic submit button with a graphic (graphic.gif in root folder of site) of my own. Can someone please help me ammend this ? Thanks.
    Code:
    
    defined( '_VALID_MOS' ) or die( 'Restricted access' );
    
    $button            = $params->get( 'button', '' );
    $button_pos        = $params->get( 'button_pos', 'left' );
    $button_text    = $params->get( 'button_text', _SEARCH_TITLE );
    $width             = intval( $params->get( 'width', 20 ) );
    $text             = $params->get( 'text', _SEARCH_BOX );
    $set_Itemid        = intval( $params->get( 'set_itemid', 0 ) );
    
    $output = '<input name="searchword" id="mod_search_searchword" maxlength="20" alt="search" class="inputbox'. $moduleclass_sfx .'" type="text" size="'. $width .'" value="'. $text .'"  onblur="if(this.value==\'\') this.value=\''. $text .'\';" onfocus="if(this.value==\''. $text .'\') this.value=\'\';" />';
    
    if ( $button ) {
        $button = '<input type="submit" value="'. $button_text .'" class="button'. $moduleclass_sfx .'"/>';
    }
    
    switch ( $button_pos ) {
        case 'top':
            $button = $button .'<br/>';
            $output = $button . $output;
            break;
    
        case 'bottom':
            $button =  '<br/>'. $button;
            $output = $output . $button;
            break;
    
        case 'right':
            $output = $output . $button;
            break;
    
        case 'left':
        default:
            $output = $button . $output;
            break;
    }
    
    // set Itemid id for links
    if ( $set_Itemid ) {
        // use param setting
        $_Itemid    = $set_Itemid;
        $link         = 'index.php?option=com_search&amp;Itemid='. $set_Itemid;
    } else {
        $query = "SELECT id"
        . "\n FROM #__menu"
        . "\n WHERE link = 'index.php?option=com_search'"
        . "\n AND published = 1"
        ;
        $database->setQuery( $query );
        $rows = $database->loadObjectList();
        
        // try to auto detect search component Itemid
        if ( count( $rows ) ) {
            $_Itemid    = $rows[0]->id;
            $link         = 'index.php?option=com_search&amp;Itemid='. $_Itemid;
        } else {
        // Assign no Itemid
            $_Itemid     = '';
            $link         = 'index.php?option=com_search';    
        }
    }
    ?>
    
    <form action="<?php echo $link; ?>" method="get">
        <div class="search<?php echo $moduleclass_sfx; ?>">
            <?php echo $output; ?>
        </div>
    
        <input type="hidden" name="option" value="com_search" />
        <input type="hidden" name="Itemid" value="<?php echo $_Itemid; ?>" />    
    </form> 
    Code (markup):

     
    electricmonkey, May 16, 2007 IP
  2. leksa

    leksa Active Member

    Messages:
    432
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    53
    #2
    maybe you should put the css file too here.. :)
     
    leksa, May 16, 2007 IP
  3. Jona

    Jona Well-Known Member

    Messages:
    319
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    110
    #3
    Maybe this is what u looking for?

    <input type=image src="image.gif" name="submit">
     
    Jona, Jun 16, 2007 IP
  4. AstarothSolutions

    AstarothSolutions Peon

    Messages:
    2,680
    Likes Received:
    77
    Best Answers:
    0
    Trophy Points:
    0
    #4
    looks like nasty php stuff.

    As above is the simpliest
     
    AstarothSolutions, Jun 16, 2007 IP
  5. samusexu

    samusexu Well-Known Member

    Messages:
    138
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    108
    #5
    Replace the button definition on you 13th line with this:

    $button = '<input type="image" src="graphic.gif" value="'. $button_text .'" class="button'. $moduleclass_sfx .'"/>';
     
    samusexu, Jun 20, 2007 IP