<?php

/**
 * References for Contao
 *
 * Copyright (c) 2014 Benjamin Roth [http://www.esales-media.de]
 *
 * @package eSM_clients
 * @link    http://www.esales-media.de
 * @license commercial
 */


array_insert($GLOBALS['BE_MOD'], 1, array
(
	'esales'    => array
	(
		'clients'       => array
		(
			'tables'      => array('tl_esm_clients','tl_esm_clients_projects','tl_esm_clients_settings'),
			'icon'        => '/system/themes/default/images/article.gif',
			'sort'        => array('\\tl_esm_clients','renderSortingPage')
		)
	)
));


$GLOBALS['FE_MOD']['esalesClients'] = array
(
	'clientsShowcase'        => 'ModuleClientsShowcase',
	'clientsProject'         => 'ModuleClientsProject',
	'clientsProjectDevices'  => 'ModuleClientsProjectDevices'
);


/**
 * Devices
 */

$GLOBALS['eSM_clients']['devices'] = array
(
	'phone' => array
	(
		'devicemask' => array
		(
			'imageSRC' => 'system/modules/eSM_clients/assets/images/Nexus_6.png',
			'ratio'    => 0.75
		),
		'screen'     => array
		(
			'ratio' => array('x'=>0.911, 'y'=>0.759)
		)
	),
	'desktop' => array
	(
		'devicemask' => array
		(
			'imageSRC' => 'system/modules/eSM_clients/assets/images/desktop.png',
			'ratio'    => 1.00
		),
		'screen'     => array
		(
			'ratio' => array('x'=>0.919, 'y'=>0.622)
		)
	),
	'tablet' => array
	(
		'devicemask' => array
		(
			'imageSRC' => 'system/modules/eSM_clients/assets/images/tablet.png',
			'ratio'    => 0.75
		),
		'screen'     => array
		(
			'ratio' => array('x'=>0.865, 'y'=>0.779)
		)
	)
);