Your IP : 216.73.216.240


Current Path : /home/j/u/v/juvelize/martine/tmp/install_61b0f5c54c150/back/views/lists/tmpl/
Upload File :
Current File : /home/j/u/v/juvelize/martine/tmp/install_61b0f5c54c150/back/views/lists/tmpl/settings_overview.php

<div class="cell grid-x acym__list__settings__tmpls acym__content">
	<div class="cell grid-y medium-4 medium-margin-right-1 text-center acym__list__settings__subscriber__nb">
		<div class="cell small-2 acym__list__settings__tmpls__title grid-x align-center acym_vcenter">
			<label>
                <?php echo acym_translation('ACYM_SUBSCRIBERS'); ?>
			</label>
			<i class="acymicon-group margin-left-1"></i>
		</div>
		<div class="cell small-10 align-center acym_vcenter acym__list__settings__subscriber__nb__display grid-x">
			<div class="cell grid-x">
                <?php
                $linkType = acym_isAdmin() ? 'a' : 'span';
                $url = acym_completeLink((acym_isAdmin() ? '' : 'front').'users&users_list='.intval($data['listInformation']->id).'&list_status=sub');
                ?>
				<div class="cell small-4 text-right acym__list__settings__subscriber__nb__line">
					<<?php echo $linkType; ?> href="<?php echo $url; ?>" class="acym__color__blue"><?php echo $data['listInformation']->subscribers['sendable_users']; ?>&nbsp;</<?php echo $linkType; ?>>
				</div>
				<div class="cell small-8 text-left acym__list__settings__subscriber__nb__line">
					<<?php echo $linkType; ?> href="<?php echo $url; ?>"><?php echo acym_translation('ACYM_SUBSCRIBED'); ?></<?php echo $linkType; ?>>
				</div>
                <?php
                if ($this->config->get('require_confirmation', 1) == 1) {
                    $url = acym_completeLink((acym_isAdmin() ? '' : 'front').'users&users_list='.intval($data['listInformation']->id).'&list_status=sub&users_status=unconfirmed');
                    ?>
					<div class="cell small-4 text-right acym__list__settings__subscriber__nb__line">
						<<?php echo $linkType; ?> href="<?php echo $url; ?>" class="acym__color__blue"><?php echo $data['listInformation']->subscribers['unconfirmed_users']; ?>&nbsp;</<?php echo $linkType; ?>>
					</div>
					<div class="cell small-8 text-left acym__list__settings__subscriber__nb__line">
						<<?php echo $linkType; ?> href="<?php echo $url; ?>"><?php echo acym_translation('ACYM_NOT_CONFIRMED'); ?></<?php echo $linkType; ?>>
					</div>
                    <?php
                }
                $url = acym_completeLink((acym_isAdmin() ? '' : 'front').'users&users_list='.intval($data['listInformation']->id).'&list_status=sub&users_status=inactive');
                ?>
				<div class="cell small-4 text-right acym__list__settings__subscriber__nb__line">
					<<?php echo $linkType; ?> href="<?php echo $url; ?>" class="acym__color__blue"><?php echo $data['listInformation']->subscribers['inactive_users']; ?>&nbsp;</<?php echo $linkType; ?>>
				</div>
				<div class="cell small-8 text-left acym__list__settings__subscriber__nb__line">
					<<?php echo $linkType; ?> href="<?php echo $url; ?>"><?php echo acym_translation('ACYM_INACTIVE'); ?></<?php echo $linkType; ?>>
				</div>
                <?php $url = acym_completeLink((acym_isAdmin() ? '' : 'front').'users&users_list='.intval($data['listInformation']->id).'&list_status=unsub'); ?>
				<div class="cell small-4 text-right">
					<<?php echo $linkType; ?> href="<?php echo $url; ?>" class="acym__color__blue"><?php echo $data['listInformation']->subscribers['unsubscribed_users']; ?>&nbsp;</<?php echo $linkType; ?>>
				</div>
				<div class="cell small-8 text-left">
					<<?php echo $linkType; ?> href="<?php echo $url; ?>"><?php echo acym_translation('ACYM_UNSUBSCRIBED'); ?></<?php echo $linkType; ?>>
				</div>
			</div>
		</div>
	</div>
	<div class="cell grid-y medium-4 medium-margin-right-1 acym__list__settings__tmpls__welcome">
		<div class="cell small-2 acym__list__settings__tmpls__title align-center acym_vcenter">
            <?php echo acym_tooltip(
                '<label>'.acym_translation('ACYM_WELCOME_MAIL').'</label>',
                '('.acym_translation('ACYM_OPTIONAL').') '.acym_translation('ACYM_WELCOME_MAIL_DESC')
            ); ?>
			<i class="acymicon-email margin-left-1"></i>
		</div>
		<div class="cell grid-x acym__template__block align-center acym_vcenter small-10 acym__list__button__add__mail">
            <?php
            if (!acym_isAllowed('mails')) {
                echo acym_tooltip(
                    '<i class="acymicon-ban acym__list__button__add__mail__disabled"></i>',
                    acym_translation('ACYM_UNAUTHORIZED_ACCESS')
                );
            } elseif (empty($data['listInformation']->id)) {
                echo acym_tooltip(
                    '<i class="acymicon-ban acym__list__button__add__mail__disabled"></i>',
                    acym_translation('ACYM_SAVE_LIST_FIRST')
                );
            } elseif (empty($data['listInformation']->welcome_id)) { ?>
				<a class="acym_vcenter text-center align-center acym__color__white acym__list__button__add__mail__welcome__unsub"
				   href="<?php echo $data['tmpls']['welcomeTmplUrl']; ?>">
					<i class="acymicon-add"></i>
				</a>
            <?php } else { ?>
				<button type="button"
						template="<?php echo acym_escape($data['listInformation']->welcome_id); ?>"
						class="cell acym__templates__oneTpl acym__listing__block acym_template_option">
					<div class="text-center cell acym__listing__block__delete acym__background-color__red">
						<div>
							<i class="acymicon-trash-o acym__listing__block__delete__trash acym__color__white"></i>
							<p class="acym__listing__block__delete__submit acym__color__white acy_button_submit" data-task="unsetWelcome">
								<i class="acymicon-trash-o acym__color__white"></i>
							</p>
							<p class="acym__listing__block__delete__cancel acym__background-color__very-dark-gray acym__color__white">
								<i class="acymicon-keyboard_arrow_right acym__color__white"></i>
							</p>
						</div>
					</div>
					<a href="<?php echo $data['tmpls']['welcomeTmplUrl']; ?>">
						<div class="cell grid-x text-center">
							<div class="cell acym__templates__pic text-center">
								<img src="<?php echo acym_getMailThumbnail($data['tmpls']['welcome']->thumbnail); ?>"
									 alt="<?php echo acym_escape($data['tmpls']['welcome']->name); ?>" />
							</div>
							<div class="cell grid-x text-center acym__templates__footer">
								<div class="cell acym__template__footer__title"><?php echo acym_escape($data['tmpls']['welcome']->name); ?></div>
							</div>
						</div>
					</a>
				</button>
            <?php } ?>
		</div>
	</div>
	<div class="cell grid-y medium-4 medium-margin-right-1 acym__list__settings__tmpls__unsubscribe">
		<div class="cell small-2 acym__list__settings__tmpls__title align-center acym_vcenter">
            <?php echo acym_tooltip(
                '<label>'.acym_translation('ACYM_UNSUBSCRIBE_MAIL').'</label>',
                '('.acym_translation('ACYM_OPTIONAL').') '.acym_translation('ACYM_UNSUBSCRIBE_MAIL_DESC')
            ); ?>
			<i class="acymicon-email margin-left-1"></i>
		</div>
		<div class="cell grid-x acym__template__block align-center acym_vcenter small-10 acym__list__button__add__mail">
            <?php
            if (!acym_isAllowed('mails')) {
                echo acym_tooltip(
                    '<i class="acymicon-ban acym__list__button__add__mail__disabled"></i>',
                    acym_translation('ACYM_UNAUTHORIZED_ACCESS')
                );
            } elseif (empty($data['listInformation']->id)) {
                echo acym_tooltip(
                    '<i class="acymicon-ban acym__list__button__add__mail__disabled"></i>',
                    acym_translation('ACYM_SAVE_LIST_FIRST')
                );
            } elseif (empty($data['listInformation']->unsubscribe_id)) { ?>
				<a class="acym_vcenter text-center align-center acym__color__white acym__list__button__add__mail__welcome__unsub"
				   href="<?php echo $data['tmpls']['unsubTmplUrl']; ?>">
					<i class="acymicon-add"></i>
				</a>
            <?php } else { ?>
				<button type="button"
						template="<?php echo acym_escape($data['listInformation']->unsubscribe_id); ?>"
						class="cell acym__templates__oneTpl acym__listing__block acym_template_option">
					<div class="text-center cell acym__listing__block__delete acym__background-color__red">
						<div>
							<i class="acymicon-trash-o acym__listing__block__delete__trash acym__color__white"></i>
							<p class="acym__listing__block__delete__submit acym__color__white acy_button_submit" data-task="unsetUnsubscribe">
								<i class="acymicon-trash-o acym__color__white"></i>
							</p>
							<p class="acym__listing__block__delete__cancel acym__background-color__very-dark-gray acym__color__white">
								<i class="acymicon-keyboard_arrow_right acym__color__white"></i>
							</p>
						</div>
					</div>
					<a href="<?php echo $data['tmpls']['unsubTmplUrl']; ?>">
						<div class="cell grid-x text-center">
							<div class="cell acym__templates__pic text-center">
								<img src="<?php echo acym_getMailThumbnail($data['tmpls']['unsubscribe']->thumbnail); ?>"
									 alt="<?php echo acym_escape($data['tmpls']['unsubscribe']->name); ?>" />
							</div>
							<div class="cell grid-x text-center acym__templates__footer">
								<div class="cell acym__template__footer__title"><?php echo acym_escape($data['tmpls']['unsubscribe']->name); ?></div>
							</div>
						</div>
					</a>
				</button>
            <?php } ?>
		</div>
	</div>
</div>