This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* @version 1.0.0 | |
* @package Readmedia | |
* @copyright Copyright (C) 2018 David Jardin - djumla GmbH | |
* @license GNU GPLv3 <http://www.gnu.org/licenses/gpl.html> | |
* @link http://www.djumla.de | |
*/ | |
/* Initialize Joomla framework */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*! European Union country VAT rates + tax zones for Hikashop (webshop for Joomla) | |
by Peter Martin | |
Company: http://www.db8.nl | |
Twitter: @pe7er | |
Currently, before January 1st 2015, VAT on e-services (like telecommunications, radio & television | |
broadcasting and electronic services) to consumers (and businesses without VAT number) within the EU, | |
is charged based on the location (EU country) of the seller. | |
Starting on January 1st 2015, the VAT on e-services must be calculated based on the end customer’s |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Template by Perfect Web Team // www.perfectwebteam.nl // | |
defined('_JEXEC') or die; | |
// Connect with Joomla | |
$app = JFactory::getApplication(); | |
$doc = JFactory::getDocument(); | |
$uri = JFactory::getURI(); | |
// Variables |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.no-gutter.row, | |
.no-gutter.container, | |
.no-gutter.container-fluid{ | |
margin-left: 0; | |
margin-right: 0; | |
} | |
.no-gutter>[class^="col-"]{ | |
padding-left: 0; | |
padding-right: 0; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$database_host = 'localhost'; // Database hostname | |
$database_user = 'root'; // Database username | |
$database_password = ''; // Database password | |
$database_name = 'myjoomla'; // Database name | |
$new_table_prefix = 'zkl_'; // New table prefix | |
$old_table_prefix = 'jos_'; // Old table prefix (optional) | |
$test = false; // Test-run (true or false) | |
// NO NEED TO EDIT BELOW THIS LINE |