Add module Upela
512
modules/upela/api/UpelaApi.php
Normal file
@ -0,0 +1,512 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2016 PrestaShop
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This source file is subject to the Open Software License (OSL 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/osl-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.
|
||||
*
|
||||
* @author UPELA
|
||||
* @copyright 2017-2018 MPG Upela
|
||||
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
||||
*/
|
||||
|
||||
class UpelaApi
|
||||
{
|
||||
|
||||
const URL_API = 'https://api.upela.com/';
|
||||
const URL_API_TEST = 'https://upelaapi_web_1.upela.nuagic.fr/';
|
||||
const URL_UPELA = 'https://www.upela.com/';
|
||||
const URL_UPELA_TEST = 'https://upelaapi_web_1.upela.nuagic.fr/';
|
||||
|
||||
const API_MODE_PROD = 'prod';
|
||||
const API_MODE_TEST = 'test';
|
||||
const API_POST = 'post';
|
||||
const API_GET = 'get';
|
||||
const API_VERSION = 'v3';
|
||||
const API_PTF_VERSION = 'v5';
|
||||
|
||||
protected $host;
|
||||
protected $url_upela;
|
||||
protected $endpoint;
|
||||
protected $action;
|
||||
protected $logs = array();
|
||||
protected $debug = false;
|
||||
protected $user = '';
|
||||
protected $passwd = '';
|
||||
protected $api_key;
|
||||
protected $id;
|
||||
protected $name;
|
||||
protected $mode;
|
||||
|
||||
/**
|
||||
* UpelaApi constructor.
|
||||
*
|
||||
* @param string $user
|
||||
* @param null|string $mode
|
||||
*/
|
||||
public function __construct($user, $mode)
|
||||
{
|
||||
$this->setMode($mode);
|
||||
|
||||
if ($user) {
|
||||
$this->setName($user['name']);
|
||||
$this->setId($user['id']);
|
||||
$this->setCredentials($user['login'], $user['password']);
|
||||
}
|
||||
}
|
||||
|
||||
protected function setCredentials($user, $password)
|
||||
{
|
||||
$this->user = $user;
|
||||
$this->passwd = $password;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return mixed
|
||||
*/
|
||||
public function getMode()
|
||||
{
|
||||
return $this->mode;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param mixed $mode
|
||||
*/
|
||||
public function setMode($mode)
|
||||
{
|
||||
if ($mode == self::API_MODE_PROD) {
|
||||
$this->host = self::URL_API;
|
||||
$this->url_upela = self::URL_UPELA;
|
||||
} else {
|
||||
$this->host = self::URL_API_TEST;
|
||||
$this->url_upela = self::URL_UPELA_TEST;
|
||||
}
|
||||
|
||||
$this->mode = $mode;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getUser()
|
||||
{
|
||||
return $this->user;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getPassword()
|
||||
{
|
||||
return $this->passwd;
|
||||
}
|
||||
|
||||
public function getHost()
|
||||
{
|
||||
return $this->host;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getName()
|
||||
{
|
||||
return $this->name;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $name
|
||||
*/
|
||||
public function setName($name)
|
||||
{
|
||||
$this->name = $name;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getUrlconnection()
|
||||
{
|
||||
$url = $this->url_upela.'admin/user/actions_spec.php?action=login_as&id=';
|
||||
$url .= $this->getId().'&url='.$this->url_upela.'store/orders.php';
|
||||
return $url;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public function getId()
|
||||
{
|
||||
return $this->id;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $id
|
||||
*/
|
||||
public function setId($id)
|
||||
{
|
||||
$this->id = $id;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $username
|
||||
* @param $password
|
||||
*
|
||||
* @return mixed
|
||||
*/
|
||||
public function getUserId($username, $password)
|
||||
{
|
||||
$this->action = self::API_POST;
|
||||
$this->endpoint = 'api/'.self::API_VERSION.'/login/';
|
||||
|
||||
$data = array(
|
||||
'account' => array(
|
||||
'login' => $username,
|
||||
'password' => $password
|
||||
)
|
||||
);
|
||||
|
||||
$ret = $this->makeCall($this->getBody($data), null, true);
|
||||
|
||||
if (isset($ret['success'])) {
|
||||
if ($ret['success']) {
|
||||
$this->setCredentials($username, $password);
|
||||
$this->setId($ret['customer_id']);
|
||||
$this->setName($ret['lastname']);
|
||||
}
|
||||
}
|
||||
|
||||
return $ret;
|
||||
}
|
||||
|
||||
/**
|
||||
* Make call
|
||||
*
|
||||
* @param mixed $body body content
|
||||
* @param mixed $http_header header content
|
||||
* @param string $user User login
|
||||
* @param string $passwd User password
|
||||
*
|
||||
* @return mixed Call
|
||||
*/
|
||||
protected function makeCall($body = null, $http_header = null, $urlOrApi = false)
|
||||
{
|
||||
// init uri to call
|
||||
if ($urlOrApi) {
|
||||
$uri_to_call = $this->url_upela.$this->endpoint;
|
||||
} else {
|
||||
$uri_to_call = $this->host.$this->endpoint;
|
||||
}
|
||||
|
||||
if ($body != null) {
|
||||
if ($http_header) {
|
||||
$stream_context = array(
|
||||
'http' => array(
|
||||
'method' => 'POST',
|
||||
'content' => $body,
|
||||
'header' => $http_header
|
||||
)
|
||||
);
|
||||
} else {
|
||||
$stream_context = array(
|
||||
'http' => array(
|
||||
'method' => 'POST',
|
||||
'content' => $body
|
||||
)
|
||||
);
|
||||
}
|
||||
} else {
|
||||
$stream_context = array();
|
||||
}
|
||||
|
||||
$response = $this->fileGetContents($uri_to_call, $stream_context);
|
||||
|
||||
if ($response != false) {
|
||||
$response = Tools::jsonDecode($response, true);
|
||||
}
|
||||
return $response;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param string $url
|
||||
* @param null $stream_context
|
||||
* @param int $curl_timeout
|
||||
*
|
||||
* @return bool|mixed
|
||||
*/
|
||||
private function fileGetContents($url, $opts = null, $curl_timeout = 5)
|
||||
{
|
||||
if (function_exists('curl_init')) {
|
||||
$curl = curl_init();
|
||||
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
|
||||
curl_setopt($curl, CURLOPT_URL, $url);
|
||||
curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 5);
|
||||
curl_setopt($curl, CURLOPT_TIMEOUT, $curl_timeout);
|
||||
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, 0);
|
||||
|
||||
if ($opts != null) {
|
||||
if (isset($opts['http']['method']) && Tools::strtolower($opts['http']['method']) == self::API_POST) {
|
||||
curl_setopt($curl, CURLOPT_POST, true);
|
||||
if (isset($opts['http']['content'])) {
|
||||
curl_setopt($curl, CURLOPT_POSTFIELDS, $opts['http']['content']);
|
||||
}
|
||||
if (isset($opts['http']['header'])) {
|
||||
curl_setopt($curl, CURLOPT_HTTPHEADER, array(
|
||||
"Content-type: application/json",
|
||||
"Content-Length: ".Tools::strlen($opts['http']['content']),
|
||||
"Authorization: ".$opts['http']['header']
|
||||
));
|
||||
} else {
|
||||
curl_setopt($curl, CURLOPT_HTTPHEADER, array(
|
||||
"Content-type: application/json",
|
||||
"Content-Length: ".Tools::strlen($opts['http']['content'])/*,
|
||||
"Authorization: ".Configuration::get('UPELA_API_KEY')*/
|
||||
));
|
||||
}
|
||||
} else {
|
||||
curl_setopt($curl, CURLOPT_HTTPHEADER, array(
|
||||
"Content-type: application/json"/*,
|
||||
"Authorization: ".Configuration::get('UPELA_API_KEY')*/
|
||||
));
|
||||
}
|
||||
}
|
||||
|
||||
$content = curl_exec($curl);
|
||||
curl_close($curl);
|
||||
|
||||
return $content;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $fields
|
||||
*
|
||||
* @return bool|string
|
||||
*/
|
||||
protected function getBody(array $fields)
|
||||
{
|
||||
$return = true;
|
||||
|
||||
// if fields not empty
|
||||
if (empty($fields)) {
|
||||
$return = false;
|
||||
}
|
||||
|
||||
// if not empty
|
||||
if ($return) {
|
||||
return json_encode($fields);
|
||||
}
|
||||
|
||||
return $return;
|
||||
}
|
||||
|
||||
public function getUserExists($username)
|
||||
{
|
||||
$this->action = self::API_GET;
|
||||
|
||||
if ($this->mode == self::API_MODE_TEST) {
|
||||
$this->endpoint = '/apiPlatform/web/app_dev.php/api/users/'.$username;
|
||||
} else {
|
||||
$this->endpoint = self::API_PTF_VERSION.'/users/'.$username;
|
||||
}
|
||||
|
||||
$ret = $this->makeCall();
|
||||
|
||||
return isset($ret['id']);
|
||||
}
|
||||
|
||||
public function getStores($userId)
|
||||
{
|
||||
$this->action = self::API_GET;
|
||||
if ($this->mode == self::API_MODE_TEST) {
|
||||
$this->endpoint = '/apiPlatform/web/app_dev.php/api/store/'.$userId;
|
||||
} else {
|
||||
$this->endpoint = self::API_PTF_VERSION.'/store/'.$userId;
|
||||
}
|
||||
|
||||
$ret = $this->makeCall();
|
||||
|
||||
return $ret;
|
||||
}
|
||||
|
||||
/**
|
||||
* @values array user
|
||||
*
|
||||
* @return bool
|
||||
*/
|
||||
public function createAccount($values)
|
||||
{
|
||||
$this->action = self::API_POST;
|
||||
if ($this->mode == self::API_MODE_TEST) {
|
||||
$this->endpoint = '/apiPlatform/web/app_dev.php/api/user';
|
||||
} else {
|
||||
$this->endpoint = self::API_PTF_VERSION.'/user';
|
||||
}
|
||||
|
||||
$data = array(
|
||||
'login' => $values['login'],
|
||||
'pseudo' => $values['pseudo'],
|
||||
'email' => $values['email'],
|
||||
'password' => $values['password'],
|
||||
'gender' => 'M',
|
||||
'lastname' => $values['lastname'],
|
||||
'firstname' => $values['firstname'],
|
||||
'company' => $values['company'],
|
||||
'pro' => '1'
|
||||
);
|
||||
|
||||
$ret = $this->makeCall($this->getBody($data));
|
||||
|
||||
$result = false;
|
||||
|
||||
if (isset($ret['id'])) {
|
||||
//Add company address
|
||||
|
||||
$this->action = self::API_POST;
|
||||
$this->endpoint = 'api/'.self::API_VERSION.'/get_country_id/';
|
||||
$data = array(
|
||||
'iso' => $values['country']
|
||||
);
|
||||
|
||||
$countryId = $this->makeCall($this->getBody($data), null, true);
|
||||
$countryId = $countryId['id'];
|
||||
|
||||
$this->action = self::API_POST;
|
||||
|
||||
if ($this->mode == self::API_MODE_TEST) {
|
||||
$this->endpoint = '/apiPlatform/web/app_dev.php/api/address/'.$ret['id'].'/new';
|
||||
} else {
|
||||
$this->endpoint = self::API_PTF_VERSION.'/address/'.$ret['id'].'/new';
|
||||
}
|
||||
|
||||
$data = array(
|
||||
'alias' => 'Address',
|
||||
'company' => $values['company'],
|
||||
'pro' => $values['pro'],
|
||||
'gender' => 'M',
|
||||
'lastname' => $values['lastname'],
|
||||
'firstname' => $values['firstname'],
|
||||
'address1' => $values['address_1'],
|
||||
'address2' => $values['address_2'],
|
||||
'address3' => $values['address_3'],
|
||||
'postcode' => $values['zipcode'],
|
||||
'city' => $values['city'],
|
||||
'countryId' => $countryId,
|
||||
'stateId' => '',
|
||||
'state' => '',
|
||||
'departmentId' => '',
|
||||
'phone' => $values['phone'],
|
||||
'phoneMobile' => '',
|
||||
'fax' => '',
|
||||
'email' => $values['email'],
|
||||
'vatNumber' => $values['immat'],
|
||||
'siret' => $values['siret'],
|
||||
'naf' => '',
|
||||
);
|
||||
|
||||
$address_ret = $this->makeCall($this->getBody($data));
|
||||
|
||||
if (isset($address_ret['id'])) {
|
||||
$result = array(
|
||||
'user_id' => $ret['id'],
|
||||
'address_id' => $address_ret['id']
|
||||
);
|
||||
}
|
||||
}
|
||||
return $result;
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $values array
|
||||
*
|
||||
* @return mixed
|
||||
*/
|
||||
public function createStore($values)
|
||||
{
|
||||
//add store address
|
||||
$this->action = self::API_POST;
|
||||
$this->endpoint = 'api/'.self::API_VERSION.'/get_country_id/';
|
||||
|
||||
$data = array(
|
||||
'iso' => $values['store_country']
|
||||
);
|
||||
$store_countryId = $this->makeCall($this->getBody($data), null, true);
|
||||
$store_countryId = $store_countryId['id'];
|
||||
|
||||
$this->action = self::API_POST;
|
||||
|
||||
if ($this->mode == self::API_MODE_TEST) {
|
||||
$this->endpoint = '/apiPlatform/web/app_dev.php/api/address/'.$values['user_id'].'/new';
|
||||
} else {
|
||||
$this->endpoint = self::API_PTF_VERSION.'/address/'.$values['user_id'].'/new';
|
||||
}
|
||||
|
||||
$data = array(
|
||||
'alias' => $values['store_name'],
|
||||
'company' => $values['company_name'],
|
||||
'pro' => $values['pro'],
|
||||
'gender' => 'M',
|
||||
'lastname' => $values['lastname'],
|
||||
'firstname' => $values['firstname'],
|
||||
'address1' => $values['store_address_1'],
|
||||
'address2' => $values['store_address_2'],
|
||||
'address3' => $values['store_address_3'],
|
||||
'postcode' => $values['store_zipcode'],
|
||||
'city' => $values['store_city'],
|
||||
'countryId' => $store_countryId,
|
||||
'stateId' => '',
|
||||
'state' => '',
|
||||
'departmentId' => '',
|
||||
'phone' => $values['phone'],
|
||||
'phoneMobile' => '',
|
||||
'fax' => '',
|
||||
'email' => $values['email'],
|
||||
'vatNumber' => '',
|
||||
'siret' => '',
|
||||
'naf' => '',
|
||||
);
|
||||
|
||||
$store_address_ret = $this->makeCall($this->getBody($data));
|
||||
|
||||
if (isset($store_address_ret['id'])) {
|
||||
$data = array(
|
||||
'name' => $values['name'],
|
||||
'address_id' => $store_address_ret['id'],
|
||||
'module_url' => $values['module_url'],
|
||||
'type' => $values['type'],
|
||||
'username' => $values['username'],
|
||||
'apiKey' => $values['apikey'],
|
||||
'statusList' => $values['statusList']
|
||||
);
|
||||
|
||||
$this->action = self::API_POST;
|
||||
if ($this->mode == self::API_MODE_TEST) {
|
||||
$this->endpoint = '/apiPlatform/web/app_dev.php/api/store/'.$values['user_id'].'/new';
|
||||
} else {
|
||||
$this->endpoint = self::API_PTF_VERSION.'/store/'.$values['user_id'].'/new';
|
||||
}
|
||||
|
||||
$ret = $this->makeCall($this->getBody($data));
|
||||
|
||||
if (isset($ret['id'])) {
|
||||
return $ret;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
protected function getCredentials()
|
||||
{
|
||||
return array('login' => $this->user, 'password' => $this->passwd);
|
||||
}
|
||||
}
|
35
modules/upela/api/index.php
Normal file
@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2015 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-2015 PrestaShop SA
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
|
||||
header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
|
||||
|
||||
header('Cache-Control: no-store, no-cache, must-revalidate');
|
||||
header('Cache-Control: post-check=0, pre-check=0', false);
|
||||
header('Pragma: no-cache');
|
||||
|
||||
header('Location: ../');
|
||||
exit;
|
29
modules/upela/controllers/admin/AdminUpelaController.php
Normal file
@ -0,0 +1,29 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2016 PrestaShop
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This source file is subject to the Open Software License (OSL 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/osl-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.
|
||||
*
|
||||
* @author UPELA
|
||||
* @copyright 2017-2018 MPG Upela
|
||||
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
||||
*/
|
||||
|
||||
class AdminUpelaController extends ModuleAdminController
|
||||
{
|
||||
public function __construct()
|
||||
{
|
||||
$this->className = 'AdminUpela';
|
||||
parent::__construct();
|
||||
|
||||
Tools::redirectAdmin($this->context->link->getAdminLink('AdminHome'));
|
||||
}
|
||||
}
|
35
modules/upela/controllers/admin/index.php
Normal file
@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2015 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-2015 PrestaShop SA
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
|
||||
header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
|
||||
|
||||
header('Cache-Control: no-store, no-cache, must-revalidate');
|
||||
header('Cache-Control: post-check=0, pre-check=0', false);
|
||||
header('Pragma: no-cache');
|
||||
|
||||
header('Location: ../');
|
||||
exit;
|
35
modules/upela/controllers/front/index.php
Normal file
@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2015 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-2015 PrestaShop SA
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
|
||||
header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
|
||||
|
||||
header('Cache-Control: no-store, no-cache, must-revalidate');
|
||||
header('Cache-Control: post-check=0, pre-check=0', false);
|
||||
header('Pragma: no-cache');
|
||||
|
||||
header('Location: ../');
|
||||
exit;
|
35
modules/upela/controllers/index.php
Normal file
@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2015 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-2015 PrestaShop SA
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
|
||||
header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
|
||||
|
||||
header('Cache-Control: no-store, no-cache, must-revalidate');
|
||||
header('Cache-Control: post-check=0, pre-check=0', false);
|
||||
header('Pragma: no-cache');
|
||||
|
||||
header('Location: ../');
|
||||
exit;
|
35
modules/upela/index.php
Normal file
@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2015 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-2015 PrestaShop SA
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
|
||||
header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
|
||||
|
||||
header('Cache-Control: no-store, no-cache, must-revalidate');
|
||||
header('Cache-Control: post-check=0, pre-check=0', false);
|
||||
header('Pragma: no-cache');
|
||||
|
||||
header('Location: ../');
|
||||
exit;
|
BIN
modules/upela/logo.gif
Normal file
After Width: | Height: | Size: 81 B |
BIN
modules/upela/logo.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
35
modules/upela/models/index.php
Normal file
@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2015 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-2015 PrestaShop SA
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
|
||||
header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
|
||||
|
||||
header('Cache-Control: no-store, no-cache, must-revalidate');
|
||||
header('Cache-Control: post-check=0, pre-check=0', false);
|
||||
header('Pragma: no-cache');
|
||||
|
||||
header('Location: ../');
|
||||
exit;
|
35
modules/upela/sql/index.php
Normal file
@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2015 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-2015 PrestaShop SA
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
|
||||
header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
|
||||
|
||||
header('Cache-Control: no-store, no-cache, must-revalidate');
|
||||
header('Cache-Control: post-check=0, pre-check=0', false);
|
||||
header('Pragma: no-cache');
|
||||
|
||||
header('Location: ../');
|
||||
exit;
|
17
modules/upela/translations/en.php
Normal file
@ -0,0 +1,17 @@
|
||||
<?php
|
||||
|
||||
global $_MODULE;
|
||||
$_MODULE = array();
|
||||
$_MODULE['<{upela}prestashop>upela_8ae4a996d1c51d4169d7a6bbfa7452da'] = 'Upela';
|
||||
$_MODULE['<{upela}prestashop>create_account_205be9be7dda08c4608df07c0295340b'] = 'Create';
|
||||
$_MODULE['<{upela}prestashop>create_account_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'Email';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_bbaff12800505b22a853e8b7f4eb6a22'] = 'Contact';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_8ae4a996d1c51d4169d7a6bbfa7452da'] = 'Upela';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_1ac9892f2ddc43ee1a46037c40b7a9b1'] = 'Plug and Play';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_54f664c70c22054ea0d8d26fc3997ce7'] = 'Online';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'Email';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_acd92b76f3fe32da6c7e2d66a63b7817'] = 'MPG UPELA';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_7ffdefe7c99a57d2675a7b5a19ec01ca'] = '17BIS RUE LA BOETIE';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_3dce0219bc199a019a8ff0441394261b'] = '75008 PARIS - FRANCE';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_63884adfc7756525cfa832993ca0e908'] = 'RCS Paris 750 389 769';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_cb3e8cf309842fa006ce03ebab14f004'] = 'VAT n° FR12750389769';
|
88
modules/upela/translations/es.php
Normal file
@ -0,0 +1,88 @@
|
||||
<?php
|
||||
|
||||
global $_MODULE;
|
||||
$_MODULE = array();
|
||||
$_MODULE['<{upela}prestashop>upela_8ae4a996d1c51d4169d7a6bbfa7452da'] = 'Upela';
|
||||
$_MODULE['<{upela}prestashop>upela_4c8e0e3d9c8adece907241d8472eca75'] = 'La mejor manera de enviar un paquete a cualquier parte. Ahorra en el precio, no en el servicio.';
|
||||
$_MODULE['<{upela}prestashop>create_account_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'Email';
|
||||
$_MODULE['<{upela}prestashop>create_account_4f68183551e5dbd7c341347ffe308682'] = 'N.IF.';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_86b467984feb09b85bad8dd2749e719a'] = 'La solución Upela';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_7b1329f5ca3d485bba602a815ffd4d6d'] = 'Manual del usuario';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_f61d92234d39bce8a0d5935ffb97ba39'] = 'Parámetros de conexión';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_bbaff12800505b22a853e8b7f4eb6a22'] = 'Contacto';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_8ae4a996d1c51d4169d7a6bbfa7452da'] = 'Upela';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_01dadf401b8dbb7c5c2f68e815a696f1'] = 'La mejor manera de enviar un paquete';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_e03efdf7ca1ba6fbea27ff481c531c51'] = 'Ahorra en el precio, no en el servicio';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_96aafac761c431d59db0070b0bce6cb2'] = 'Estás conectado. Bienvenido';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_7f15f0868de3f02fa049840f51e51cf7'] = 'Ir a Upela';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_068a442b24c2bdf3d26228540ff17333'] = 'No estás conectado';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_1a5577f049042062ab324108fdb37248'] = 'Crea tu cuenta PRO';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_92162c48b0e6494fd9b82c7b620c95d9'] = 'Conéctate a tu cuenta';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_e5e41550e3e7a879aadd388f762dcb27'] = 'Gracias a Upela y Prestashop, benefíciate de tarifas reducidas para todos tus envíos de sobres, paquetes o palés.';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_e327966af72586e0f5d9faaae2752b24'] = 'Nuestros transportistas';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_f693d6ed5679693accf2f1b1923e1f50'] = 'La confianza en los líderes del tranporte';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_d81e0d9e12d0cdec13e79f58137d2064'] = 'Plazos de entrega ultra flexibles en 3h, 24h o 48hPlazos de entrega ultra flexibles en 3h, 24h o 48h';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_28e62a28b763a2061d7288aded476e93'] = 'Servicio de Atención al Cliente multitransportista dedicado a los profesionales';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_871127850d11a949dddb8aa4b51ba007'] = 'Plataformas de e-commerce gratuitas para simplificar tu logistica';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_ea931c7f2face4fa9ac86cdada7e3fbc'] = 'Servicio de aduanas integrado';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_81d44f28016bd86596b9f96c5b9c6329'] = 'Sin mínimo de facturación mensual';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_bbecbe54167646db56a920aad127ac93'] = 'Ahorro de tiempo: envía en tan solo unos clics';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_7659e6df9e2964fffb243a646add33aa'] = 'en 3 clics';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_7eece51cf3938103677db7a5051ef8f5'] = 'Compara';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_0387832795db3eb2e05f4365fba5ddac'] = 'Envía';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_92ea731d3af6677905303c88689f5d55'] = 'Sigue';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_096d76c17abb603d3c1035903a520541'] = 'En vídeo';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_a49c2a92c8d82a06076e523bd2379e53'] = 'Nuestras plataformas de e-commerce';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_a663f9fa94fe55d4be1f0b3c986a0557'] = 'Gana en productividad y competitividad';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_1ac9892f2ddc43ee1a46037c40b7a9b1'] = 'Plug and Play';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_dd17e10e985c48c612eb6c43e81dc1d8'] = 'Restringir los errores al introducir datos';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_44e988e9b892c52de058a71b1f0e532c'] = 'Actualización automática del tracking';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_175bada5126d0fa77bb14ae96ed60b9e'] = 'Logística integrada';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_59a129db0008167cd8e94f64bb003f14'] = 'Pedidos centralizados';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_9da91391e29c9bb911af1a7d55d3b7c6'] = 'Gestión multi-almacén';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_42dec4716f0a25f565a8ac4faf3d09f1'] = '¡... y muchas más!';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_33354d97cd5d54f99a4e04d2f5f65d64'] = 'Chat';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_bcc254b55c4a1babdf1dcb82c207506b'] = 'Teléfono';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_54f664c70c22054ea0d8d26fc3997ce7'] = 'Online';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'Email';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_6f363e03af11acd967bf6e4af5ff3682'] = 'La asistencia Upela';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_c4468175a4523261f9ca70342949f7c0'] = 'Un servicio de atención al cliente multitransportista Upela';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_5be3e2464e080f4dd29d99576982dcb1'] = 'Respuesta en el mismo día';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_1768a553a1d04528b7bd81c93380458a'] = 'Consejeros disponibles sin interrupción';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_6ebb5c36c5c76298e07a467428d39640'] = 'Seguimiento de los envíos y gestión centralizada ';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_a62c455049d335ccbe02904e139f8142'] = 'Estudiamos caso por caso';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_529cbba3326b4decc6965f09927716ea'] = 'Asesoramiento de los pasos a seguir';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_385d5b0eea7e199471284b2cc50adf25'] = 'Descubre nuestras herramientas y nuestros servicios';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_2e5f2bf721b8e39821e4e3511a099d4d'] = 'Cómo parametrar tu cuenta';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_489af77c71f11672d22403a8df7edfdc'] = 'En tu tienda Prestashop';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_a6976ff369c161d362757f5577d317e2'] = '1) Activa el webservice:';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_0efa47691b7b9a7a9383a87a49859d12'] = 'Menú \"Parámetros avanzados\" y \"Webservice\"';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_4cf2b96aeb12fe8b0597286152ee71fa'] = 'Selecciona \"Activar el servicio Web\" y \"Activar modo CGI para PHP\"';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_c314e6847a63754023c454637afe98c4'] = 'Añadir una nueva clase webservice';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_794b84b2d0da43d2e4b96ff0ba447fd5'] = '2) Crea el nuevo webservice';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_faefbac12c6261a8bdf6f47fcc41aa41'] = 'Genera una nueva clave API';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_c0491fe694590e592b891462fa800a2b'] = 'Verifica que el Estado del servicio está activado: \"Si\"';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_3badd0ba5f628178f313bf8a281cfec8'] = 'Atribuye los permisos GET,POST y PUT para permitir el uso del webservice';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_61f866bc212c59fad0149fe9322cf963'] = '3) Crea o conéctate a tu cuenta Upela';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_bbf61c69b6c01420384aa399bc580636'] = '4) Abre la página Upela directamente desde tu tienda';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_619d465b0263eb0770d6cec2ae04e751'] = 'En tu espacio cliente Upela, menú \"Mis tiendas\"';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_29ed387615b0bdc819d9436fc8ca0456'] = '1) Recuperas de manera automática los pedidos de tus tiendas con el estado del pedido';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_cae8d14edd025e72c59dbab6f378c95a'] = ' ';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_15117b282328146ac6afebaa8acd80e7'] = 'Genera';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_ca09d2b937f626a8f3ee264e353de88b'] = 'los albaranes y';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_2a3f1166b041928019e4e8718d628665'] = 'envía';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_44ce4ad6a7ec015a8c20a3944395a2ab'] = 'tus paquetes';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_072a6694c67b8b414027fa310704cd2a'] = 'Nuestra plataforma de e-commerce actualiza automáticamente los pedidos de tus tiendas con su nuevo estado (enviado) y con el número de seguimiento del albarán.';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_09b2e97efdcbaf471863c5e732976049'] = '2) Envía tu pedido';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_ce5c27b07861f7d5ef2178cc3b27a307'] = 'La dirección de recogida y de entrega se rellenan automáticamente';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_caac49de128198ec7ea40d7900b90fe4'] = 'Completa la información del envío y la descripción de los paquetes (número de paquetes, peso unitario, dimensiones)';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_4d8c42a88672feb405e4c9245ded5544'] = 'Haz clic en \"Compara las ofertas\" para finalizar el envío';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_edfee72250a49d45993a8289e477a792'] = 'Parámetros de conexión de tu cuenta Upela';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_91e7ca86887a45c091cdfbfb7533a816'] = 'Tu cuenta está activada';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_f27c441dd0de52b23d626919b2b4d20b'] = 'Servicio de Atención al Cliente Upela';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_a7a5388173578add46168469713d0ec8'] = '+34 932 20 19 00';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_acd92b76f3fe32da6c7e2d66a63b7817'] = 'MGP UPELA';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_7ffdefe7c99a57d2675a7b5a19ec01ca'] = '17BIS RUE LA BOETIE';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_3dce0219bc199a019a8ff0441394261b'] = '75008 PARIS - FRANCIA';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_63884adfc7756525cfa832993ca0e908'] = 'RCS Paris 750 389 769';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_cb3e8cf309842fa006ce03ebab14f004'] = ' IVA intracomunitario FR12750389769';
|
197
modules/upela/translations/fr.php
Normal file
@ -0,0 +1,197 @@
|
||||
<?php
|
||||
|
||||
global $_MODULE;
|
||||
$_MODULE = array();
|
||||
$_MODULE['<{upela}prestashop>upela_8ae4a996d1c51d4169d7a6bbfa7452da'] = 'Upela';
|
||||
$_MODULE['<{upela}prestashop>upela_4c8e0e3d9c8adece907241d8472eca75'] = 'La meilleure façon d’expédier un colis Économisez sur le prix, pas sur le service';
|
||||
$_MODULE['<{upela}prestashop>upela_7f15f0868de3f02fa049840f51e51cf7'] = 'Aller sur Upela.com';
|
||||
$_MODULE['<{upela}prestashop>upela_cebd5bbe0ffdecc270a8a324e5a277dd'] = 'Production';
|
||||
$_MODULE['<{upela}prestashop>upela_a9a7198c63ec0f16a965328935eff00d'] = 'Modifier le mode';
|
||||
$_MODULE['<{upela}prestashop>upela_af8764b2c613b84afaac0af7b0c8be18'] = 'Le prénom est obligatoire';
|
||||
$_MODULE['<{upela}prestashop>upela_a03712264a676d05b13bdc4c25a14c78'] = 'Le nom est obligatoire';
|
||||
$_MODULE['<{upela}prestashop>upela_54f619e52218d05eec0cf5c85a39169d'] = 'Un email valide est obligatoire';
|
||||
$_MODULE['<{upela}prestashop>upela_eb78cbd108174fe8f540887ac35e3c4a'] = 'Téléphone incorrect';
|
||||
$_MODULE['<{upela}prestashop>upela_4437c2b638e8f173cf906bef9b74a9f3'] = 'Clé service web obligatoire';
|
||||
$_MODULE['<{upela}prestashop>upela_8e8ee004d00532ee457a426b1c53fa6a'] = 'Nom de la boutique obligatoire';
|
||||
$_MODULE['<{upela}prestashop>upela_13766c9eb277bc80426f70e7bbf3ca45'] = 'Adresse incorrecte';
|
||||
$_MODULE['<{upela}prestashop>upela_5af5d0498a9949a54621f82a51697aa7'] = 'Nom de la ville incorrect';
|
||||
$_MODULE['<{upela}prestashop>upela_46056563483123f186ffbe0ee10d9b55'] = 'Mot de passe incorrect';
|
||||
$_MODULE['<{upela}prestashop>upela_518485bfc0a5e9f555cb8eefefe83fb3'] = 'Validation du mot de passe incorrecte';
|
||||
$_MODULE['<{upela}prestashop>upela_844728e1dc874629bc7450484fa79b73'] = 'Nom de la société obligatoire';
|
||||
$_MODULE['<{upela}prestashop>upela_2b3f18c584e0b7c6a9ac7865ce481256'] = 'N° d\'immatriculation obligatoire';
|
||||
$_MODULE['<{upela}prestashop>upela_473c6aa3fd2631329089bb7f8addc77a'] = 'Erreur lors de la création de la boutique !';
|
||||
$_MODULE['<{upela}prestashop>upela_458444cdb01ae5daaf0c3d215d2755e9'] = 'Boutique créée !';
|
||||
$_MODULE['<{upela}prestashop>upela_595f3bb4d1692b42710f81c7c17f1f10'] = 'Erreur : cet email est déjà présent en base de données ! Connectez vous ou utilisez un autre email.';
|
||||
$_MODULE['<{upela}prestashop>upela_f35125b5571629016d54fb06f12aa9f8'] = 'Erreur lors de la création de l\'utilisateur !';
|
||||
$_MODULE['<{upela}prestashop>upela_f1c77197e274b54029f1e42afa1097b1'] = 'Bienvenue dans Upela, votre compte est créé !';
|
||||
$_MODULE['<{upela}prestashop>upela_9d163d1c0dc9c05338390cd551d97c9f'] = 'Erreur de connexion !';
|
||||
$_MODULE['<{upela}prestashop>upela_4908d5bab97f9aea640a653bcfa171c0'] = 'Créer votre compte en moins de 2 minutes.';
|
||||
$_MODULE['<{upela}prestashop>upela_f2fc7490cbdb0db5cd6f1a4e7edb0da1'] = 'Votre compte';
|
||||
$_MODULE['<{upela}prestashop>upela_463f64a02682b4314b0c840d05d1f03b'] = 'Votre société';
|
||||
$_MODULE['<{upela}prestashop>upela_b24c699eafef404c29d6e1781f51c333'] = 'Votre boutique';
|
||||
$_MODULE['<{upela}prestashop>upela_04176f095283bc729f1e3926967e7034'] = 'Prénom';
|
||||
$_MODULE['<{upela}prestashop>upela_dff4bf10409100d989495c6d5486035e'] = 'Nom';
|
||||
$_MODULE['<{upela}prestashop>upela_bcc254b55c4a1babdf1dcb82c207506b'] = 'Téléphone';
|
||||
$_MODULE['<{upela}prestashop>upela_dc647eb65e6711e155375218212b3964'] = 'Mot de passe';
|
||||
$_MODULE['<{upela}prestashop>upela_4c231e0da3eaaa6a9752174f7f9cfb31'] = 'Confirmation du mot de passe';
|
||||
$_MODULE['<{upela}prestashop>upela_c281f92b77ba329f692077d23636f5c9'] = 'Nom de la société';
|
||||
$_MODULE['<{upela}prestashop>upela_a96d242ac549456a6410cabd3fff5568'] = 'Adresse professsionelle';
|
||||
$_MODULE['<{upela}prestashop>upela_93cba07454f06a4a960172bbd6e2a435'] = 'Oui';
|
||||
$_MODULE['<{upela}prestashop>upela_bafd7322c6e97d25b6299b5d6fe8920b'] = 'Non';
|
||||
$_MODULE['<{upela}prestashop>upela_956205f0d2c8352f3d92aa3438f1b646'] = 'Adresse 1';
|
||||
$_MODULE['<{upela}prestashop>upela_2e21e83375deefc4a3620ab667157e27'] = 'Adresse 2';
|
||||
$_MODULE['<{upela}prestashop>upela_e328c30c941bf1963b2b78e3f87dafe4'] = 'Adresse 3';
|
||||
$_MODULE['<{upela}prestashop>upela_59716c97497eb9694541f7c3d37b1a4d'] = 'Pays';
|
||||
$_MODULE['<{upela}prestashop>upela_bc022141f45299c57e9019b0e40bba1e'] = 'Code Postal';
|
||||
$_MODULE['<{upela}prestashop>upela_57d056ed0984166336b7879c2af3657f'] = 'Ville';
|
||||
$_MODULE['<{upela}prestashop>upela_4f68183551e5dbd7c341347ffe308682'] = 'SIRET';
|
||||
$_MODULE['<{upela}prestashop>upela_e46ece012681c62d8a72abe3754a4a9c'] = 'N° d\'immatriculation';
|
||||
$_MODULE['<{upela}prestashop>upela_e72dca5d5a8a4706a206f3225324bf44'] = 'Nom de la boutique';
|
||||
$_MODULE['<{upela}prestashop>upela_ad87ea508b9dc8dddc98bf041b907c55'] = 'Clé service web';
|
||||
$_MODULE['<{upela}prestashop>upela_327f26f3ce177b8b9eb8ba24e0863c3d'] = 'Créer le compte';
|
||||
$_MODULE['<{upela}prestashop>upela_691d31cb2fcc297fd1edd2ca67c05abe'] = 'Créer votre boutique en moins d\'une minute';
|
||||
$_MODULE['<{upela}prestashop>upela_3608b457c06bae83423f12015fb50b35'] = 'Créer boutique';
|
||||
$_MODULE['<{upela}prestashop>upela_c186bf31ae0a0f303a4b12d56d31ae5c'] = 'Erreur lors de la connexion à votre compte !';
|
||||
$_MODULE['<{upela}prestashop>upela_0baa8ed8b58011b5cfd0be1aa10d10de'] = 'Message :';
|
||||
$_MODULE['<{upela}prestashop>upela_b352b85b08aa7e587c3802207e169c08'] = 'Connexion réussie !';
|
||||
$_MODULE['<{upela}prestashop>create_account_1749e1cabff0fb58eddfa5a09a71205d'] = 'Créer votre compte Upela en moins d\'une minute';
|
||||
$_MODULE['<{upela}prestashop>create_account_f2fc7490cbdb0db5cd6f1a4e7edb0da1'] = 'Votre compte';
|
||||
$_MODULE['<{upela}prestashop>create_account_463f64a02682b4314b0c840d05d1f03b'] = 'Votre société';
|
||||
$_MODULE['<{upela}prestashop>create_account_b24c699eafef404c29d6e1781f51c333'] = 'Votre boutique';
|
||||
$_MODULE['<{upela}prestashop>create_account_dd1f775e443ff3b9a89270713580a51b'] = 'Précédent';
|
||||
$_MODULE['<{upela}prestashop>create_account_686e697538050e4664636337cc3b834f'] = 'Enregistrer';
|
||||
$_MODULE['<{upela}prestashop>create_account_10ac3d04253ef7e1ddc73e6091c0cd55'] = 'Suivant';
|
||||
$_MODULE['<{upela}prestashop>create_account_04176f095283bc729f1e3926967e7034'] = 'Prénom';
|
||||
$_MODULE['<{upela}prestashop>create_account_dff4bf10409100d989495c6d5486035e'] = 'Nom';
|
||||
$_MODULE['<{upela}prestashop>create_account_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'Email';
|
||||
$_MODULE['<{upela}prestashop>create_account_bcc254b55c4a1babdf1dcb82c207506b'] = 'Téléphone';
|
||||
$_MODULE['<{upela}prestashop>create_account_dc647eb65e6711e155375218212b3964'] = 'Mot de passe';
|
||||
$_MODULE['<{upela}prestashop>create_account_4c231e0da3eaaa6a9752174f7f9cfb31'] = 'Confirmer mot de passe';
|
||||
$_MODULE['<{upela}prestashop>create_account_ad87ea508b9dc8dddc98bf041b907c55'] = 'Clé service web';
|
||||
$_MODULE['<{upela}prestashop>create_account_897356954c2cd3d41b221e3f24f99bba'] = 'Clé';
|
||||
$_MODULE['<{upela}prestashop>create_account_1c76cbfe21c6f44c1d1e59d54f3e4420'] = 'Société';
|
||||
$_MODULE['<{upela}prestashop>create_account_956205f0d2c8352f3d92aa3438f1b646'] = 'Adresse 1';
|
||||
$_MODULE['<{upela}prestashop>create_account_e2dfb27383d29136a46e01511ed3eded'] = 'N°, Rue';
|
||||
$_MODULE['<{upela}prestashop>create_account_2e21e83375deefc4a3620ab667157e27'] = 'Adresse 2';
|
||||
$_MODULE['<{upela}prestashop>create_account_a4a26283ecd819d8e714cc02ef4e356f'] = 'Ligne 2';
|
||||
$_MODULE['<{upela}prestashop>create_account_e328c30c941bf1963b2b78e3f87dafe4'] = 'Adresse 3';
|
||||
$_MODULE['<{upela}prestashop>create_account_0547a9dcf93969f5cf5a4ba72ebc70b6'] = 'Ligne 3';
|
||||
$_MODULE['<{upela}prestashop>create_account_59716c97497eb9694541f7c3d37b1a4d'] = 'Pays';
|
||||
$_MODULE['<{upela}prestashop>create_account_bc022141f45299c57e9019b0e40bba1e'] = 'Code postal';
|
||||
$_MODULE['<{upela}prestashop>create_account_57d056ed0984166336b7879c2af3657f'] = 'Ville';
|
||||
$_MODULE['<{upela}prestashop>create_account_4f68183551e5dbd7c341347ffe308682'] = 'SIRET';
|
||||
$_MODULE['<{upela}prestashop>create_account_e46ece012681c62d8a72abe3754a4a9c'] = 'N° d\'immatriculation société';
|
||||
$_MODULE['<{upela}prestashop>create_account_e72dca5d5a8a4706a206f3225324bf44'] = 'Nom de la boutique';
|
||||
$_MODULE['<{upela}prestashop>create_account_3c3779c2d34afccceb20b638c59e0e98'] = 'Ma boutique';
|
||||
$_MODULE['<{upela}prestashop>create_account_9c7fb00a815bb4c86cec82eea168b80c'] = 'Code postal';
|
||||
$_MODULE['<{upela}prestashop>create_store_691d31cb2fcc297fd1edd2ca67c05abe'] = 'Créer votre boutique Upela';
|
||||
$_MODULE['<{upela}prestashop>create_store_b24c699eafef404c29d6e1781f51c333'] = 'Votre boutique';
|
||||
$_MODULE['<{upela}prestashop>create_store_686e697538050e4664636337cc3b834f'] = 'Enregistrer';
|
||||
$_MODULE['<{upela}prestashop>create_store_10ac3d04253ef7e1ddc73e6091c0cd55'] = 'Suivant';
|
||||
$_MODULE['<{upela}prestashop>create_store_04176f095283bc729f1e3926967e7034'] = 'Prénom';
|
||||
$_MODULE['<{upela}prestashop>create_store_dff4bf10409100d989495c6d5486035e'] = 'Nom';
|
||||
$_MODULE['<{upela}prestashop>create_store_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'Email';
|
||||
$_MODULE['<{upela}prestashop>create_store_bcc254b55c4a1babdf1dcb82c207506b'] = 'Téléphone';
|
||||
$_MODULE['<{upela}prestashop>create_store_e72dca5d5a8a4706a206f3225324bf44'] = 'Nom de la boutique';
|
||||
$_MODULE['<{upela}prestashop>create_store_3c3779c2d34afccceb20b638c59e0e98'] = 'Ma boutique';
|
||||
$_MODULE['<{upela}prestashop>create_store_956205f0d2c8352f3d92aa3438f1b646'] = 'Adresse 1';
|
||||
$_MODULE['<{upela}prestashop>create_store_e2dfb27383d29136a46e01511ed3eded'] = 'N°, Rue';
|
||||
$_MODULE['<{upela}prestashop>create_store_2e21e83375deefc4a3620ab667157e27'] = 'Adresse 2';
|
||||
$_MODULE['<{upela}prestashop>create_store_a4a26283ecd819d8e714cc02ef4e356f'] = 'Ligne 2';
|
||||
$_MODULE['<{upela}prestashop>create_store_e328c30c941bf1963b2b78e3f87dafe4'] = 'Adresse 3';
|
||||
$_MODULE['<{upela}prestashop>create_store_0547a9dcf93969f5cf5a4ba72ebc70b6'] = 'Ligne 3';
|
||||
$_MODULE['<{upela}prestashop>create_store_59716c97497eb9694541f7c3d37b1a4d'] = 'Pays';
|
||||
$_MODULE['<{upela}prestashop>create_store_9c7fb00a815bb4c86cec82eea168b80c'] = 'Code postal';
|
||||
$_MODULE['<{upela}prestashop>create_store_57d056ed0984166336b7879c2af3657f'] = 'Ville';
|
||||
$_MODULE['<{upela}prestashop>create_store_ad87ea508b9dc8dddc98bf041b907c55'] = 'Clé de service web';
|
||||
$_MODULE['<{upela}prestashop>create_store_897356954c2cd3d41b221e3f24f99bba'] = 'Clé';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_86b467984feb09b85bad8dd2749e719a'] = 'La solution Upela';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_7b1329f5ca3d485bba602a815ffd4d6d'] = 'Manuel utilisateur';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_f61d92234d39bce8a0d5935ffb97ba39'] = 'Paramètres de connexion';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_bbaff12800505b22a853e8b7f4eb6a22'] = 'Contact';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_8ae4a996d1c51d4169d7a6bbfa7452da'] = 'Upela';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_01dadf401b8dbb7c5c2f68e815a696f1'] = 'La meilleure façon d’expédier un colis';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_e03efdf7ca1ba6fbea27ff481c531c51'] = 'Économisez sur le prix, pas sur le service.';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_96aafac761c431d59db0070b0bce6cb2'] = 'Vous êtes connecté. Bienvenue';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_7f15f0868de3f02fa049840f51e51cf7'] = 'Aller sur Upela.com';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_068a442b24c2bdf3d26228540ff17333'] = 'Vous n\'êtes pas encore connecté !';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_1a5577f049042062ab324108fdb37248'] = 'Créer un compte PRO';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_92162c48b0e6494fd9b82c7b620c95d9'] = 'Se connecter à votre compte';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_e5e41550e3e7a879aadd388f762dcb27'] = 'Avec Upela et Prestashop, bénéficiez de tarifs négociés sur tous vos envois : plis, colis, palettes.';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_e327966af72586e0f5d9faaae2752b24'] = 'Nos transporteurs';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_f693d6ed5679693accf2f1b1923e1f50'] = 'La fiabilité des leaders du transport';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_d81e0d9e12d0cdec13e79f58137d2064'] = 'Des délais de livraison ultra-flexibles en 3h maxi / J+1 / J+2';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_28e62a28b763a2061d7288aded476e93'] = 'Un service client multi-transporteurs dédié aux Pros';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_871127850d11a949dddb8aa4b51ba007'] = 'Des connecteurs e-commerce gratuits pour faciliter votre logistique';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_ea931c7f2face4fa9ac86cdada7e3fbc'] = 'Un service douane intégré';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_81d44f28016bd86596b9f96c5b9c6329'] = 'Pas de minimum de facturation mensuelle';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_bbecbe54167646db56a920aad127ac93'] = 'Un gain de temps : en quelques clics, expédiez';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_7659e6df9e2964fffb243a646add33aa'] = 'en 3 clics';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_7eece51cf3938103677db7a5051ef8f5'] = 'Comparer';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_0387832795db3eb2e05f4365fba5ddac'] = 'Expédier';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_92ea731d3af6677905303c88689f5d55'] = 'Suivre';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_096d76c17abb603d3c1035903a520541'] = 'en vidéo';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_a49c2a92c8d82a06076e523bd2379e53'] = 'Nos connecteurs e-commerce';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_a663f9fa94fe55d4be1f0b3c986a0557'] = 'Gagnez en productivité et compétitivité';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_1ac9892f2ddc43ee1a46037c40b7a9b1'] = 'Plug and Play';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_dd17e10e985c48c612eb6c43e81dc1d8'] = 'Limiter les erreurs de saisies';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_44e988e9b892c52de058a71b1f0e532c'] = 'Mise à jour automatique des tracking';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_175bada5126d0fa77bb14ae96ed60b9e'] = 'Logistique intégrée';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_59a129db0008167cd8e94f64bb003f14'] = 'Commandes centralisées';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_9da91391e29c9bb911af1a7d55d3b7c6'] = 'Gestion multi-entrepôts';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_42dec4716f0a25f565a8ac4faf3d09f1'] = '... et bien d’autres encore !';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_33354d97cd5d54f99a4e04d2f5f65d64'] = 'Chat en ligne';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_bcc254b55c4a1babdf1dcb82c207506b'] = 'Téléphone';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_54f664c70c22054ea0d8d26fc3997ce7'] = 'Online';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_ce8ae9da5b7cd6c3df2929543a9af92d'] = 'Mail';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_6f363e03af11acd967bf6e4af5ff3682'] = 'Le support Upela';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_c4468175a4523261f9ca70342949f7c0'] = 'Un service client multi-transporteurs';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_5be3e2464e080f4dd29d99576982dcb1'] = 'Réponse le jour même';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_1768a553a1d04528b7bd81c93380458a'] = 'Conseillers disponibles en continu';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_6ebb5c36c5c76298e07a467428d39640'] = 'Suivi des envois et gestion centralisée du SAV';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_a62c455049d335ccbe02904e139f8142'] = 'Étudier vos cas particuliers';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_529cbba3326b4decc6965f09927716ea'] = 'Vous conseiller dans les démarches';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_385d5b0eea7e199471284b2cc50adf25'] = 'Découvrir nos outils et connaître nos services';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_2e5f2bf721b8e39821e4e3511a099d4d'] = 'Comment paramétrer votre compte ?';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_489af77c71f11672d22403a8df7edfdc'] = 'Dans votre boutique Prestashop';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_a6976ff369c161d362757f5577d317e2'] = '1) Activez le webservice :';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_0efa47691b7b9a7a9383a87a49859d12'] = 'Menu “Paramètres avancés” puis “Service Web”';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_4cf2b96aeb12fe8b0597286152ee71fa'] = 'Veuillez “Activer le service web” et “Activer le mode CGI de PHP”.';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_c314e6847a63754023c454637afe98c4'] = 'Ajoutez un nouveau service web.';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_794b84b2d0da43d2e4b96ff0ba447fd5'] = '2) Créez le nouveau webservice :';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_faefbac12c6261a8bdf6f47fcc41aa41'] = 'Générez une nouvelle clé API.';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_c0491fe694590e592b891462fa800a2b'] = 'Contrôlez que l’Etat du service est actif : “Oui”';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_3badd0ba5f628178f313bf8a281cfec8'] = 'Attribuer les permissions GET, POST et PUT pour permettre l’utilisation du webservice';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_61f866bc212c59fad0149fe9322cf963'] = '3) Créez ou connectez vous à votre compte Upela';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_bbf61c69b6c01420384aa399bc580636'] = '4) Ouvrez Upela directement depuis votre boutique';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_619d465b0263eb0770d6cec2ae04e751'] = 'Dans votre espace client Upela, menu \"Mes boutiques\"';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_29ed387615b0bdc819d9436fc8ca0456'] = '1) Vous récupérez automatiquement vos commandes de vos boutiques avec leur statut';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_cae8d14edd025e72c59dbab6f378c95a'] = 'Vous';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_15117b282328146ac6afebaa8acd80e7'] = 'générez';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_ca09d2b937f626a8f3ee264e353de88b'] = 'les bons de transport et';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_2a3f1166b041928019e4e8718d628665'] = 'expédiez';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_44ce4ad6a7ec015a8c20a3944395a2ab'] = 'vos colis.';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_072a6694c67b8b414027fa310704cd2a'] = 'Notre connecteur e-commerce met automatiquement à jour vos boutiques respectives avec le nouveau statut (envoyé) ainsi que le numéro de suivi du bon de transport.';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_09b2e97efdcbaf471863c5e732976049'] = '2) Expédiez votre commande';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_ce5c27b07861f7d5ef2178cc3b27a307'] = 'Les adresses d’origine et de destination sont automatiquement pré-remplies.';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_caac49de128198ec7ea40d7900b90fe4'] = 'Complétez les informations de l’envoi, y compris la description des colis (nombre, poids unitaires, dimensions).';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_4d8c42a88672feb405e4c9245ded5544'] = 'Cliquez sur « Comparez les offres » pour finaliser votre expédition';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_edfee72250a49d45993a8289e477a792'] = 'Paramètres de connexion à votre compte Upela';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_91e7ca86887a45c091cdfbfb7533a816'] = 'Votre compte est activé.';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_dc647eb65e6711e155375218212b3964'] = 'Mot de passe';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_42ae25231906c83927831e0ef7c317ac'] = 'Déconnexion';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_c65d14354cf8abb5e63737c482f6ccb3'] = 'Se connecter à votre compte';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_f6ad5d3a1a6c2c12f45292ae8544a5e5'] = 'Informations boutiques';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_2d2dc81e0ca0a8075cda93cf43ceb033'] = 'Vous avez actuellement';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_5b6178bcdc0dad676beb679f7bec9fe5'] = 'boutique(s)';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_431d7c05b4d48b7792c605bcdaea084c'] = 'boutique(s) Prestashop';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_eb88865bd8fda86aa24db5a587ba0f8d'] = 'Créer une boutique';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_f27c441dd0de52b23d626919b2b4d20b'] = 'Service client Upela';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_5a048fa20a2cb03df7c562a8e3f8e7fe'] = 'Contacter le support Upela';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_acd92b76f3fe32da6c7e2d66a63b7817'] = 'MPG UPELA';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_7ffdefe7c99a57d2675a7b5a19ec01ca'] = '17BIS RUE LA BOETIE';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_3dce0219bc199a019a8ff0441394261b'] = '75008 PARIS - FRANCE';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_63884adfc7756525cfa832993ca0e908'] = 'RCS Paris 750 389 769';
|
||||
$_MODULE['<{upela}prestashop>guest_configure_cb3e8cf309842fa006ce03ebab14f004'] = 'VAT n° FR12750389769';
|
||||
$_MODULE['<{upela}prestashop>expedition_b5e06045b80780320067548add81746d'] = 'Expédiez avec Upela';
|
||||
$_MODULE['<{upela}prestashop>expedition15_b5e06045b80780320067548add81746d'] = 'Expédier avec Upela';
|
35
modules/upela/translations/index.php
Normal file
@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2015 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-2015 PrestaShop SA
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
|
||||
header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
|
||||
|
||||
header('Cache-Control: no-store, no-cache, must-revalidate');
|
||||
header('Cache-Control: post-check=0, pre-check=0', false);
|
||||
header('Pragma: no-cache');
|
||||
|
||||
header('Location: ../');
|
||||
exit;
|
1349
modules/upela/upela.php
Normal file
35
modules/upela/upgrade/index.php
Normal file
@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2015 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-2015 PrestaShop SA
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
|
||||
header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
|
||||
|
||||
header('Cache-Control: no-store, no-cache, must-revalidate');
|
||||
header('Cache-Control: post-check=0, pre-check=0', false);
|
||||
header('Pragma: no-cache');
|
||||
|
||||
header('Location: ../');
|
||||
exit;
|
527
modules/upela/views/css/back.css
Normal file
@ -0,0 +1,527 @@
|
||||
/**
|
||||
* 2007-2016 PrestaShop
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This source file is subject to the Open Software License (OSL 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/osl-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.
|
||||
*
|
||||
* @author UPELA
|
||||
* @copyright 2017-2018 MPG Upela
|
||||
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
||||
*/
|
||||
|
||||
@font-face {
|
||||
font-family: 'UpelaRaleway';
|
||||
src: url(../fonts/raleway-black.ttf);
|
||||
font-weight: 900;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'UpelaRaleway';
|
||||
src: url(../fonts/raleway-bold.ttf);
|
||||
font-weight: bold;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
@font-face {
|
||||
font-family: 'UpelaRaleway';
|
||||
src: url(../fonts/raleway-light.ttf);
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
||||
#upela_mnu a {
|
||||
text-decoration: none;
|
||||
color: #FF6600;
|
||||
}
|
||||
|
||||
#upela_mnu a:hover, a:focus, a:active, a:visited, a:hover {
|
||||
text-decoration: none;
|
||||
color: #FF6600;;
|
||||
}
|
||||
|
||||
#upela_content {
|
||||
font-family: UpelaRaleway, sans-serif;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
#upela_content .panel_grey {
|
||||
background-color: #EAEAEA;
|
||||
}
|
||||
|
||||
#upela_content h2, p {
|
||||
color: #323236;
|
||||
font-family: UpelaRaleway, sans-serif;
|
||||
}
|
||||
|
||||
#upela_content h3 {
|
||||
height: 3em;
|
||||
font-family: UpelaRaleway, sans-serif;
|
||||
}
|
||||
|
||||
#upela_content h4 {
|
||||
font-size: 18px;
|
||||
font-family: UpelaRaleway, sans-serif;
|
||||
}
|
||||
|
||||
#upela_content p {
|
||||
font-size: 16px;
|
||||
font-family: UpelaRaleway, sans-serif;
|
||||
}
|
||||
|
||||
#upela_content a:hover, a:focus, a:active, a:visited, a:hover {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
/*#upela_content a:hover, a:focus, a:active, a:visited
|
||||
{
|
||||
text-decoration: none;
|
||||
color: #FFFFFF;
|
||||
background: #FF6600;
|
||||
}*/
|
||||
|
||||
.upela_home_form_bg {
|
||||
background: transparent;
|
||||
color: #FFFFFF;
|
||||
background: url("../img/banner2.jpg") no-repeat center center;
|
||||
-webkit-background-size: cover;
|
||||
-moz-background-size: cover;
|
||||
-o-background-size: cover;
|
||||
background-size: cover;
|
||||
width: 100%;
|
||||
height: -webkit-calc(55vh - 240px);
|
||||
height: -moz-calc(55vh - 240px);
|
||||
min-height: 240px;
|
||||
}
|
||||
|
||||
@media (max-width: 991px) {
|
||||
/* line 2, ../sass/src/modules/_home.scss */
|
||||
.upela_home_form_bg {
|
||||
height: auto;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 767px) {
|
||||
/* line 2, ../sass/src/modules/_home.scss */
|
||||
.upela_home_form_bg {
|
||||
background: transparent;
|
||||
background: transparent;
|
||||
color: #323232;
|
||||
min-height: 0;
|
||||
}
|
||||
}
|
||||
|
||||
/* line 16, ../sass/src/modules/_home.scss */
|
||||
.upela_home_caption {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
min-height: 1px;
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
position: relative;
|
||||
min-height: 1px;
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
|
||||
}
|
||||
|
||||
@media (min-width: 768px) {
|
||||
/* line 16, ../sass/src/modules/_home.scss */
|
||||
.upela_home_caption {
|
||||
width: 50%;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
/* line 21, ../sass/src/modules/_home.scss */
|
||||
.upela_home_caption h1 {
|
||||
color: #FF6600;
|
||||
font-family: UpelaRaleway, sans-serif;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
@media (max-width: 767px) {
|
||||
/* line 16, ../sass/src/modules/_home.scss */
|
||||
.upela_home_caption {
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
#upela_content .part__button {
|
||||
-webkit-border-radius: 2px;
|
||||
-khtml-border-radius: 2px;
|
||||
-moz-border-radius: 2px;
|
||||
border-radius: 2px;
|
||||
border: 2px solid #FF6600;
|
||||
background: #FF6600;
|
||||
color: #FFF0E5;
|
||||
padding-top: 15px;
|
||||
padding-bottom: 15px;
|
||||
padding-left: 15px;
|
||||
padding-right: 15px;
|
||||
margin-top: 15px;
|
||||
max-width: 340px;
|
||||
display: inline-block;
|
||||
text-decoration: none;
|
||||
|
||||
box-shadow: 2px 4px 5px rgba(80, 80, 100, 0.4);
|
||||
-webkit-box-shadow: 2px 4px 5px rgba(80, 80, 100, 0.4);
|
||||
-moz-box-shadow: 2px 4px 5px rgba(80, 80, 100, 0.4);
|
||||
|
||||
transition: all .1s ease-out;
|
||||
}
|
||||
|
||||
#upela_content .part__button:hover, .part__button:focus {
|
||||
background: #e65c00;
|
||||
border: 2px solid #e65c00;
|
||||
box-shadow: 0 8px 18px rgba(30, 30, 30, .6);
|
||||
transition: all .3s ease-in;
|
||||
color: #FFF0E5;
|
||||
outline: 0;
|
||||
}
|
||||
|
||||
#upela_content .part__button:active {
|
||||
transform: translateY(3px);
|
||||
box-shadow: 0 0 2px rgba(30, 30, 30, .9);
|
||||
transition: all 50ms ease-in;
|
||||
color: #ffc299;
|
||||
border: 2px solid #e65c00;
|
||||
}
|
||||
|
||||
/* line 108, ../sass/src/modules/_section.scss */
|
||||
#upela_content .button--white {
|
||||
background: #FFFFFF;
|
||||
color: #FF6600;
|
||||
border: 2px solid #FF6600;
|
||||
}
|
||||
|
||||
/* line 111, ../sass/src/modules/_section.scss */
|
||||
#upela_content .button--white:hover, .button--white:focus, .button--white:active, .button--white:visited {
|
||||
background: #FFFFFF;
|
||||
color: #FF6600;
|
||||
}
|
||||
|
||||
#upela_content .section__title {
|
||||
text-align: center;
|
||||
font-weight: bold;
|
||||
margin-bottom: 40px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
/* line 18, ../sass/src/modules/_section.scss */
|
||||
#upela_content .section__title.title--no-margin {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
#upela_mnu ul > li > a > img {
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
#upela_content .bg {
|
||||
text-align: center;
|
||||
background: rgba(255, 102, 0, .9);
|
||||
padding: 15px;
|
||||
font-size: 21px;
|
||||
width: 100%;
|
||||
border-radius: 0 0 5px 5px;
|
||||
color: #FFF0E5;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#upela_content .section {
|
||||
margin-bottom: 60px;
|
||||
}
|
||||
|
||||
/* line 5, ../sass/src/modules/_section.scss */
|
||||
#upela_content .section.section--bg {
|
||||
background: #EAEAEA;
|
||||
color: #323232;
|
||||
padding-top: 60px;
|
||||
padding-bottom: 60px;
|
||||
}
|
||||
|
||||
/* line 9, ../sass/src/modules/_section.scss */
|
||||
#upela_content .section:last-child {
|
||||
margin-bottom: 120px;
|
||||
}
|
||||
|
||||
#upela_content .section__part {
|
||||
margin-left: -15px;
|
||||
margin-right: -15px;
|
||||
margin-bottom: 60px;
|
||||
}
|
||||
|
||||
/* line 14, ../sass/bootstrap/mixins/_clearfix.scss */
|
||||
#upela_content .section__part:before, .section__part:after {
|
||||
content: " ";
|
||||
display: table;
|
||||
}
|
||||
|
||||
/* line 19, ../sass/bootstrap/mixins/_clearfix.scss */
|
||||
#upela_content .section__part:after {
|
||||
clear: both;
|
||||
}
|
||||
|
||||
/* line 27, ../sass/src/modules/_section.scss */
|
||||
#upela_content .section__part:last-child {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
#upela_content .section__title {
|
||||
text-align: center;
|
||||
font-weight: bold;
|
||||
margin-bottom: 40px;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
#upela_content .section__title.title--no-margin {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
#upela_content .part__img {
|
||||
position: relative;
|
||||
float: left;
|
||||
width: 100%;
|
||||
min-height: 1px;
|
||||
padding-left: 0;
|
||||
padding-right: 0;
|
||||
}
|
||||
|
||||
#upela_content .part__icon {
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
|
||||
#upela_content .upela_logo_img {
|
||||
max-height: 50px;
|
||||
margin-right: 2%;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.section3Img {
|
||||
position: relative;
|
||||
height: 90px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.section4Img {
|
||||
position: relative;
|
||||
height: 150px;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.align-img-center {
|
||||
position: absolute;
|
||||
bottom: 10px;
|
||||
left: 50%;
|
||||
}
|
||||
|
||||
.align-img-center img {
|
||||
left: -50%;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#upela_content .dhl {
|
||||
max-height: 30px !important;
|
||||
}
|
||||
|
||||
#upela_content .part__content {
|
||||
margin-top: 15px;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
#upela_content .part__list {
|
||||
margin-top: 15px;
|
||||
color: #969696;
|
||||
}
|
||||
|
||||
#upela_content ul {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
#upela_content .part__list li {
|
||||
position: relative;
|
||||
padding-left: 30px;
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
/* line 134, ../sass/src/modules/_section.scss */
|
||||
#upela_content .part__list li .button__icon {
|
||||
position: absolute;
|
||||
top: 7px;
|
||||
left: 0;
|
||||
bottom: auto;
|
||||
right: auto;
|
||||
}
|
||||
|
||||
/* line 140, ../sass/src/modules/_section.scss */
|
||||
#upela_content .button__icon {
|
||||
height: 12px;
|
||||
top: 8px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
#upela_content .title-font, h2, .part__title {
|
||||
font-size: 2.8rem;
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
@media (max-width: 767px) {
|
||||
/* line 59, ../sass/src/_fonts.scss */
|
||||
#upela_content .title-font, h2, .part__title {
|
||||
font-size: 2.6rem;
|
||||
}
|
||||
}
|
||||
|
||||
.cadre {
|
||||
-webkit-border-radius: 2px;
|
||||
-khtml-border-radius: 2px;
|
||||
-moz-border-radius: 2px;
|
||||
border-radius: 2px;
|
||||
border: 1px solid #FF6600;
|
||||
text-align: center;
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
.accent-font {
|
||||
color: #FF6600;
|
||||
font-weight: 900;
|
||||
}
|
||||
|
||||
.light-accent-font {
|
||||
color: #FF6600;
|
||||
}
|
||||
|
||||
#upela_content .upela__button_next {
|
||||
background-color: #FF6600;
|
||||
border-color: #FF6600;
|
||||
}
|
||||
|
||||
#upela_content .upela__button_prev:hover {
|
||||
background-color: #FF6600;
|
||||
border-color: #FF6600;
|
||||
}
|
||||
|
||||
.orange {
|
||||
color: #F60;
|
||||
}
|
||||
|
||||
.fontBlack {
|
||||
font-weight: 900;
|
||||
}
|
||||
|
||||
.light.light.light {
|
||||
font-weight: 300;
|
||||
}
|
||||
|
||||
.list {
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.list li {
|
||||
font-size: 22px;
|
||||
color: #969696;
|
||||
}
|
||||
|
||||
.list li {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.fa {
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
.listStyle {
|
||||
margin-right: 25px;
|
||||
}
|
||||
|
||||
#upela_content .section8 p {
|
||||
font-size: 22px;
|
||||
color: #969696;
|
||||
}
|
||||
|
||||
#upela_content .section8 h2 {
|
||||
font-size: 28px;
|
||||
margin-top: 20px;
|
||||
margin-bottom: 10px;
|
||||
|
||||
color: #969696;
|
||||
}
|
||||
|
||||
#upela_content .section8 h4 {
|
||||
font-size: 22px;
|
||||
color: #969696;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.section9Img {
|
||||
position: relative;
|
||||
height: 97px;
|
||||
}
|
||||
|
||||
.fa {
|
||||
display: inline-block;
|
||||
font: normal normal normal 14px/1 FontAwesome;
|
||||
font-size: inherit;
|
||||
text-rendering: auto;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale
|
||||
}
|
||||
|
||||
.fa-caret-right:before {
|
||||
content: "\f0da"
|
||||
}
|
||||
|
||||
.orangeBorder {
|
||||
border: 1px solid #F60;
|
||||
border-radius: 10px;
|
||||
padding-bottom: 40px;
|
||||
padding-top: 50px;
|
||||
padding-right: 10px;
|
||||
padding-left: 10px;
|
||||
}
|
||||
|
||||
.orangeBorderNp {
|
||||
border: 1px solid #F60;
|
||||
border-radius: 10px;
|
||||
}
|
||||
|
||||
#upela_content label {
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
.pb40 {
|
||||
padding-bottom: 40px;
|
||||
}
|
||||
|
||||
.pb10 {
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
|
||||
.video {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.video iframe {
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 700px;
|
||||
height: 450px;
|
||||
}
|
||||
|
||||
@media (max-width: 767px) {
|
||||
/* line 59, ../sass/src/_fonts.scss */
|
||||
.video iframe {
|
||||
width: 500px;
|
||||
height: 250px;
|
||||
}
|
||||
}
|
3228
modules/upela/views/css/fuelux.min.css
vendored
Normal file
35
modules/upela/views/css/index.php
Normal file
@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2015 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-2015 PrestaShop SA
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
|
||||
header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
|
||||
|
||||
header('Cache-Control: no-store, no-cache, must-revalidate');
|
||||
header('Cache-Control: post-check=0, pre-check=0', false);
|
||||
header('Pragma: no-cache');
|
||||
|
||||
header('Location: ../');
|
||||
exit;
|
35
modules/upela/views/fonts/index.php
Normal file
@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2015 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-2015 PrestaShop SA
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
|
||||
header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
|
||||
|
||||
header('Cache-Control: no-store, no-cache, must-revalidate');
|
||||
header('Cache-Control: post-check=0, pre-check=0', false);
|
||||
header('Pragma: no-cache');
|
||||
|
||||
header('Location: ../');
|
||||
exit;
|
BIN
modules/upela/views/fonts/raleway-black.ttf
Normal file
BIN
modules/upela/views/fonts/raleway-bold.ttf
Normal file
BIN
modules/upela/views/fonts/raleway-light.ttf
Normal file
BIN
modules/upela/views/img/banner.jpg
Normal file
After Width: | Height: | Size: 198 KiB |
BIN
modules/upela/views/img/banner1.jpg
Normal file
After Width: | Height: | Size: 148 KiB |
BIN
modules/upela/views/img/banner2.jpg
Normal file
After Width: | Height: | Size: 158 KiB |
BIN
modules/upela/views/img/icons/icon-06-w.png
Normal file
After Width: | Height: | Size: 226 B |
BIN
modules/upela/views/img/icons/icon-06.png
Normal file
After Width: | Height: | Size: 296 B |
BIN
modules/upela/views/img/icons/icon-13-w.png
Normal file
After Width: | Height: | Size: 524 B |
BIN
modules/upela/views/img/icons/icon-14-u.png
Normal file
After Width: | Height: | Size: 596 B |
BIN
modules/upela/views/img/icons/icon-23.png
Normal file
After Width: | Height: | Size: 2.1 KiB |
BIN
modules/upela/views/img/icons/icon-24.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
modules/upela/views/img/icons/icon-25.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
modules/upela/views/img/icons/icon-26.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
modules/upela/views/img/icons/icon-27.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
BIN
modules/upela/views/img/icons/icon-28.png
Normal file
After Width: | Height: | Size: 808 B |
BIN
modules/upela/views/img/icons/icon-29.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
modules/upela/views/img/icons/icon-30.png
Normal file
After Width: | Height: | Size: 3.6 KiB |
BIN
modules/upela/views/img/icons/icon-31.png
Normal file
After Width: | Height: | Size: 2.7 KiB |
BIN
modules/upela/views/img/icons/icon-32.png
Normal file
After Width: | Height: | Size: 2.0 KiB |
BIN
modules/upela/views/img/icons/icon-36.png
Normal file
After Width: | Height: | Size: 825 B |
BIN
modules/upela/views/img/icons/icon-37.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
BIN
modules/upela/views/img/icons/icon-38.png
Normal file
After Width: | Height: | Size: 745 B |
BIN
modules/upela/views/img/icons/icon-39.png
Normal file
After Width: | Height: | Size: 627 B |
BIN
modules/upela/views/img/icons/icon-40.png
Normal file
After Width: | Height: | Size: 724 B |
BIN
modules/upela/views/img/icons/icon-config.png
Normal file
After Width: | Height: | Size: 2.9 KiB |
BIN
modules/upela/views/img/icons/icon-config_uns.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
BIN
modules/upela/views/img/icons/icon-contact.png
Normal file
After Width: | Height: | Size: 1.4 KiB |
BIN
modules/upela/views/img/icons/icon-contact_uns.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
modules/upela/views/img/icons/icon-guide.png
Normal file
After Width: | Height: | Size: 2.5 KiB |
BIN
modules/upela/views/img/icons/icon-guide_uns.png
Normal file
After Width: | Height: | Size: 1.7 KiB |
BIN
modules/upela/views/img/icons/icon-home.png
Normal file
After Width: | Height: | Size: 833 B |
BIN
modules/upela/views/img/icons/icon-home_uns.png
Normal file
After Width: | Height: | Size: 837 B |
BIN
modules/upela/views/img/icons/img-04.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
BIN
modules/upela/views/img/icons/img-05.png
Normal file
After Width: | Height: | Size: 6.1 KiB |
BIN
modules/upela/views/img/icons/img-08.png
Normal file
After Width: | Height: | Size: 209 B |
35
modules/upela/views/img/icons/index.php
Normal file
@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2015 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-2015 PrestaShop SA
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
|
||||
header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
|
||||
|
||||
header('Cache-Control: no-store, no-cache, must-revalidate');
|
||||
header('Cache-Control: post-check=0, pre-check=0', false);
|
||||
header('Pragma: no-cache');
|
||||
|
||||
header('Location: ../');
|
||||
exit;
|
35
modules/upela/views/img/index.php
Normal file
@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2015 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-2015 PrestaShop SA
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
|
||||
header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
|
||||
|
||||
header('Cache-Control: no-store, no-cache, must-revalidate');
|
||||
header('Cache-Control: post-check=0, pre-check=0', false);
|
||||
header('Pragma: no-cache');
|
||||
|
||||
header('Location: ../');
|
||||
exit;
|
BIN
modules/upela/views/img/logo-2.gif
Normal file
After Width: | Height: | Size: 148 B |
BIN
modules/upela/views/img/logo-2.png
Normal file
After Width: | Height: | Size: 729 B |
BIN
modules/upela/views/img/logo-upela-w.png
Normal file
After Width: | Height: | Size: 1.0 KiB |
BIN
modules/upela/views/img/logo-upela.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
modules/upela/views/img/logo.png
Normal file
After Width: | Height: | Size: 791 B |
BIN
modules/upela/views/img/logocontact.png
Normal file
After Width: | Height: | Size: 17 KiB |
BIN
modules/upela/views/img/logos-02.png
Normal file
After Width: | Height: | Size: 122 KiB |
BIN
modules/upela/views/img/manual-screen2.png
Normal file
After Width: | Height: | Size: 16 KiB |
BIN
modules/upela/views/img/manual-screen3.png
Normal file
After Width: | Height: | Size: 139 KiB |
BIN
modules/upela/views/img/screen-2.jpg
Normal file
After Width: | Height: | Size: 91 KiB |
BIN
modules/upela/views/img/screen-2.png
Normal file
After Width: | Height: | Size: 86 KiB |
BIN
modules/upela/views/img/screen.jpg
Normal file
After Width: | Height: | Size: 79 KiB |
BIN
modules/upela/views/img/screen.png
Normal file
After Width: | Height: | Size: 27 KiB |
BIN
modules/upela/views/img/trans/chronopost.png
Normal file
After Width: | Height: | Size: 19 KiB |
BIN
modules/upela/views/img/trans/colissimo.png
Normal file
After Width: | Height: | Size: 18 KiB |
BIN
modules/upela/views/img/trans/dhl.png
Normal file
After Width: | Height: | Size: 4.2 KiB |
BIN
modules/upela/views/img/trans/dpd.png
Normal file
After Width: | Height: | Size: 7.2 KiB |
BIN
modules/upela/views/img/trans/fedex.png
Normal file
After Width: | Height: | Size: 11 KiB |
BIN
modules/upela/views/img/trans/img-07.png
Normal file
After Width: | Height: | Size: 10 KiB |
35
modules/upela/views/img/trans/index.php
Normal file
@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2015 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-2015 PrestaShop SA
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
|
||||
header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
|
||||
|
||||
header('Cache-Control: no-store, no-cache, must-revalidate');
|
||||
header('Cache-Control: post-check=0, pre-check=0', false);
|
||||
header('Pragma: no-cache');
|
||||
|
||||
header('Location: ../');
|
||||
exit;
|
BIN
modules/upela/views/img/trans/relay.png
Normal file
After Width: | Height: | Size: 6.5 KiB |
BIN
modules/upela/views/img/trans/ups.png
Normal file
After Width: | Height: | Size: 9.4 KiB |
35
modules/upela/views/index.php
Normal file
@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2015 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-2015 PrestaShop SA
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
|
||||
header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
|
||||
|
||||
header('Cache-Control: no-store, no-cache, must-revalidate');
|
||||
header('Cache-Control: post-check=0, pre-check=0', false);
|
||||
header('Pragma: no-cache');
|
||||
|
||||
header('Location: ../');
|
||||
exit;
|
52
modules/upela/views/js/back.js
Normal file
@ -0,0 +1,52 @@
|
||||
/**
|
||||
* 2007-2016 PrestaShop
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This source file is subject to the Open Software License (OSL 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/osl-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.
|
||||
*
|
||||
* @author UPELA
|
||||
* @copyright 2017-2018 MPG Upela
|
||||
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
||||
*/
|
||||
|
||||
$(document).ready(function () {
|
||||
var UpelaAccountModuleController = new UpelaAccountBOController();
|
||||
UpelaAccountModuleController.init();
|
||||
|
||||
});
|
||||
|
||||
var UpelaAccountBOController = function () {
|
||||
|
||||
/* Account Creation Selectors */
|
||||
this.wizard = '#upela_account_wizard';
|
||||
this.formAccountCreation = '#accountCreationForm';
|
||||
|
||||
this.init = function () {
|
||||
if ($(this.wizard).length) {
|
||||
$(this.wizard).wizard();
|
||||
}
|
||||
this.bindEvents();
|
||||
};
|
||||
|
||||
this.bindEvents = function () {
|
||||
var _this = this;
|
||||
$(this.wizard).on('finished.fu.wizard', function (evt, data) {
|
||||
$(_this.formAccountCreation).submit();
|
||||
});
|
||||
};
|
||||
};
|
||||
|
||||
|
||||
$(document).ready(function () {
|
||||
$('a[data-toggle="tab"]').on('shown.bs.tab', function (e) {
|
||||
var currentTab = $(e.target).text(); // get current tab
|
||||
$(".current-tab span").html(currentTab);
|
||||
});
|
||||
});
|
51
modules/upela/views/js/back2.js
Normal file
@ -0,0 +1,51 @@
|
||||
/**
|
||||
* 2007-2016 PrestaShop
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This source file is subject to the Open Software License (OSL 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/osl-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.
|
||||
*
|
||||
* @author UPELA
|
||||
* @copyright 2017-2018 MPG Upela
|
||||
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
||||
*/
|
||||
|
||||
$(document).ready(function () {
|
||||
var UpelaStoreModuleController = new UpelaStoreBOController();
|
||||
UpelaStoreModuleController.init();
|
||||
});
|
||||
|
||||
var UpelaStoreBOController = function () {
|
||||
|
||||
/* Account Creation Selectors */
|
||||
this.wizard_store = '#upela_store_wizard';
|
||||
this.formStoreCreation = '#storeCreationForm';
|
||||
|
||||
this.init = function () {
|
||||
$(this.wizard_store).wizard();
|
||||
$(this.wizard_store).wizard('next', 'foo');
|
||||
$(this.wizard_store).wizard('next', 'foo');
|
||||
|
||||
this.bindEvents();
|
||||
};
|
||||
|
||||
this.bindEvents = function () {
|
||||
var _this = this;
|
||||
$(this.wizard_store).on('finished.fu.wizard', function (evt, data) {
|
||||
$(_this.formStoreCreation).submit();
|
||||
});
|
||||
};
|
||||
};
|
||||
|
||||
$(document).ready(function () {
|
||||
$('a[data-toggle="tab"]').on('shown.bs.tab', function (e) {
|
||||
var currentTab = $(e.target).text(); // get current tab
|
||||
$(".current-tab span").html(currentTab);
|
||||
});
|
||||
});
|
9
modules/upela/views/js/fuelux.min.js
vendored
Normal file
35
modules/upela/views/js/index.php
Normal file
@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2015 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-2015 PrestaShop SA
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
|
||||
header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
|
||||
|
||||
header('Cache-Control: no-store, no-cache, must-revalidate');
|
||||
header('Cache-Control: post-check=0, pre-check=0', false);
|
||||
header('Pragma: no-cache');
|
||||
|
||||
header('Location: ../');
|
||||
exit;
|
@ -0,0 +1,44 @@
|
||||
{*
|
||||
* 2007-2016 PrestaShop
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This source file is subject to the Open Software License (OSL 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/osl-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.
|
||||
*
|
||||
* @author UPELA
|
||||
* @copyright 2017-2018 MPG Upela
|
||||
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
||||
*}
|
||||
|
||||
<script>
|
||||
$(function () {
|
||||
$("#company_country").change(function () {
|
||||
if ($(this).val() === "FR") {
|
||||
$("#company_siret").removeAttr('disabled');
|
||||
} else {
|
||||
$("#company_siret").attr('disabled', 'disabled');
|
||||
}
|
||||
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
{if isset($postSuccess)}
|
||||
{foreach from=$postSuccess item=ps}
|
||||
<div class="alert alert-success">{$ps|escape:'htmlall':'UTF-8'}</div>
|
||||
{/foreach}
|
||||
{/if}
|
||||
|
||||
{if isset($postErrors)}
|
||||
{foreach from=$postErrors item=pe}
|
||||
<div class="alert alert-warning">{$pe|escape:'htmlall':'UTF-8'}</div>
|
||||
{/foreach}
|
||||
{/if}
|
||||
|
||||
{$createform}
|
@ -0,0 +1,652 @@
|
||||
{*
|
||||
* 2007-2016 PrestaShop
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This source file is subject to the Open Software License (OSL 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/osl-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.
|
||||
*
|
||||
* @author UPELA
|
||||
* @copyright 2017-2018 MPG Upela
|
||||
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
||||
*}
|
||||
|
||||
{if isset($postSuccess)}
|
||||
{foreach from=$postSuccess item=ps}
|
||||
<div class="alert alert-success">{$ps|escape:'htmlall':'UTF-8'}</div>
|
||||
{/foreach}
|
||||
{/if}
|
||||
|
||||
{if isset($postErrors)}
|
||||
{foreach from=$postErrors item=pe}
|
||||
<div class="alert alert-warning">{$pe|escape:'htmlall':'UTF-8'}</div>
|
||||
{/foreach}
|
||||
{/if}
|
||||
|
||||
{if isset($modeform) && !$upela_user_connected}
|
||||
{$modeform}
|
||||
{/if}
|
||||
|
||||
<div id="upela_mnu">
|
||||
<ul class="nav nav-tabs" id="upelaTabs">
|
||||
{if {$upela_login}}
|
||||
<li class="nav-item">
|
||||
{else}
|
||||
<li class="active">
|
||||
{/if}
|
||||
<a href="#home_form" data-toggle="tab" role="tab">
|
||||
<img src="{$_path|escape:'htmlall':'UTF-8'}views/img/logo-upela.png"/>
|
||||
{l s='The Upela solution' mod='upela'}
|
||||
</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a href="#guide_form" data-toggle="tab" role="tab">
|
||||
<img src="{$_path|escape:'htmlall':'UTF-8'}views/img/icons/icon-guide.png"/>
|
||||
{l s='User manual' mod='upela'}
|
||||
</a>
|
||||
</li>
|
||||
{if {$upela_login}}
|
||||
<li class="active">
|
||||
{else}
|
||||
<li class="nav-item">
|
||||
{/if}
|
||||
<a href="#settings_form" data-toggle="tab" role="tab">
|
||||
<img src="{$_path|escape:'htmlall':'UTF-8'}views/img/icons/icon-config.png"/>
|
||||
{l s='Connections parameters' mod='upela'}
|
||||
</a>
|
||||
</li>
|
||||
<li class="nav-item">
|
||||
<a href="#contact_form" data-toggle="tab" role="tab">
|
||||
<img src="{$_path|escape:'htmlall':'UTF-8'}views/img/icons/icon-contact.png"/>
|
||||
{l s='Contact' mod='upela'}
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div id="upela_content" class="tab-content">
|
||||
<div class="tab-pane {if {$upela_login|escape:'htmlall':'UTF-8'}==false}active{/if}" id="home_form"
|
||||
role="tabpanel">
|
||||
<div class="row col-lg-12 col-md-12">
|
||||
<div class="upela_home_form_bg">
|
||||
<div class="container">
|
||||
<div class="upela_home_caption">
|
||||
<h1>{l s='Upela' mod='upela'}</h1>
|
||||
<h2>{l s='The best way to ship a parcel' mod='upela'}</h2>
|
||||
<p>{l s='Save on shipping costs, never on service quality.' mod='upela'}</p>
|
||||
</div>
|
||||
<div class="row pb10">
|
||||
{if $upela_user_connected}
|
||||
<div class="col-lg-3 col-md-3 col-sm-12 col-xs-12 cadre">
|
||||
<p>{l s='You are logged in. Welcome' mod='upela'} {$upela_username|escape:'htmlall':'UTF-8'}</p>
|
||||
<a href="" onClick="this.href='{$upela_user_link|escape:'htmlall':'UTF-8'}'"
|
||||
class="part__button" target="_blank">
|
||||
{l s='Go to Upela.com' mod='upela'}
|
||||
<img src="{$_path|escape:'htmlall':'UTF-8'}views/img/icons/icon-06-w.png"
|
||||
alt="Upela - icon">
|
||||
</a>
|
||||
</div>
|
||||
{else}
|
||||
<p>{l s='Not logged in yet!' mod='upela'}</p>
|
||||
<a href="{$upela_register_link|escape:'htmlall':'UTF-8'}"
|
||||
class="part__button button--white">
|
||||
<img src="{$_path|escape:'htmlall':'UTF-8'}views/img/icons/icon-14-u.png">
|
||||
{l s='Create a Business Account' mod='upela'}
|
||||
</a>
|
||||
<a href="{$upela_login_link|escape:'htmlall':'UTF-8'}"
|
||||
class="part__button">
|
||||
<img src="{$_path|escape:'htmlall':'UTF-8'}views/img/icons/icon-13-w.png">
|
||||
{l s='Log Into Your Account' mod='upela'}
|
||||
</a>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row col-lg-12 col-md-12">
|
||||
<p class="bg">{l s='With Upela and Prestashop, get negotiated rates on all your shipments: consignments, parcels, pallets.' mod='upela'}</p>
|
||||
<br>
|
||||
</div>
|
||||
|
||||
<div class="row col-lg-12 col-md-12">
|
||||
<div class="panel ">
|
||||
<div class="panel-content text-center">
|
||||
<div class="row">
|
||||
<h2 class="light">{l s='Our carriers' mod='upela'}</h2>
|
||||
<br>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-lg-12 text-center">
|
||||
<a href="https://www.upela.com/en/carrier-ups-131.html" target="_blank">
|
||||
<img src="{$_path|escape:'htmlall':'UTF-8'}views/img/trans/ups.png"
|
||||
class="upela_logo_img" alt="UPS"> </a>
|
||||
<a href="https://www.upela.com/en/carrier-mondial-relay-181.html" target="_blank">
|
||||
<img src="{$_path|escape:'htmlall':'UTF-8'}views/img/trans/relay.png"
|
||||
class="upela_logo_img" alt="Mondial Relay"> </a>
|
||||
<a href="https://www.upela.com/en/carrier-dhl-130.html" target="_blank">
|
||||
<img src="{$_path|escape:'htmlall':'UTF-8'}views/img/trans/dhl.png"
|
||||
class="upela_logo_img dhl" alt="DHL"> </a>
|
||||
<a href="https://www.upela.com/en/transporteur-dpd-170.html" target="_blank">
|
||||
<img src="{$_path|escape:'htmlall':'UTF-8'}views/img/trans/fedex.png"
|
||||
class="upela_logo_img" alt="Fedex"> </a>
|
||||
<a href="https://www.upela.com/fr/service-coursier-upela-157.html" target="_blank">
|
||||
<img src="{$_path|escape:'htmlall':'UTF-8'}views/img/trans/img-07.png"
|
||||
class="upela_logo_img" alt="Mondial Relay"> </a>
|
||||
{if {$country} == 'FR'}
|
||||
<a href="https://www.upela.com/en/carrier-ups-131.html" target="_blank">
|
||||
<img src="{$_path|escape:'htmlall':'UTF-8'}views/img/trans/chronopost.png"
|
||||
class="upela_logo_img" alt="Chronopost"> </a>
|
||||
<a href="https://www.upela.com/en/carrier-colissimo-182.html" target="_blank">
|
||||
<img src="{$_path|escape:'htmlall':'UTF-8'}views/img/trans/colissimo.png"
|
||||
class="upela_logo_img" alt="collisimo"> </a>
|
||||
{/if}
|
||||
<a href="https://www.upela.com/en/transporteur-dpd-170.html" target="_blank">
|
||||
<img src="{$_path|escape:'htmlall':'UTF-8'}views/img/trans/dpd.png"
|
||||
class="upela_logo_img" alt="dpd"> </a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row col-lg-12 col-md-12">
|
||||
<div class="panel">
|
||||
<div class="panel-content text-center">
|
||||
<div class="row">
|
||||
<div class="col-sm-3">
|
||||
<div class="section3Img">
|
||||
<div class="align-img-center">
|
||||
<img src="{$_path|escape:'htmlall':'UTF-8'}views/img/icons/icon-23.png"
|
||||
alt="icon-23">
|
||||
</div>
|
||||
</div>
|
||||
<p>{l s='The reliability of the leaders in transport' mod='upela'}</p>
|
||||
</div>
|
||||
<div class="col-sm-3">
|
||||
<div class="section3Img">
|
||||
<div class="align-img-center">
|
||||
<img src="{$_path|escape:'htmlall':'UTF-8'}views/img/icons/icon-24.png"
|
||||
alt="icon-24">
|
||||
</div>
|
||||
</div>
|
||||
<p>{l s='Ultra-flexible delivery times within 3-hour / next-day / two-days' mod='upela'}</p>
|
||||
</div>
|
||||
<div class="col-sm-3">
|
||||
<div class="section3Img">
|
||||
<div class="align-img-center">
|
||||
<img src="{$_path|escape:'htmlall':'UTF-8'}views/img/icons/icon-25.png"
|
||||
alt="icon-25">
|
||||
</div>
|
||||
</div>
|
||||
<p>{l s='A Multi-Carrier Customer Service dedicated to our business customers' mod='upela'}</p>
|
||||
</div>
|
||||
<div class="col-sm-3">
|
||||
<div class="section3Img">
|
||||
<div class="align-img-center">
|
||||
<img src="{$_path|escape:'htmlall':'UTF-8'}views/img/icons/icon-26.png"
|
||||
alt="icon-26">
|
||||
</div>
|
||||
</div>
|
||||
<p>{l s='Free eCommerce shipping modules to make your logistic easier' mod='upela'}</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-sm-4">
|
||||
<div class="section3Img">
|
||||
<div class="align-img-center">
|
||||
<img src="{$_path|escape:'htmlall':'UTF-8'}views/img/icons/icon-27.png"
|
||||
alt="icon-27">
|
||||
</div>
|
||||
</div>
|
||||
<p>{l s='Integrated customs service' mod='upela'}</p>
|
||||
</div>
|
||||
<div class="col-sm-4">
|
||||
<div class="section3Img">
|
||||
<div class="align-img-center">
|
||||
<img src="{$_path|escape:'htmlall':'UTF-8'}views/img/icons/icon-28.png"
|
||||
alt="icon-28">
|
||||
</div>
|
||||
</div>
|
||||
<p>{l s='No minimum invoicing amount' mod='upela'}</p>
|
||||
</div>
|
||||
<div class="col-sm-4">
|
||||
<div class="section3Img">
|
||||
<div class="align-img-center">
|
||||
<img src="{$_path|escape:'htmlall':'UTF-8'}views/img/icons/icon-29.png"
|
||||
alt="icon-29">
|
||||
</div>
|
||||
</div>
|
||||
<p>{l s='Time Saver: ship in a few clicks' mod='upela'}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="row col-lg-12 col-md-12">
|
||||
<div class="panel">
|
||||
<div class="panel-content text-center">
|
||||
<div class="row">
|
||||
<h2 class="light">
|
||||
<span class="orange fontBlack"> {l s='Upela' mod='upela'}</span> {l s='in 3 clicks' mod='upela'}
|
||||
</h2>
|
||||
<div class="row">
|
||||
<div class="col-sm-4">
|
||||
<div class="section4Img">
|
||||
<div class="align-img-center">
|
||||
<img src="{$_path|escape:'htmlall':'UTF-8'}views/img/icons/icon-30.png"
|
||||
alt="Comparer">
|
||||
</div>
|
||||
</div>
|
||||
<p>{l s='Compare' mod='upela'}</p>
|
||||
</div>
|
||||
<div class="col-sm-4">
|
||||
<div class="section4Img">
|
||||
<div class="align-img-center">
|
||||
<img src="{$_path|escape:'htmlall':'UTF-8'}views/img/icons/icon-31.png"
|
||||
alt="Expédier">
|
||||
</div>
|
||||
</div>
|
||||
<p>{l s='Ship' mod='upela'}</p>
|
||||
</div>
|
||||
<div class="col-sm-4">
|
||||
<div class="section4Img">
|
||||
<div class="align-img-center"><img
|
||||
src="{$_path|escape:'htmlall':'UTF-8'}views/img/icons/icon-32.png"
|
||||
alt="Suivre"></div>
|
||||
</div>
|
||||
<p>{l s='Track' mod='upela'}</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<h2 class="light"><span
|
||||
class="orange fontBlack"> {l s='Upela' mod='upela'}</span> {l s='in video'
|
||||
mod='upela'}</h2>
|
||||
<div class="row text-center video">
|
||||
<iframe src="https://www.youtube.com/embed/xhAKCNm-IZY"
|
||||
frameborder="0" allowfullscreen></iframe>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row col-lg-12 col-md-12">
|
||||
<div class="panel section8">
|
||||
<div class="panel-content">
|
||||
<div class="row">
|
||||
<div class="col-sm-7">
|
||||
<h2 class="light">{l s='Our eCommerce shipping modules' mod='upela'}</h2>
|
||||
<p>{l s='Gain in productivity and competitiveness' mod='upela'}</p>
|
||||
<ul class="list">
|
||||
<li><i class="fa fa-caret-right listStyle" aria-hidden="true"></i>{l s='Plug and Play'
|
||||
mod='upela'}
|
||||
</li>
|
||||
<li><i class="fa fa-caret-right listStyle"
|
||||
aria-hidden="true"></i>{l s='Reduce input errors' mod='upela'}
|
||||
</li>
|
||||
<li><i class="fa fa-caret-right listStyle"
|
||||
aria-hidden="true"></i>{l s='Automatic tracking updates' mod='upela'}
|
||||
</li>
|
||||
<li><i class="fa fa-caret-right listStyle"
|
||||
aria-hidden="true"></i>{l s='Integrated logistics' mod='upela'}
|
||||
</li>
|
||||
<li><i class="fa fa-caret-right listStyle"
|
||||
aria-hidden="true"></i>{l s='Centralized orders' mod='upela'}
|
||||
</li>
|
||||
<li><i class="fa fa-caret-right listStyle"
|
||||
aria-hidden="true"></i>{l s='Multi-warehouse management' mod='upela'}
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-sm-5">
|
||||
<img src="{$_path|escape:'htmlall':'UTF-8'}views/img/logos-02.png"
|
||||
alt="logos"
|
||||
class="img-responsive center-block logos-02">
|
||||
<p class="text-center"><a href=""
|
||||
class="orange marketLink">{l s='... and many others!' mod='upela'}</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row col-lg-12 col-md-12">
|
||||
<div class="panel section8">
|
||||
<div class="panel-content">
|
||||
<div class="orangeBorder">
|
||||
<div class="row">
|
||||
<div class="col-sm-6">
|
||||
<div class="row text-center">
|
||||
<div class="col-sm-6">
|
||||
<div class="section9Img">
|
||||
<div class="align-img-center">
|
||||
<img src="{$_path|escape:'htmlall':'UTF-8'}views/img/icons/icon-36.png"
|
||||
alt="Chat">
|
||||
</div>
|
||||
</div>
|
||||
<p>{l s='Online chat' mod='upela'}</p></div>
|
||||
<div class="col-sm-6">
|
||||
<div class="section9Img">
|
||||
<div class="align-img-center">
|
||||
<img src="{$_path|escape:'htmlall':'UTF-8'}views/img/icons/icon-37.png"
|
||||
alt="Téléphone">
|
||||
</div>
|
||||
</div>
|
||||
<p>{l s='Phone' mod='upela'}</p></div>
|
||||
</div>
|
||||
<div class="row text-center">
|
||||
<div class="col-sm-6">
|
||||
<div class="section9Img">
|
||||
<div class="align-img-center">
|
||||
<img src="{$_path|escape:'htmlall':'UTF-8'}views/img/icons/icon-38.png"
|
||||
alt="Online">
|
||||
</div>
|
||||
</div>
|
||||
<p>{l s='Online' mod='upela'}</p></div>
|
||||
<div class="col-sm-6">
|
||||
<div class="section9Img">
|
||||
<div class="align-img-center">
|
||||
<img src="{$_path|escape:'htmlall':'UTF-8'}views/img/icons/icon-39.png"
|
||||
alt="Mail">
|
||||
</div>
|
||||
</div>
|
||||
<p>{l s='Email' mod='upela'}</p></div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-6"><h2
|
||||
class="mt10 light orange fontBlack">{l s='The UPELA Customer Support' mod='upela'}
|
||||
</span></h2>
|
||||
<p>{l s='A Multi-Carrier Customer Service' mod='upela'}</p>
|
||||
<ul class="list">
|
||||
<li><i class="fa fa-caret-right listStyle"
|
||||
aria-hidden="true"></i>{l s='A reply the same day' mod='upela'}
|
||||
</li>
|
||||
<li><i class="fa fa-caret-right listStyle"
|
||||
aria-hidden="true"></i>{l s='Agents available at all times' mod='upela'}
|
||||
</li>
|
||||
<li><i class="fa fa-caret-right listStyle"
|
||||
aria-hidden="true"></i>{l s='Shipment tracking and centralized management of the Customer Service' mod='upela'}
|
||||
</li>
|
||||
<li><i class="fa fa-caret-right listStyle"
|
||||
aria-hidden="true"></i>{l s='Examine your specific cases' mod='upela'}
|
||||
</li>
|
||||
<li><i class="fa fa-caret-right listStyle"
|
||||
aria-hidden="true"></i>{l s='Assist you and guide you in your various projects' mod='upela'}
|
||||
</li>
|
||||
<li><i class="fa fa-caret-right listStyle"
|
||||
aria-hidden="true"></i>{l s='Discover our tools and multiple services' mod='upela'}
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="tab-pane" id="guide_form" role="tabpanel">
|
||||
<div class="row">
|
||||
<div class="panel section8">
|
||||
<div class="row">
|
||||
<div class="col-lg-10 col-lg-offset-1">
|
||||
<div class="panel-content part__content">
|
||||
<h2 class="text-center">{l s='How to set up your UPELA account?' mod='upela'} </h2>
|
||||
<h4 class="text-center pb40">{l s='In your Prestashop store' mod='upela'}</h4>
|
||||
<div class="row pb40">
|
||||
<p>{l s='1) Activate the Webservice :' mod='upela'}</p>
|
||||
<ul class="part__list">
|
||||
<li><i class="fa fa-caret-right listStyle" aria-hidden="true"></i>
|
||||
{l s='Select \"Advanced Settings\", then \"Webservice\"' mod='upela'}
|
||||
</li>
|
||||
<li><i class="fa fa-caret-right listStyle" aria-hidden="true"></i>
|
||||
{l s='Please \"Activate Webservice\" and \"Enable the CGI mode for PHP\"' mod='upela'}
|
||||
</li>
|
||||
<li><i class="fa fa-caret-right listStyle" aria-hidden="true"></i>
|
||||
{l s='Add a new Webservice.' mod='upela'}
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="row pb40">
|
||||
<div class="col-md-7">
|
||||
<p>{l s='2) Create the new Webservice:' mod='upela'}</p>
|
||||
<ul class="part__list">
|
||||
<li><i class="fa fa-caret-right listStyle" aria-hidden="true"></i>
|
||||
{l s='Generate a new API key.' mod='upela'}
|
||||
</li>
|
||||
<li><i class="fa fa-caret-right listStyle" aria-hidden="true"></i>
|
||||
{l s='Check that the Service status is active: \"Yes\"' mod='upela'}
|
||||
</li>
|
||||
<li><i class="fa fa-caret-right listStyle" aria-hidden="true"></i>
|
||||
{l s='Grant the GET, POST and PUT permissions to allow the use of the Webservice.' mod='upela'}
|
||||
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-md-5">
|
||||
<img src="{$_path|escape:'htmlall':'UTF-8'}views/img/manual-screen2.png"
|
||||
class="part__img">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row pb40">
|
||||
<div class="col-md-8">
|
||||
<p>{l s='3) Register or log in to your Upela account' mod='upela'}</p>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
{if !$upela_user_connected}
|
||||
<a href="{$upela_register_link|escape:'htmlall':'UTF-8'}"
|
||||
class="part__button button--white">
|
||||
<img src="{$_path|escape:'htmlall':'UTF-8'}views/img/icons/icon-14-u.png">
|
||||
{l s='Create a Business Account' mod='upela'}
|
||||
</a>
|
||||
<a href="{$upela_login_link|escape:'htmlall':'UTF-8'}"
|
||||
class="part__button">
|
||||
<img src="{$_path|escape:'htmlall':'UTF-8'}views/img/icons/icon-13-w.png">
|
||||
{l s='Log Into Your Account' mod='upela'}
|
||||
</a>
|
||||
<br>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
<div class="row pb40">
|
||||
<div class="col-md-8">
|
||||
<p>{l s='4) Open Upela directly from your store' mod='upela'}</p>
|
||||
</div>
|
||||
<div class="col-md-4">
|
||||
<a href="" onClick="this.href='{$upela_user_link|escape:'htmlall':'UTF-8'}'"
|
||||
class="part__button" target="_blank">
|
||||
{l s='Go to Upela.com' mod='upela'}
|
||||
<img src="{$_path|escape:'htmlall':'UTF-8'}views/img/icons/icon-06-w.png"
|
||||
alt="Upela - icon">
|
||||
</a>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<h4 class="text-center pb40">{l s='In your Upela Customer Area, \"My Stores\" menu' mod='upela'}</h4>
|
||||
<div class="row pb40">
|
||||
<div class="col-md-6">
|
||||
<p>{l s='1) All orders placed on your eShops are automatically imported with their status' mod='upela'}</p>
|
||||
<ul class="part__list">
|
||||
<li><i class="fa fa-caret-right listStyle" aria-hidden="true"></i>
|
||||
{l s='You' mod='upela'} <span
|
||||
class="light-accent-font">{l s='generate' mod='upela'}</span> {l s='the shipping labels and ' mod='upela'}
|
||||
<span class="light-accent-font">{l s='ship' mod='upela'}</span> {l s='your parcels.' mod='upela'}
|
||||
</li>
|
||||
<li><i class="fa fa-caret-right listStyle" aria-hidden="true"></i>
|
||||
{l s='Our shipping module automatically updates your respective stores with the new order status (sent) and the tracking number.' mod='upela'}
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="col-md-6">
|
||||
<img src="{$_path|escape:'htmlall':'UTF-8'}views/img/manual-screen3.png"
|
||||
class="part__img">
|
||||
</div>
|
||||
</div>
|
||||
<div class="row pb40">
|
||||
|
||||
<p>{l s='2) Ship your order' mod='upela'}</p>
|
||||
<ul class="part__list">
|
||||
<li><i class="fa fa-caret-right listStyle" aria-hidden="true"></i>
|
||||
{l s='The shipping and delivery addresses are automatically pre-filled' mod='upela'}
|
||||
</li>
|
||||
<li><i class="fa fa-caret-right listStyle" aria-hidden="true"></i>
|
||||
{l s='Complete the information about your sending, including the description of your parcels (quantity, unit weight, dimension)' mod='upela'}
|
||||
</li>
|
||||
<li><i class="fa fa-caret-right listStyle" aria-hidden="true"></i>
|
||||
{l s='Click on \"Compare the offers\" to finalize your order' mod='upela'}
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="tab-pane {if {$upela_login|escape:'htmlall':'UTF-8'}}active{/if}" id="settings_form" role="tabpanel">
|
||||
<div class="panel">
|
||||
<div class="row">
|
||||
<div class="panel-content part__content">
|
||||
<h2 class="col-lg-offset-4">{l s='Connection parameters to your Upela account' mod='upela'}</h2>
|
||||
<br>
|
||||
{if $upela_user_connected}
|
||||
<h4 class="col-lg-offset-4">{l s='Your account has been activated.' mod='upela'}</h4>
|
||||
<br>
|
||||
<form method='POST' action="#"
|
||||
class="form-horizontal col-lg-5 col-lg-offset-4">
|
||||
<div class="form-group">
|
||||
<label for="email" class="col-sm-4">{l s='Email' mod='upela'}</label>
|
||||
<div class="col-sm-8">
|
||||
<input name="upela_email" type="email" class="form-control" id="email"
|
||||
placeholder="{l s='Email' mod='upela'}" disabled
|
||||
value="{$upela_user_email|escape:'htmlall':'UTF-8'}">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="password" class="col-sm-4">{l s='Password' mod='upela'}</label>
|
||||
<div class="col-sm-8">
|
||||
<input name="upela_password" type="password" class="form-control" id="password"
|
||||
placeholder="{l s='Password' mod='upela'}" disabled>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="form-group">
|
||||
<div class="col-sm-offset-3">
|
||||
<button name="updateLogin" type="submit"
|
||||
class="btn btn-primary text-center part__button">
|
||||
<img src="{$_path|escape:'htmlall':'UTF-8'}views/img/icons/icon-13-w.png">
|
||||
{l s='Disconnect' mod='upela'}
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
{else}
|
||||
<form method='POST' action="{$upela_login_link|escape:'htmlall':'UTF-8'}"
|
||||
class="form-horizontal col-lg-5 col-lg-offset-4">
|
||||
<div class="form-group">
|
||||
<label for="email" class="col-sm-4">{l s='Email' mod='upela'}</label>
|
||||
<div class="col-sm-8">
|
||||
<input name="upela_email" type="email" class="form-control" id="email"
|
||||
placeholder="{l s='Email' mod='upela'}">
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="password" class="col-sm-4">{l s='Password' mod='upela'}</label>
|
||||
<div class="col-sm-8">
|
||||
<input name="upela_password" type="password" class="form-control" id="password"
|
||||
placeholder="{l s='Password' mod='upela'}">
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="form-group">
|
||||
<div class="col-sm-offset-3">
|
||||
<button name="processLogin" type="submit"
|
||||
class="btn btn-primary text-center part__button">
|
||||
<img src="{$_path|escape:'htmlall':'UTF-8'}views/img/icons/icon-13-w.png">
|
||||
{l s='Log Into your Account' mod='upela'}
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-sm-offset-3">
|
||||
<a href="{$upela_register_link|escape:'htmlall':'UTF-8'}"
|
||||
class="part__button button--white">
|
||||
<img src="{$_path|escape:'htmlall':'UTF-8'}views/img/icons/icon-14-u.png">
|
||||
{l s='Create a Business Account' mod='upela'}
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</form>
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{if $upela_user_connected}
|
||||
<div class="panel">
|
||||
<div class="row">
|
||||
<div class="panel-content part__content">
|
||||
<h2 class="col-lg-offset-4">{l s='Stores informations' mod='upela'}</h2>
|
||||
<br>
|
||||
<h4 class="col-lg-offset-4">{l s='You currently have:' mod='upela'} {$upela_nbstores|escape:'htmlall':'UTF-8'} {l s='store(s)' mod='upela'}</h4>
|
||||
<h4 class="col-lg-offset-4">{l s='You currently have:' mod='upela'} {$upela_storeexsists|escape:'htmlall':'UTF-8'} {l s='Prestashop store(s)' mod='upela'}</h4>
|
||||
<br>
|
||||
<div class="col-lg-5 col-lg-offset-4">
|
||||
<div class="row">
|
||||
<div class="col-sm-offset-3">
|
||||
<a href="{$upela_store_link|escape:'htmlall':'UTF-8'}"
|
||||
class="part__button button--white"
|
||||
style="text-align: center;">
|
||||
<img src="{$_path|escape:'htmlall':'UTF-8'}views/img/icons/icon-40.png">
|
||||
{l s='Create store' mod='upela'}
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{/if}
|
||||
</div>
|
||||
<div class="tab-pane" id="contact_form" role="tabpanel">
|
||||
<div class="row">
|
||||
<div class="panel">
|
||||
<div class="row">
|
||||
<div class="col-lg-12 col-md-12 col-sm-12 col-xs-12">
|
||||
<div class="panel-content part__content text-center">
|
||||
<h2 class="part__title">{l s='Upela Customer Service' mod='upela'}</h2>
|
||||
<h4>{l s='Phone' mod='upela'} : {l s='+33 (0)1 78 76 79 79' mod='upela'}</h4>
|
||||
<h4>{l s='Contact the support Upela' mod='upela'}</h4>
|
||||
<a href="{$upela_link_support|escape:'htmlall':'UTF-8'}"
|
||||
target="_blank">{l s='Support' mod='upela'}</a>
|
||||
<br>
|
||||
<img class="part__icon" src="{$_path|escape:'htmlall':'UTF-8'}views/img/logocontact.png"
|
||||
alt="Upela - image"/>
|
||||
<p>{l s='MPG UPELA' mod='upela'}</p>
|
||||
<p>{l s='17BIS RUE LA BOETIE' mod='upela'}</p>
|
||||
<p>{l s='75008 PARIS - FRANCE' mod='upela'}</p>
|
||||
<p>{l s='RCS Paris 750 389 769' mod='upela'}</p>
|
||||
<p>{l s='N° TVA FR12750389769' mod='upela'}</p>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
35
modules/upela/views/templates/admin/configure/index.php
Normal file
@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2015 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-2015 PrestaShop SA
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
|
||||
header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
|
||||
|
||||
header('Cache-Control: no-store, no-cache, must-revalidate');
|
||||
header('Cache-Control: post-check=0, pre-check=0', false);
|
||||
header('Pragma: no-cache');
|
||||
|
||||
header('Location: ../');
|
||||
exit;
|
35
modules/upela/views/templates/admin/controllers/index.php
Normal file
@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2015 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-2015 PrestaShop SA
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
|
||||
header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
|
||||
|
||||
header('Cache-Control: no-store, no-cache, must-revalidate');
|
||||
header('Cache-Control: post-check=0, pre-check=0', false);
|
||||
header('Pragma: no-cache');
|
||||
|
||||
header('Location: ../');
|
||||
exit;
|
35
modules/upela/views/templates/admin/index.php
Normal file
@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2015 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-2015 PrestaShop SA
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
|
||||
header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
|
||||
|
||||
header('Cache-Control: no-store, no-cache, must-revalidate');
|
||||
header('Cache-Control: post-check=0, pre-check=0', false);
|
||||
header('Pragma: no-cache');
|
||||
|
||||
header('Location: ../');
|
||||
exit;
|
53
modules/upela/views/templates/hook/expedition.tpl
Normal file
@ -0,0 +1,53 @@
|
||||
{*
|
||||
* 2007-2016 PrestaShop
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This source file is subject to the Open Software License (OSL 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/osl-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.
|
||||
*
|
||||
* @author UPELA
|
||||
* @copyright 2017-2018 MPG Upela
|
||||
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
||||
*}
|
||||
<script type="text/javascript">$(function () {
|
||||
$('#expeditionTab').insertBefore('#myTab');
|
||||
$('#UpelaExpedition').insertAfter('#expeditionTab');
|
||||
});
|
||||
// $('#expeditionPl').after('hr');
|
||||
</script>
|
||||
<ul class="nav nav-tabs" id="expeditionTab">
|
||||
<li class="active">
|
||||
<a href="#shipping">
|
||||
<i class="icon-truck "></i>
|
||||
{l s='Ship with Upela' mod='upela'}
|
||||
</a>
|
||||
</li>
|
||||
</ul>
|
||||
<div class="tab-content panel" id="UpelaExpedition">
|
||||
<div class="tab-pane active">
|
||||
<div class="table-responsive">
|
||||
<table class="table">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td style="border:none; background-color: #FF6600"><img style="height: 38px; width: 38px;"
|
||||
src="{$simple_link|escape:'html':'UTF-8'}views/img/logo-upela-w.png"
|
||||
width="150px;"></td>
|
||||
<td style="border:none; background-color: #FF6600"><span
|
||||
style="font-weight: normal;">{$reference|escape:'html':'UTF-8'}</span></td>
|
||||
<td style="border:none;text-align:right;background-color: #FF6600"><a class="btn btn-default"
|
||||
target="{$target|escape:'html':'UTF-8'}"
|
||||
href="{$link_suivi|escape:'html':'UTF-8'}"><i
|
||||
class="{$iconBtn|escape:'html':'UTF-8'}"></i> {$suivi|escape:'html':'UTF-8'}</a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
34
modules/upela/views/templates/hook/expedition15.tpl
Normal file
@ -0,0 +1,34 @@
|
||||
{*
|
||||
* 2007-2016 PrestaShop
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This source file is subject to the Open Software License (OSL 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/osl-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.
|
||||
*
|
||||
* @author UPELA
|
||||
* @copyright 2017-2018 MPG Upela
|
||||
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
||||
*}
|
||||
|
||||
<fieldset id="expeditionTab" style="margin-top: 15px;">
|
||||
<legend>{l s='Ship with Upela' mod='upela'}</legend>
|
||||
<table id="shippingUpela">
|
||||
<tbody>
|
||||
<tr>
|
||||
<th style="border:none;"><img src="{$simple_link|escape:'html':'UTF-8'}views/img/logo-pl.svg"
|
||||
width="150px;"></th>
|
||||
<th style="border:none;"><span style="font-weight: normal;">{$reference|escape:'html':'UTF-8'}</span></th>
|
||||
<th style="border:none;padding-left: 15px;"><a class="button" target="{$target|escape:'html':'UTF-8'}"
|
||||
href="{$link_suivi|escape:'html':'UTF-8'}"><img
|
||||
src="{$simple_link|escape:'html':'UTF-8'}{$img15|escape:'html':'UTF-8'}"> {$suivi|escape:'html':'UTF-8'}
|
||||
</a></th>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</fieldset>
|
35
modules/upela/views/templates/hook/index.php
Normal file
@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2015 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-2015 PrestaShop SA
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
|
||||
header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
|
||||
|
||||
header('Cache-Control: no-store, no-cache, must-revalidate');
|
||||
header('Cache-Control: post-check=0, pre-check=0', false);
|
||||
header('Pragma: no-cache');
|
||||
|
||||
header('Location: ../');
|
||||
exit;
|
35
modules/upela/views/templates/index.php
Normal file
@ -0,0 +1,35 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2015 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-2015 PrestaShop SA
|
||||
* @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
|
||||
header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
|
||||
|
||||
header('Cache-Control: no-store, no-cache, must-revalidate');
|
||||
header('Cache-Control: post-check=0, pre-check=0', false);
|
||||
header('Pragma: no-cache');
|
||||
|
||||
header('Location: ../');
|
||||
exit;
|