122 lines
4.7 KiB
PHP
122 lines
4.7 KiB
PHP
|
<?php
|
||
|
/*
|
||
|
* 2007-2011 PrestaShop
|
||
|
*
|
||
|
* NOTICE OF LICENSE
|
||
|
*
|
||
|
* This source file is subject to the Academic Free License (AFL 3.0)
|
||
|
* that is bundled with this package in the file LICENSE.txt.
|
||
|
* It is also available through the world-wide-web at this URL:
|
||
|
* http://opensource.org/licenses/afl-3.0.php
|
||
|
* If you did not receive a copy of the license and are unable to
|
||
|
* obtain it through the world-wide-web, please send an email
|
||
|
* to license@prestashop.com so we can send you a copy immediately.
|
||
|
*
|
||
|
* DISCLAIMER
|
||
|
*
|
||
|
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
|
||
|
* versions in the future. If you wish to customize PrestaShop for your
|
||
|
* needs please refer to http://www.prestashop.com for more information.
|
||
|
*
|
||
|
* @author PrestaShop SA <contact@prestashop.com>
|
||
|
* @copyright 2007-2011 PrestaShop SA
|
||
|
* @version Release: $Revision: 8783 $
|
||
|
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||
|
* International Registered Trademark & Property of PrestaShop SA
|
||
|
*/
|
||
|
|
||
|
if (!defined('_PS_VERSION_'))
|
||
|
exit;
|
||
|
|
||
|
class BlockNewProducts extends Module
|
||
|
{
|
||
|
public function __construct()
|
||
|
{
|
||
|
$this->name = 'blocknewproducts';
|
||
|
$this->tab = 'front_office_features';
|
||
|
$this->version = 0.9;
|
||
|
$this->author = 'PrestaShop';
|
||
|
$this->need_instance = 0;
|
||
|
|
||
|
parent::__construct();
|
||
|
|
||
|
$this->displayName = $this->l('New products block');
|
||
|
$this->description = $this->l('Displays a block featuring newly added products.');
|
||
|
}
|
||
|
|
||
|
public function install()
|
||
|
{
|
||
|
if (parent::install() == false OR $this->registerHook('rightColumn') == false OR $this->registerHook('header') == false OR Configuration::updateValue('NEW_PRODUCTS_NBR', 5) == false)
|
||
|
return false;
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
public function getContent()
|
||
|
{
|
||
|
$output = '<h2>'.$this->displayName.'</h2>';
|
||
|
if (Tools::isSubmit('submitBlockNewProducts'))
|
||
|
{
|
||
|
if (!$productNbr = Tools::getValue('productNbr') OR empty($productNbr))
|
||
|
$output .= '<div class="alert error">'.$this->l('Please fill in the "products displayed" field.').'</div>';
|
||
|
elseif ((int)($productNbr) == 0)
|
||
|
$output .= '<div class="alert error">'.$this->l('Invalid number.').'</div>';
|
||
|
else
|
||
|
{
|
||
|
Configuration::updateValue('PS_BLOCK_NEWPRODUCTS_DISPLAY', (int)(Tools::getValue('always_display')));
|
||
|
Configuration::updateValue('NEW_PRODUCTS_NBR', (int)($productNbr));
|
||
|
$output .= '<div class="conf confirm"><img src="../img/admin/ok.gif" alt="'.$this->l('Confirmation').'" />'.$this->l('Settings updated').'</div>';
|
||
|
}
|
||
|
}
|
||
|
return $output.$this->displayForm();
|
||
|
}
|
||
|
|
||
|
public function displayForm()
|
||
|
{
|
||
|
$output = '
|
||
|
<form action="'.Tools::safeOutput($_SERVER['REQUEST_URI']).'" method="post">
|
||
|
<fieldset><legend><img src="'.$this->_path.'logo.gif" alt="" title="" />'.$this->l('Settings').'</legend>
|
||
|
<label>'.$this->l('Products displayed').'</label>
|
||
|
<div class="margin-form">
|
||
|
<input type="text" name="productNbr" value="'.(int)(Configuration::get('NEW_PRODUCTS_NBR')).'" />
|
||
|
<p class="clear">'.$this->l('Set the number of products to be displayed in this block').'</p>
|
||
|
</div>
|
||
|
<label>'.$this->l('Always display block').'</label>
|
||
|
<div class="margin-form">
|
||
|
<input type="radio" name="always_display" id="display_on" value="1" '.(Tools::getValue('always_display', Configuration::get('PS_BLOCK_NEWPRODUCTS_DISPLAY')) ? 'checked="checked" ' : '').'/>
|
||
|
<label class="t" for="display_on"> <img src="../img/admin/enabled.gif" alt="'.$this->l('Enabled').'" title="'.$this->l('Enabled').'" /></label>
|
||
|
<input type="radio" name="always_display" id="display_off" value="0" '.(!Tools::getValue('always_display', Configuration::get('PS_BLOCK_NEWPRODUCTS_DISPLAY')) ? 'checked="checked" ' : '').'/>
|
||
|
<label class="t" for="display_off"> <img src="../img/admin/disabled.gif" alt="'.$this->l('Disabled').'" title="'.$this->l('Disabled').'" /></label>
|
||
|
<p class="clear">'.$this->l('Show the block even if no products are available.').'</p>
|
||
|
</div>
|
||
|
<center><input type="submit" name="submitBlockNewProducts" value="'.$this->l('Save').'" class="button" /></center>
|
||
|
</fieldset>
|
||
|
</form>';
|
||
|
return $output;
|
||
|
}
|
||
|
|
||
|
public function hookRightColumn($params)
|
||
|
{
|
||
|
global $smarty;
|
||
|
|
||
|
$newProducts = Product::getNewProducts((int)($params['cookie']->id_lang), 0, (int)(Configuration::get('NEW_PRODUCTS_NBR')));
|
||
|
if (!$newProducts AND !Configuration::get('PS_BLOCK_NEWPRODUCTS_DISPLAY'))
|
||
|
return;
|
||
|
$smarty->assign(array('new_products' => $newProducts, 'mediumSize' => Image::getSize('medium')));
|
||
|
|
||
|
return $this->display(__FILE__, 'blocknewproducts.tpl');
|
||
|
}
|
||
|
|
||
|
public function hookLeftColumn($params)
|
||
|
{
|
||
|
return $this->hookRightColumn($params);
|
||
|
}
|
||
|
|
||
|
public function hookHeader($params)
|
||
|
{
|
||
|
Tools::addCSS(($this->_path).'blocknewproducts.css', 'all');
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
|