Your IP : 216.73.216.62


Current Path : /proc/1908984/root/proc/1908984/root/proc/self/root/tmp/
Upload File :
Current File : //proc/1908984/root/proc/1908984/root/proc/self/root/tmp/php6R2hQF

home/digilove/public_html/components/com_virtuemart/views/productdetails/tmpl/bs3-notify.php000064400000005022152442546210026676 0ustar00<?php
/**
 *
 * Show Notify page
 *
 * @package	VirtueMart
 * @subpackage
 * @author Max Milbers, Valerie Isaksen
 * @link http://www.virtuemart.net
 * @copyright Copyright (c) 2004 - 2010 VirtueMart Team. All rights reserved.
 * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
 * VirtueMart is free software. This version may have been modified pursuant
 * to the GNU General Public License, and as distributed it includes or
 * is derivative of works licensed under the GNU General Public License or
 * other free or open source software licenses.
 * @version $Id: default_reviews.php 5428 2012-02-12 04:41:22Z electrocity $
 */

// Check to ensure this file is included in Joomla!
defined ( '_JEXEC' ) or die ( 'Restricted access' );
vmJsApi::vmValidator();
?>
<h1 class="page-header"><?php echo vmText::_('COM_VIRTUEMART_CART_NOTIFY') ?></h1>

<form class="form-inline form-validate notifyform" method="post" action="<?php echo JRoute::_('index.php?option=com_virtuemart&view=productdetails&virtuemart_product_id='.$this->product->virtuemart_product_id.'&virtuemart_category_id='.$this->product->virtuemart_category_id, FALSE) ; ?>" name="notifyform" id="notifyform">

	<p><?php echo vmText::sprintf('COM_VIRTUEMART_CART_NOTIFY_DESC', $this->product->product_name); ?></p>

	<div class="form-group">
		<label class="hidden" for="notify_email"><?php echo vmText::_('COM_VIRTUEMART_EMAIL'); ?></label>
		<div class="input-group">
			<input class="required validate-email" id="notify_email" type="email" name="notify_email" value="<?php echo $this->user->email; ?>" placeholder="<?php echo vmText::_('COM_VIRTUEMART_EMAIL'); ?>" title="<?php echo vmText::_('COM_VIRTUEMART_ENTER_A_VALID_EMAIL_ADDRESS'); ?>"/>
			<span class="input-group-btn">
				<input type="submit" name="notifycustomer" class="notify-button btn btn-primary validate" value="<?php echo vmText::_('COM_VIRTUEMART_CART_NOTIFY') ?>"/>
			</span>
		</div>
	</div>

	<input type="hidden" name="virtuemart_product_id" value="<?php echo $this->product->virtuemart_product_id; ?>" />
	<input type="hidden" name="option" value="com_virtuemart" />
	<input type="hidden" name="virtuemart_category_id" value="<?php echo vRequest::getInt('virtuemart_category_id'); ?>" />
	<input type="hidden" name="virtuemart_user_id" value="<?php echo $this->user->id; ?>" />
	<input type="hidden" name="task" value="notifycustomer" />
	<input type="hidden" name="controller" value="productdetails" />
	<?php
	echo shopfunctionsF::renderCaptcha('notify_captcha');
	echo JHtml::_( 'form.token' ); ?>
	?>

</form>