VirtueMart Forum

VirtueMart 2 + 3 + 4 => Virtuemart Development and bug reports => Coding Central => Topic started by: Rune Rasmussen on April 19, 2015, 12:24:27 PM

Title: Payment and Shipment logos (plugin params)
Post by: Rune Rasmussen on April 19, 2015, 12:24:27 PM
Hi,

In plugins xml we can define directory for payment_logos and shipment_logos, but this seems to only tell where to look for images when setting params in admin? In frontend they wil not display unless they are placed in "/images/stories/virtuemart/payment" or "/images/stories/virtuemart/shipment".

T.ex. directory="/plugins/vmpayment/myplugin/images" will not display the logo in frontend...

Is this intentionally or a bug?

If it's intentionally, is it an easy way to get the logos saved/moved into /images/stories/virtuemart/payment or /images/stories/virtuemart/shipment when the plugins are installed?


Anyhow, the media folder would probably fit better for logos etc., since we then could do t.ex.:

    <media folder="images" destination="com_virtuemart/images/shipment">
<filename>shipping_image1.gif</filename>
<filename>shipping_image2.gif</filename>
    </media>
Title: Re: Payment and Shipment logos (plugin params)
Post by: Rune Rasmussen on May 05, 2015, 14:16:11 PM
Quote
Is this intentionally or a bug?
Title: Re: Payment and Shipment logos (plugin params)
Post by: GJC Web Design on May 05, 2015, 14:40:32 PM
if you check function displayLogos ($logo_list) in vmsplugin.php you will see the path is hard coded

$url = JURI::root () . 'images/stories/virtuemart/' . $this->_psType . '/';

so yes  - intentional

I just over ride the function in my shipping plugins so then I can place the logos where ever I want

same with the html rendering etc to get more control of the display

e.g.

/**
* displays the logos of a periship VirtueMart plugin
*
* @author gjcwebdesign
* @param array $logo_list
* @return html with logos
*/
protected function displayLogos ($logo_list) {

$img = "";

if (!(empty($logo_list))) {
$url = JURI::root () . 'plugins/vmshipment/periship/periship_images/';
if (!is_array ($logo_list)) {
$logo_list = (array)$logo_list;
}
foreach ($logo_list as $logo) {
$alt_text = substr ($logo, 0, strpos ($logo, '.'));
$img .= '<span class="vmCartShipmentLogo perishipLogo" ><img align="middle" src="' . $url . $logo . '"  alt="' . $alt_text . '" /></span> ';
}
}
return $img;
}

Title: Re: Payment and Shipment logos (plugin params)
Post by: Rune Rasmussen on May 05, 2015, 14:52:46 PM
It can be a "mistake" or old forgotten bad way of dealing with it, even if it's hard-coded, there's lots of it in VM...
Things like this could, and probably should, be changed to improve the system and the compatibility with Joomla (here media folder).

That said, I really appreciate you sharing your work-around for it. Thanks. :)