forked from LiveCarta/LiveCartaWP
Changed source root directory
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Duplicator
|
||||
* @copyright (c) 2022, Snap Creek LLC
|
||||
*/
|
||||
|
||||
use Duplicator\Utils\Help\Article;
|
||||
|
||||
defined("ABSPATH") or die("");
|
||||
|
||||
/**
|
||||
* Variables
|
||||
*
|
||||
* @var \Duplicator\Core\Controllers\ControllersManager $ctrlMng
|
||||
* @var \Duplicator\Core\Views\TplMng $tplMng
|
||||
* @var array<string, mixed> $tplData
|
||||
*/
|
||||
|
||||
/** @var Article[] $articles p*/
|
||||
$articles = $tplData['articles'];
|
||||
$listClass = isset($tplData['list_class']) ? 'class="' . $tplData['list_class'] . '"' : '';
|
||||
?>
|
||||
<?php if (count($articles) > 0) : ?>
|
||||
<ul <?php echo $listClass; ?>>
|
||||
<?php foreach ($articles as $article) : ?>
|
||||
<li class="duplicator-help-article" data-id="<?php echo (int) $article->getId(); ?>">
|
||||
<i aria-hidden="true" class="fa fa-file-alt"></i>
|
||||
<a href="<?php echo esc_url($article->getLink()); ?>" target="_blank"><?php echo esc_html($article->getTitle()); ?></a>
|
||||
</li>
|
||||
<?php endforeach; ?>
|
||||
</ul>
|
||||
<?php endif; ?>
|
||||
@@ -0,0 +1,61 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Duplicator
|
||||
* @copyright (c) 2022, Snap Creek LLC
|
||||
*/
|
||||
|
||||
use Duplicator\Utils\Help\Category;
|
||||
use Duplicator\Utils\Help\Help;
|
||||
|
||||
defined("ABSPATH") or die("");
|
||||
|
||||
/**
|
||||
* Variables
|
||||
*
|
||||
* @var \Duplicator\Core\Controllers\ControllersManager $ctrlMng
|
||||
* @var \Duplicator\Core\Views\TplMng $tplMng
|
||||
* @var array<string, mixed> $tplData
|
||||
*/
|
||||
|
||||
/** @var Category[] $categories */
|
||||
$categories = $tplData['categories'];
|
||||
if (empty($categories)) : ?>
|
||||
<p>
|
||||
<?php
|
||||
printf(
|
||||
esc_html_x(
|
||||
'Could not fetch help information. Please try again later or visit the %1$sonline docs%2$s.',
|
||||
'%1$s and %2$s are the opening and closing tags for the link to the online docs.',
|
||||
'duplicator-pro'
|
||||
),
|
||||
'<a href="' . esc_url(DUPLICATOR_BLOG_URL . 'knowledge-base') . '" target="_blank">',
|
||||
'</a>'
|
||||
);
|
||||
?>
|
||||
</p>
|
||||
<?php else : ?>
|
||||
<ul class="duplicator-help-category-list">
|
||||
<?php foreach ($categories as $category) : ?>
|
||||
<li class="duplicator-help-category">
|
||||
<header>
|
||||
<i class="fa fa-folder-open"></i>
|
||||
<span><?php echo esc_html($category->getName()); ?></span>
|
||||
<i class="fa fa-angle-right"></i>
|
||||
</header>
|
||||
<?php if (count($category->getChildren()) > 0) { ?>
|
||||
<?php $tplMng->render('parts/help/category-list', ['categories' => $category->getChildren()]);
|
||||
} ?>
|
||||
<?php if ($category->getArticleCount() > 0) : ?>
|
||||
<?php $tplMng->render(
|
||||
'parts/help/article-list',
|
||||
[
|
||||
'articles' => Help::getInstance()->getArticlesByCategory($category->getId()),
|
||||
'list_class' => 'duplicator-help-article-list',
|
||||
]
|
||||
); ?>
|
||||
<?php endif; ?>
|
||||
</li>
|
||||
<?php endforeach; ?>
|
||||
<?php endif; ?>
|
||||
</ul>
|
||||
247
html/wp-content/plugins/duplicator/template/parts/help/main.php
Normal file
247
html/wp-content/plugins/duplicator/template/parts/help/main.php
Normal file
@@ -0,0 +1,247 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* @package Duplicator
|
||||
* @copyright (c) 2022, Snap Creek LLC
|
||||
*/
|
||||
|
||||
use Duplicator\Utils\Help\Help;
|
||||
use Duplicator\Utils\LinkManager;
|
||||
|
||||
defined("ABSPATH") or die("");
|
||||
|
||||
/**
|
||||
* Variables
|
||||
*
|
||||
* @var \Duplicator\Core\Controllers\ControllersManager $ctrlMng
|
||||
* @var \Duplicator\Core\Views\TplMng $tplMng
|
||||
* @var array<string, mixed> $tplData
|
||||
*/
|
||||
?>
|
||||
<style>
|
||||
/* Dynamic Help Style */
|
||||
#duplicator-help-wrapper {
|
||||
display: block;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
background-color: #fff;
|
||||
overflow-y: auto;
|
||||
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
|
||||
-webkit-font-smoothing: antialiased !important;
|
||||
-moz-osx-font-smoothing: grayscale !important;
|
||||
}
|
||||
|
||||
#duplicator-help-header {
|
||||
position: fixed;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
width: 90%;
|
||||
top: 30px;
|
||||
left: 5%;
|
||||
}
|
||||
|
||||
#duplicator-help-content {
|
||||
width: 700px;
|
||||
margin: 150px auto 50px;
|
||||
}
|
||||
|
||||
@media only screen and (max-width: 700px) {
|
||||
#duplicator-help-content {
|
||||
width: 90%;
|
||||
}
|
||||
}
|
||||
|
||||
#duplicator-help-search {
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
#duplicator-help-search-results-empty {
|
||||
display: none;
|
||||
}
|
||||
|
||||
#duplicator-help-search-results,
|
||||
#duplicator-help-search-results-empty {
|
||||
margin-top: 50px;
|
||||
}
|
||||
|
||||
#duplicator-help-search input {
|
||||
border: 1px solid #999999;
|
||||
border-radius: 25px;
|
||||
color: #444444;
|
||||
font-size: 20px;
|
||||
letter-spacing: 0;
|
||||
line-height: 20px;
|
||||
min-height: 48px;
|
||||
padding: 10px 10px 10px 25px;
|
||||
text-align: left;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.duplicator-help-category {
|
||||
border-top: 1px solid #dddddd;
|
||||
margin: 0;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
|
||||
#duplicator-help-categories > ul > li ul {
|
||||
display: none;
|
||||
margin-left: 30px;
|
||||
}
|
||||
|
||||
#duplicator-help-categories > ul > li .duplicator-help-category:last-of-type {
|
||||
border-bottom: 0;
|
||||
}
|
||||
|
||||
.duplicator-help-category:last-of-type {
|
||||
border-bottom: 1px solid #dddddd;
|
||||
}
|
||||
|
||||
.duplicator-help-category header {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: flex-start;
|
||||
align-items: center;
|
||||
cursor: pointer;
|
||||
padding: 20px 0;
|
||||
}
|
||||
|
||||
.duplicator-help-category header span {
|
||||
color: #444444;
|
||||
font-size: 16px;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.duplicator-help-category header .fa-folder-open {
|
||||
color: #999999;
|
||||
font-size: 21px;
|
||||
margin-right: 10px;
|
||||
}
|
||||
|
||||
.duplicator-help-category header .fa-angle-right {
|
||||
color: #cccccc;
|
||||
font-size: 24px;
|
||||
margin-left: auto;
|
||||
transition-property: transform;
|
||||
transition-duration: 0.25s;
|
||||
transition-timing-function: ease-out;
|
||||
}
|
||||
|
||||
.duplicator-help-article-list {
|
||||
display: none;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.duplicator-help-article {
|
||||
margin: 0;
|
||||
padding: 0 0 14px 4px;
|
||||
}
|
||||
|
||||
.duplicator-help-article .fa-file-alt {
|
||||
color: #b6b6b6;
|
||||
font-size: 16px;
|
||||
margin: 0 14px 0 0;
|
||||
}
|
||||
|
||||
.duplicator-help-article a {
|
||||
border-bottom: 1px solid transparent;
|
||||
color: #666;
|
||||
font-size: 15px;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
#duplicator-help-footer {
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
justify-content: space-between;
|
||||
margin-top: 50px;
|
||||
}
|
||||
|
||||
.duplicator-help-footer-block {
|
||||
border: 1px solid #ddd;
|
||||
border-radius: 6px;
|
||||
box-sizing: border-box;
|
||||
max-width: 340px;
|
||||
padding: 25px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.duplicator-help-footer-block i {
|
||||
color: #999;
|
||||
font-size: 48px;
|
||||
margin: 0 0 20px 0;
|
||||
}
|
||||
|
||||
.duplicator-help-footer-block h3 {
|
||||
color: #444;
|
||||
font-size: 16px;
|
||||
margin: 0 0 10px 0;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
.duplicator-help-footer-block p {
|
||||
color: #777777;
|
||||
font-size: 14px;
|
||||
margin: 0 0 20px 0;
|
||||
}
|
||||
|
||||
.duplicator-help-footer-block .button {
|
||||
border: 1px solid #af9ca6 !important;
|
||||
color: #4f394d !important;
|
||||
background: transparent !important;
|
||||
font-size: 15px !important;
|
||||
}
|
||||
</style>
|
||||
<div id="duplicator-help-wrapper">
|
||||
<div id="duplicator-help-header">
|
||||
<img src="<?php echo DUPLICATOR_PLUGIN_URL . 'assets/img/duplicator-header-logo.svg'; ?>" />
|
||||
</div>
|
||||
<div id="duplicator-help-content">
|
||||
<div id="duplicator-help-search">
|
||||
<input type="text" placeholder="<?php esc_attr_e("Search", "duplicator"); ?>" />
|
||||
<ul id="duplicator-help-search-results"></ul>
|
||||
<div id="duplicator-help-search-results-empty"><?php esc_html_e("No results found", "duplicator"); ?></div>
|
||||
</div>
|
||||
<div id="duplicator-context-articles">
|
||||
<?php if (count(Help::getInstance()->getArticlesByTag($tplData['tag'])) > 0) : ?>
|
||||
<h2><?php esc_html_e("Related Articles", "duplicator"); ?></h2>
|
||||
<?php $tplMng->render('parts/help/article-list', ['articles' => Help::getInstance()->getArticlesByTag($tplData['tag'])]); ?>
|
||||
<?php endif; ?>
|
||||
</div>
|
||||
<div id="duplicator-help-categories">
|
||||
<?php $tplMng->render('parts/help/category-list', ['categories' => Help::getInstance()->getTopLevelCategories()]); ?>
|
||||
</div>
|
||||
<div id="duplicator-help-footer">
|
||||
<div class="duplicator-help-footer-block">
|
||||
<i aria-hidden="true" class="fa fa-file-alt"></i>
|
||||
<h3><?php esc_html_e("View Documentation", "duplicator"); ?></h3>
|
||||
<p>
|
||||
<?php esc_html_e("Browse documentation, reference material, and tutorials for Duplicator.", "duplicator"); ?>
|
||||
</p>
|
||||
<a
|
||||
href="<?php echo LinkManager::getDocUrl('', 'help-modal-footer', 'View All Docs'); ?>"
|
||||
rel="noopener noreferrer"
|
||||
target="_blank"
|
||||
class="button">
|
||||
<?php esc_html_e("View All Documentation", "duplicator"); ?>
|
||||
</a>
|
||||
</div>
|
||||
<div class="duplicator-help-footer-block">
|
||||
<i aria-hidden="true" class="fa fa-life-ring"></i>
|
||||
<h3><?php esc_html_e("Get Support", "duplicator"); ?></h3>
|
||||
<p><?php esc_html_e("Upgrade to Duplicator Pro to access our world class customer support.", "duplicator"); ?></p>
|
||||
<a
|
||||
href="<?php echo LinkManager::getCampaignUrl('help-modal-footer', 'Get Support'); ?>"
|
||||
rel="noopener noreferrer"
|
||||
target="_blank"
|
||||
class="button">
|
||||
<?php esc_html_e("Upgrade to Duplicator Pro", "duplicator"); ?>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user