Jump to content

Upgrade Blockcart Configuration


TechDelavente

Recommended Posts

Hello everybody,

 

I come here today because im trying to put some configuration for my blockcart module modified.

 

Right now i would like to be able to configure a text input which affect directly a footer in my blockcart.

 

blockcart.tpl

 

<div class="block_footer_border1">
</div>
<p class="block_footer_text">
Footer Text
</p>
</div>

 

I started to put the configuration value in my blockcart.php

But i don't really know how to interact with my template file

 

:

 

Blockcart.php

 

 

$blockcartfooter = strval(Tools::getValue('blockcart'));
  if (!$blockcartfooter  || empty($blockcartfooter) || !Validate::isGenericName($blockcartfooter))
 $output .= $this->displayError( $this->l('Invalid Configuration value') );
  else
 {
   Configuration::updateValue('blockcart', $blockcartfooter);
// In function getContent()

----------------------------------------

<label>Configuration Value</value>
<div class="margin-form">
<input id="blockcart" class="" type="text" size="150" value="Free Shipping WorldWide" name="blockcart">
</div><div class="clear"></div>
//In function displayForm()

 

If you can help me on that it will be really kind.

 

Thank you,

 

Regards.

Edited by TechDelavente (see edit history)
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...