123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <?php
- /**
- * Copyright © 2016 Ihor Vansach (ihor@magefan.com). All rights reserved.
- * See LICENSE.txt for license details (http://opensource.org/licenses/osl-3.0.php).
- *
- * Glory to Ukraine! Glory to the heroes!
- */
- ?>
- <?php
- /**
- * Blog available for import template
- *
- * @var $block \Magento\Backend\Block\Template
- */
- ?>
- <table class="available-imports">
- <tr>
- <td class="item">
- <table>
- <tr>
- <td>
- <div class="itm-hld" onclick="window.location='<?php echo $block->getUrl('blog/import/wordpress') ?>'">
- <img class="img" src="<?php echo $this->getViewFileUrl('Magefan_Blog::images/wordpress.png') ?>" />
- <br/>
- <span class="lable">Import from WordPress<br/><br/></span>
- </div>
- </td>
- <tr>
- </table>
- </td>
- <td class="item">
- <table>
- <tr>
- <td>
- <div class="itm-hld" onclick="goToAwImport();">
- <img class="img" src="<?php echo $this->getViewFileUrl('Magefan_Blog::images/aw_blog.png') ?>" />
- <br/>
- <span class="lable">Import from aheadWorks<br/> blog extension</span>
- <form id="start_aw_import" action="<?php echo $block->getUrl('blog/import/run') ?>" method="post">
- <input type="hidden" name="type" value="aw" />
- <?php echo $block->getLayout()->getBlock('formkey')->toHtml() ?>
- </form>
- </div>
- </td>
- <tr>
- </table>
- </td>
- <td class="item">
- <table>
- <tr>
- <td>
- <div class="itm-hld" onclick="window.open('http://magefan.com/contact/')">
- <h2 class="img more">Need More?<br/><br/>Other CMS or Extension</h2>
- <span class="lable">Contact Magefan Team<br/><br/></span>
- </div>
- </td>
- <tr>
- </table>
- </td>
- <td class="item"></td>
- <td class="item"></td>
- </tr>
- </table>
- <script type="text/javascript">
- function goToAwImport()
- {
- if (confirm('Are you sure you want to start import from aheadWorks blog? Attention! Do not run this import again.')) {
- document.getElementById('start_aw_import').submit();
- }
- }
- </script>
|