Пример #1
0
    /**
     * Renders the post-installation message
     */
    protected function renderPostInstallation($status, $fofInstallationStatus, $strapperInstallationStatus, $parent)
    {
        ?>
		<img src="../media/com_akeeba/icons/logo-48.png" width="48" height="48" alt="Akeeba Backup" align="right"/>

		<h2>Welcome to Akeeba Backup!</h2>

		<div style="margin: 1em; font-size: 14pt; background-color: #fffff9; color: black">
			You can download translation files <a href="http://cdn.akeebabackup.com/language/akeebabackup/index.html">directly
				from our CDN page</a>.
		</div>

		<?php 
        parent::renderPostInstallation($status, $fofInstallationStatus, $strapperInstallationStatus, $parent);
        ?>

		<fieldset>
			<p>
				We strongly recommend reading the
				<a href="https://www.akeebabackup.com/documentation/quick-start-guide.html" target="_blank">Quick Start
					Guide</a>
				(short, suitable for beginners) or
				<a href="https://www.akeebabackup.com/documentation/akeeba-backup-documentation.html" target="_blank">Akeeba
					Backup User's Guide</a>
				(lengthy, technical) before proceeding with using this component. Alternatively, you can
				<a href="https://www.akeebabackup.com/documentation/video-tutorials.html" target="_blank">watch some
					video tutorials</a>
				which will get you up to speed with backing up and restoring your site.
			</p>

			<p>
				When you're done with the documentation, you can go ahead and run the
				<a href="index.php?option=com_akeeba">Post-Installation Wizard</a>
				which will help you configure Akeeba Backup's optional settings. If this
				is the first time you installed Akeeba Backup, we strongly recommend
				clicking the last checkbox, or click on the Configuration Wizard button
				in Akeeba Backup's control panel page.
			</p>

			<p>
				Should you get stuck somewhere, our
				<a href="https://www.akeebabackup.com/documentation/troubleshooter.html" target="_blank">Troubleshooting
					Wizard</a>
				is right there to help you. If you need one-to-one support, you can get
				it from our <a href="https://www.akeebabackup.com/support.html" target="_blank">support ticket
					system</a>,
				directly from Akeeba Backup's team.<br/>
				<?php 
        if (is_dir($parent->getParent()->getPath('source') . '/plugins/system/srp')) {
            ?>
				As a subscriber to Akeeba Backup Professional (AKEEBAPRO or AKEEBADELUXE subscription level),
				you have full access to our ticket system for the term of your subscription period. If your
				subscription expires, you will have to renew it in order to request further support.<br/>
				<small>Note: if this component was installed on your site by a third party, e.g. your
					site developer, and you and/or your company do not have an active subscription with
					AkeebaBackup.com, please contact the person who installed the component on your site for
					support.
					<?php 
        } else {
            ?>
						While Akeeba Backup Core is free, access to its support is not. You will need an active
						subscription to request support.
					<?php 
        }
        ?>
			</p>
			<p>
				<strong>Remember, you can always get on-line help for the Akeeba Backup
					page you are currently viewing by clicking on the help icon in the top
					right corner of that page.</strong>
			</p>
		</fieldset>
	<?php 
    }
    /**
     * Renders the post-installation message
     */
    function renderPostInstallation($status, $fofInstallationStatus, $strapperInstallationStatus, $parent)
    {
        ?>
		<div style="margin: 1em; font-size: 14pt; background-color: #fffff9; color: black">
			You can download translation files <a href="http://cdn.akeebabackup.com/language/admintools/index.html">directly
				from our CDN page</a>.
		</div>
		<img src="<?php 
        echo rtrim(JURI::base(), '/');
        ?>
/../media/com_admintools/images/admintools-48.png" width="48"
			 height="48" alt="Admin Tools" align="right"/>

		<h2>Admin Tools Installation Status</h2>

		<?php 
        parent::renderPostInstallation($status, $fofInstallationStatus, $strapperInstallationStatus, $parent);
        /** @var AdmintoolsModelStats $model */
        $model = F0FModel::getTmpInstance('Stats', 'AdmintoolsModel');
        if (method_exists($model, 'collectStatistics')) {
            $iframe = $model->collectStatistics(true);
            if ($iframe) {
                echo $iframe;
            }
        }
    }
Пример #3
0
    /**
     * Renders the post-installation message
     */
    protected function renderPostInstallation($status, $fofInstallationStatus, $strapperInstallationStatus, $parent)
    {
        $this->warnAboutJSNPowerAdmin();
        if (!defined('AKEEBA_PRO')) {
            define('AKEEBA_PRO', '0');
        }
        $videoTutorialURL = 'https://www.akeebabackup.com/videos/1212-akeeba-backup-core.html';
        if (AKEEBA_PRO) {
            $videoTutorialURL = 'https://www.akeebabackup.com/videos/1213-akeeba-backup-for-joomla-pro.html';
        }
        ?>
		<img src="../media/com_akeeba/icons/logo-48.png" width="48" height="48" alt="Akeeba Backup" align="right"/>

		<h2>Welcome to Akeeba Backup!</h2>

		<div style="margin: 1em; font-size: 14pt; background-color: #fffff9; color: black">
			You can download translation files <a href="http://cdn.akeebabackup.com/language/akeebabackup/index.html">directly
				from our CDN page</a>.
		</div>

		<?php 
        parent::renderPostInstallation($status, $fofInstallationStatus, $strapperInstallationStatus, $parent);
        ?>

		<fieldset>
			<p>
				We strongly recommend watching our
				<a href="<?php 
        echo $videoTutorialURL;
        ?>
">video
				tutorials</a> before using this component.
			</p>

			<p>
				If this is the first time you install Akeeba Backup on your site please run the
				<a href="index.php?option=com_akeeba&view=confwiz">Configuration Wizard</a>. Akeeba Backup will
				configure itself optimally for your site.
			</p>

			<p>
				By installing this component you are implicitly accepting
				<a href="https://www.akeebabackup.com/license.html">its license (GNU GPLv3)</a> and our
				<a href="https://www.akeebabackup.com/privacy-policy.html">Terms of Service</a>,
				including our Support Policy.
			</p>
		</fieldset>
	<?php 
        /** @var AkeebaModelStats $model */
        $model = F0FModel::getTmpInstance('Stats', 'AkeebaModel');
        if (method_exists($model, 'collectStatistics')) {
            $iframe = $model->collectStatistics(true);
            if ($iframe) {
                echo $iframe;
            }
        }
    }
Пример #4
0
    /**
     * Renders the post-installation message
     */
    protected function renderPostInstallation($status, $fofInstallationStatus, $strapperInstallationStatus, $parent)
    {
        ?>
<h1>Akeeba Subscriptions</h1>

<img src="../media/com_akeebasubs/images/akeebasubs-48.png" width="48" height="48" alt="Akeeba Subscriptions" align="left" />
<h2 style="font-size: 14pt; font-weight: black; padding: 0; margin: 0 0 0.5em;">Welcome to Akeeba Subscriptions!</h2>
<span>The easiest way to sell subscriptions on your Joomla! site</span>

<div style="margin: 1em; font-size: 14pt; background-color: #fffff9; color: black">
	You can download translation files <a href="http://cdn.akeebabackup.com/language/akeebasubs/index.html">directly from our CDN page</a>.
</div>

<?php 
        parent::renderPostInstallation($status, $fofInstallationStatus, $strapperInstallationStatus, $parent);
    }