Spade

Mini Shell

Directory:~$ /home/lmsyaran/public_html/joomla4/
Upload File

[Home] [System Details] [Kill Me]
Current File:~$ /home/lmsyaran/public_html/joomla4/default.php.tar

home/lmsyaran/public_html/j3/modules/mod_hikashop/tmpl/default.php000064400000000734151157154610021400
0ustar00<?php
/**
 * @package	HikaShop for Joomla!
 * @version	4.4.1
 * @author	hikashop.com
 * @copyright	(C) 2010-2021 HIKARI SOFTWARE. All rights reserved.
 * @license	GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
 */
defined('_JEXEC') or die('Restricted access');
?><?php if(!empty($html)){ ?>
<div id="hikashop_module_<?php echo $module->id;?>"
class="hikashop_module <?php echo
@$module->params['moduleclass_sfx']; ?>">
<?php echo $html; ?>
</div>
<?php } ?>
home/lmsyaran/public_html/j3/modules/mod_menu/tmpl/default.php000064400000003551151157453010020532
0ustar00<?php
/**
 * @package     Joomla.Site
 * @subpackage  mod_menu
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

$id = '';

if ($tagId = $params->get('tag_id', ''))
{
	$id = ' id="' . $tagId . '"';
}

// The menu class is deprecated. Use nav instead
?>
<ul class="nav menu<?php echo $class_sfx; ?>
mod-list"<?php echo $id; ?>>
<?php foreach ($list as $i => &$item)
{
	$class = 'item-' . $item->id;

	if ($item->id == $default_id)
	{
		$class .= ' default';
	}

	if ($item->id == $active_id || ($item->type === 'alias'
&& $item->params->get('aliasoptions') ==
$active_id))
	{
		$class .= ' current';
	}

	if (in_array($item->id, $path))
	{
		$class .= ' active';
	}
	elseif ($item->type === 'alias')
	{
		$aliasToId = $item->params->get('aliasoptions');

		if (count($path) > 0 && $aliasToId == $path[count($path) - 1])
		{
			$class .= ' active';
		}
		elseif (in_array($aliasToId, $path))
		{
			$class .= ' alias-parent-active';
		}
	}

	if ($item->type === 'separator')
	{
		$class .= ' divider';
	}

	if ($item->deeper)
	{
		$class .= ' deeper';
	}

	if ($item->parent)
	{
		$class .= ' parent';
	}

	echo '<li class="' . $class . '">';

	switch ($item->type) :
		case 'separator':
		case 'component':
		case 'heading':
		case 'url':
			require JModuleHelper::getLayoutPath('mod_menu',
'default_' . $item->type);
			break;

		default:
			require JModuleHelper::getLayoutPath('mod_menu',
'default_url');
			break;
	endswitch;

	// The next item is deeper.
	if ($item->deeper)
	{
		echo '<ul class="nav-child unstyled small">';
	}
	// The next item is shallower.
	elseif ($item->shallower)
	{
		echo '</li>';
		echo str_repeat('</ul></li>',
$item->level_diff);
	}
	// The next item is on the same level.
	else
	{
		echo '</li>';
	}
}
?></ul>
home/lmsyaran/public_html/j3/modules/mod_hikashop_cart/tmpl/default.php000064400000000713151157547730022417
0ustar00<?php
/**
 * @package	HikaShop for Joomla!
 * @version	4.4.1
 * @author	hikashop.com
 * @copyright	(C) 2010-2021 HIKARI SOFTWARE. All rights reserved.
 * @license	GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
 */
defined('_JEXEC') or die('Restricted access');
?><?php
if(!empty($html)){
?>
<div class="hikashop_cart_module <?php echo
@$module->params['moduleclass_sfx']; ?>"
id="hikashop_cart_module">
<?php echo $html; ?>
</div>
<?php }
home/lmsyaran/public_html/j3/modules/mod_chatters/tmpl/default.php000064400000010266151160004640021377
0ustar00<section class="chatters">

    <div class="row">
        <div class="col-12">
            <div class="card border-0">
                <div class="card-body">
                    <ul style="padding: 0;margin: 0;">

                        <?php foreach ($chatters as $chatter): ?>

                            <li class="flex-column p-2">
							<div class="d-flex">
                                <div class="image d-flex mr-3
position-relative">
                                    <?php
if(isset($messageCount[$chatter->uid])):?>

                                        <?php
if($messageCount[$chatter->uid]->seid== $chatter->seid):?>

                                            <span
class="messageCounter">
                                     <?=
$messageCount[$chatter->uid]->count;?>
                                  </span>

                                        <?php endif;?>

                                    <?php endif;?>
                                    <img
src="templates/mytemp/assets/images/farzad.jpg"
alt="">
                                </div>
                                <div class="info
text-left">
                                    <a class="text-dark"
href="#"><?= $chatter->name;?></a>
                                    <p>
                                        <?php if
(isset($lastMessage[$chatter->seid])): ?>
                                            <?=
mb_substr($lastMessage[$chatter->seid]->message,0,40,'UTF-8')?>
                                        ...
                                        <?php endif; ?>
                                    </p>
                                    <div>
                                        <span><span
class="calender-cahtters-icon"><i class="far
fa-calendar-alt"></i></span><?=
Joomla\CMS\HTML\HtmlHelper::date($chatter->created, 'Y-m-d');
?> </span>
                                        <span style="margin-right:
.5rem;"><span class="time-cahtters-icon"><i
class="far fa-clock"></i></span><?=
Joomla\CMS\HTML\HtmlHelper::date($chatter->created, 'H:i');
?> </span>
                                        <span style="margin-right:
.5rem;"><span class="coins-cahtters-icon"><i
class="fas fa-coins"></i></span><?=
$chatter->price; ?> تومان</span>
                                    </div>
                                </div>
							</div>
                                <div
class="button-consulting">
                                    <?php if($chatter->pay &&
!$chatter->finish): ?>
                                        <a href="<?=
JRoute::_('index.php?option=com_reservation&view=messages&uid='.
$chatter->uid.'&pid='.
$chatter->pid.'&seid='.$chatter->seid
,false);?>" class="btn btn-info btn-sm">صفحه
گفتگو</a>
                                    <?php elseif($chatter->pay
&& $chatter->finish) : ?>
                                        <a href="<?=
JRoute::_('index.php?option=com_reservation&view=messages&uid='.
$chatter->uid.'&pid='.
$chatter->pid.'&seid='.$chatter->seid
,false);?>" class="btn btn-success btn-sm">خاتمه
یافته</a>
                                    <?php else: ?>
                                        <a href="<?=
JRoute::_('index.php?option=com_reservation&view=payment&seid='.$chatter->seid
,false);?>" class="btn btn-danger
btn-sm">پرداخت</a>
                                    <?php endif; ?>
                                    <div>
                                        <?php if($group==
'sick'):?>
                                            <?php if
($chatter->finish==1 &&
!isset($comment[$chatter->seid])):?>
                                                <a href="<?=
JRoute::_('index.php?option=com_reservation&view=comment&uid='.$chatter->uid.'&seid='.$chatter->seid
,false);?>" class="btn btn-warning btn-sm">ثبت
نظر</a>
                                            <?php endif;?>
                                        <?php endif; ?>
                                    </div>
                                </div>
                            </li>

                        <?php endforeach;?>
                    </ul>
                </div>
            </div>
        </div>
    </div>
</section>home/lmsyaran/public_html/j3/modules/mod_consultants/tmpl/default.php000064400000021707151160043540022143
0ustar00<section class="consultants">

    <div class="row">
        <div class="col-12"">
            <div class="owl-carousel owl-theme">

                <?php foreach ($consultantInfo as $consultant):
                    $link=
JRoute::_('index.php?option=com_reservation&view=consultantitem&id='.$consultant->consultantid);
                ?>

                    <div class="item">
                        <div class="card border-bottom-0 border
">
                            <div class="card-header border-bottom-0
bg-transparent p-0 overflow-hidden">
							<div class="background-profile-blur"
style="background-image:url('<?=
$consultant->image;?>')"></div>
                                <a class="location-profile-image
position-fixed" href="<?= $link;?>"><img
src="<?= $consultant->image;?>"
alt=""></a>
                            </div>
                            <div class="card-body border
border-bottom-0 border-top-0">
                                <ul style="text-align:right;"
class="list-group list-group-flush mx-0 mt-4">
                                    <li
style="text-align:center;" class="list-group-item">
									<a href="<?= $link ?>"><?=
$consultant->consultantname;?></a>
									</li>
                                    <li class="list-group-item
specialty">
									<?= $consultant->specialty?>
										<svg id="Capa_1" enable-background="new 0 0
510.447 510.447" height="512" viewBox="0 0 510.447
510.447" width="512"
xmlns="http://www.w3.org/2000/svg"><g
id="XMLID_373_"><path id="XMLID_206_"
d="m139.224 510.447h-6.333c-40.62
0-73.667-33.047-73.667-73.667s33.047-73.667
73.667-73.667h50v-47.563h30v47.563h109.333c28.651 0 52.425-17.749
59.157-44.165l29.071 7.408c-10.176 39.93-45.632 66.757-88.228
66.757h-109.334v43.667c0 40.62-33.046 73.667-73.666
73.667zm-6.334-117.334c-24.078 0-43.667 19.589-43.667 43.667s19.589 43.667
43.667 43.667h6.333c24.078 0 43.667-19.589 43.667-43.667v-43.667z"
fill="#0065a3"/><path id="XMLID_1689_"
d="m381.38 318.948c-6.732 26.416-30.505 44.165-59.157
44.165h-109.333v-47.563h-15.667v166.565c9.801-12.511 15.667-28.247
15.667-45.336v-43.667h109.333c42.596 0 78.052-26.827 88.228-66.757z"
fill="#00317e"/><circle id="XMLID_194_"
cx="398.89" cy="285.447" fill="#00317e"
r="37.333"/><path id="XMLID_196_" d="m398.89
337.78c-28.856 0-52.333-23.477-52.333-52.333 0-28.857 23.477-52.334
52.333-52.334 28.857 0 52.333 23.477 52.333 52.334.001 28.857-23.476
52.333-52.333 52.333zm0-74.667c-12.314 0-22.333 10.019-22.333 22.334 0
12.314 10.019 22.333 22.333 22.333 12.315 0 22.333-10.019
22.333-22.333.001-12.315-10.018-22.334-22.333-22.334z"
fill="#8a8aa9"/><path id="XMLID_171_"
d="m197.224 330.551c-73.888 0-134-60.112-134-134v-131.91c0-26.545
21.596-48.141 48.14-48.141h14.554v30h-14.554c-10.002 0-18.14 8.138-18.14
18.141v131.91c0 57.346 46.654 104 104 104s104-46.654
104-104v-130.1c0-10.002-8.138-18.14-18.14-18.14h-14.832v-30h14.832c26.544 0
48.14 21.596 48.14 48.14v130.1c0 73.887-60.113 134-134 134z"
fill="#bdbdd2"/><path id="XMLID_1701_"
d="m283.083 18.312h-14.832v30h14.832c10.002 0 18.14 8.138 18.14
18.14v130.1c0 57.346-46.654 104-104 104v30c73.888 0 134-60.112
134-134v-130.1c.001-26.545-21.595-48.14-48.14-48.14z"
fill="#ababc5"/><path id="XMLID_310_"
d="m244.918 0c-17.369 0-31.5 14.131-31.5 31.5s14.131 31.5 31.5
31.5h30.833v-63z" fill="#00317e"/><path
id="XMLID_172_" d="m149.251 0h-30.833v63h30.833c17.369 0
31.5-14.131 31.5-31.5s-14.13-31.5-31.5-31.5z"
fill="#0065a3"/></g></svg>
									</li>
									
                                    <li class="list-group-item
comment" style="direction: rtl">
										<svg id="Capa_1" enable-background="new 0 0 512
512" height="512" viewBox="0 0 512 512"
width="512"
xmlns="http://www.w3.org/2000/svg"><path d="m444.394
3.996h-285.072c-37.183 0-67.606 30.423-67.606 67.606v23.004h257.871c37.183
0 67.606 30.423 67.606 67.606v168.547h27.201c37.183 0 67.606-30.423
67.606-67.606v-191.551c0-37.184-30.423-67.606-67.606-67.606z"
fill="#6c7ed6"/><path d="m396.461
91.515h-285.072c-6.836 0-13.441 1.036-19.673 2.946v.145h257.871c37.183 0
67.606 30.423 67.606 67.606v168.547h27.2c6.836 0 13.441-1.036
19.673-2.946v-168.692c.001-37.183-30.422-67.606-67.605-67.606z"
fill="#4f67d2"/><path d="m352.678
91.515h-285.072c-37.183 0-67.606 30.423-67.606 67.606v191.55c0 37.183
30.423 67.606 67.606 67.606h171.096c7.335 0 12.811 6.826 11.133
13.966-4.537 19.317-11.48 39.745-21.744 60.686-4.609 9.405 5.876 18.966
14.782 13.454 25.751-15.937 62.389-42.61 93.244-80.317 4.056-4.957
10.156-7.79 16.561-7.79 37.183 0 67.606-30.423
67.606-67.606v-191.55c0-37.182-30.423-67.605-67.606-67.605z"
fill="#60b8fe"/><path d="m293.618
432.243c1.677-7.141-3.798-13.966-11.133-13.966h-43.783c7.335 0 12.81 6.825
11.133 13.966-4.537 19.317-11.48 39.745-21.744 60.686-4.609 9.405 5.876
18.966 14.782 13.454 9.88-6.115 21.365-13.816 33.509-23.108 7.832-17.563
13.399-34.696 17.236-51.032z" fill="#23a8fe"/><path
d="m43.783 350.671v-191.55c0-37.183 30.423-67.606
67.606-67.606h-43.783c-37.183 0-67.606 30.423-67.606 67.606v191.55c0 37.183
30.423 67.606 67.606 67.606h43.783c-37.184
0-67.606-30.422-67.606-67.606z" fill="#23a8fe"/><g
fill="#dfebfa"><circle cx="93.714"
cy="260.397" r="22.434"/><circle
cx="166.174" cy="260.397"
r="22.434"/><circle cx="238.633"
cy="260.397" r="22.434"/><circle
cx="311.093" cy="260.397"
r="22.434"/></g><path d="m93.714 260.397c0-8.302
4.514-15.546 11.217-19.425-3.301-1.91-7.129-3.009-11.217-3.009-12.39
0-22.434 10.044-22.434 22.434s10.044 22.434 22.434 22.434c4.088 0
7.917-1.099 11.217-3.009-6.704-3.879-11.217-11.123-11.217-19.425z"
fill="#b1dbfc"/><path d="m166.174 260.397c0-8.302
4.514-15.546 11.217-19.425-3.301-1.91-7.129-3.009-11.217-3.009-12.39
0-22.434 10.044-22.434 22.434s10.044 22.434 22.434 22.434c4.088 0
7.916-1.099 11.217-3.009-6.704-3.879-11.217-11.123-11.217-19.425z"
fill="#b1dbfc"/><path d="m238.633 260.397c0-8.302
4.514-15.546 11.217-19.425-3.301-1.91-7.13-3.009-11.217-3.009-12.39
0-22.434 10.044-22.434 22.434s10.044 22.434 22.434 22.434c4.088 0
7.917-1.099 11.217-3.009-6.703-3.879-11.217-11.123-11.217-19.425z"
fill="#b1dbfc"/><path d="m311.093 260.397c0-8.302
4.513-15.546 11.217-19.425-3.301-1.91-7.13-3.009-11.217-3.009-12.39
0-22.434 10.044-22.434 22.434s10.044 22.434 22.434 22.434c4.088 0
7.917-1.099 11.217-3.009-6.704-3.879-11.217-11.123-11.217-19.425z"
fill="#b1dbfc"/></svg>
                                        <span><?=
isset($commentInfo[$consultant->consultantid])?(($commentInfo[$consultant->consultantid]->rate*100)/($commentInfo[$consultant->consultantid]->count*5)):0;
?>%</span>
                                        -
                                        <span>(<?=
isset($commentInfo[$consultant->consultantid])?
$commentInfo[$consultant->consultantid]->count: 0; ?>
نظر)</span>
                                    </li>
                                    <li class="list-group-item
consultantCount"  style="direction: rtl; font-size:
12px">
									<svg version="1.0"
xmlns="http://www.w3.org/2000/svg"
									 width="512.000000pt" height="512.000000pt"
viewBox="0 0 512.000000 512.000000"
									 preserveAspectRatio="xMidYMid meet">

									<g transform="translate(0.000000,512.000000)
scale(0.100000,-0.100000)"
									fill="red" stroke="none">
									<path d="M1410 4854 c-14 -2 -59 -9 -100 -15 -340 -49 -620
-191 -864 -435
									-119 -118 -197 -224 -271 -366 -87 -168 -138 -326 -165 -519 -18
-124 -8 -406
									19 -528 55 -248 190 -577 323 -783 29 -46 59 -94 66 -108 30 -57 195
-279 312
									-417 128 -151 343 -372 510 -524 102 -91 338 -285 386 -315 16 -10
65 -46 110
									-80 95 -73 343 -238 428 -284 33 -17 83 -46 110 -64 28 -18 104 -61
168 -95
									104 -55 120 -61 140 -50 13 7 26 16 29 21 3 5 14 10 25 12 25 5 192
97 344
									189 401 244 860 612 1184 948 224 233 479 556 613 780 141 233 263
533 313
									769 28 130 39 406 21 532 -27 193 -76 340 -174 526 -104 196 -212
327 -375
									456 -154 121 -188 143 -297 196 -318 155 -688 197 -1030 118 -193
-44 -448
									-172 -637 -320 l-38 -30 -52 45 c-101 84 -279 191 -363 217 -22 7
-44 16 -50
									20 -16 11 -124 47 -194 65 -136 35 -384 54 -491 39z m2659 -717 c62
-31 88
									-133 51 -195 -25 -41 -81 -66 -126 -57 -46 8 -101 62 -109 107 -19
99 97 190
									184 145z m185 -451 c94 -39 156 -137 156 -246 0 -78 -22 -129 -75
-182 -49
									-49 -98 -71 -168 -76 -154 -12 -282 108 -280 264 2 187 194 313 367
240z"/>
									</g>
									</svg>
                                        <span><?=
$sessionCount[$consultant->consultantid]['count'];?></span>
مشاوره
                                    </li>
                                </ul>
                            </div>
                            <div class="card-footer bg-transparent
border border-top-0">
                                <a href="<?= $link ?>"
class="btn btn-info get-advice-button">دریافت
مشاوره</a>
                            </div>
                        </div>
                    </div>

                <?php endforeach;?>
            </div>
        </div>
    </div>
   
</section>

home/lmsyaran/public_html/j3/modules/mod_whosonline/tmpl/default.php000064400000001662151160211370021747
0ustar00<?php
/**
 * @package     Joomla.Site
 * @subpackage  mod_whosonline
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;
?>

<?php if ($showmode == 0 || $showmode == 2) : ?>
	<?php $guest = JText::plural('MOD_WHOSONLINE_GUESTS',
$count['guest']); ?>
	<?php $member = JText::plural('MOD_WHOSONLINE_MEMBERS',
$count['user']); ?>
	<p><?php echo JText::sprintf('MOD_WHOSONLINE_WE_HAVE',
$guest, $member); ?></p>
<?php endif; ?>

<?php if (($showmode > 0) && count($names)) : ?>
	<?php if ($params->get('filter_groups', 0)) : ?>
		<p><?php echo
JText::_('MOD_WHOSONLINE_SAME_GROUP_MESSAGE'); ?></p>
	<?php endif; ?>
	<ul class="whosonline<?php echo $moduleclass_sfx;
?>">
	<?php foreach ($names as $name) : ?>
		<li>
			<?php echo $name->username; ?>
		</li>
	<?php endforeach; ?>
	</ul>
<?php endif;
home/lmsyaran/public_html/j3/modules/mod_stats/tmpl/default.php000064400000000720151160240510020710
0ustar00<?php
/**
 * @package     Joomla.Site
 * @subpackage  mod_stats
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;
?>
<dl class="stats-module<?php echo $moduleclass_sfx;
?>">
<?php foreach ($list as $item) : ?>
	<dt><?php echo $item->title; ?></dt>
	<dd><?php echo $item->data; ?></dd>
<?php endforeach; ?>
</dl>
home/lmsyaran/public_html/j3/modules/mod_random_image/tmpl/default.php000064400000001315151160433620022203
0ustar00<?php
/**
 * @package     Joomla.Site
 * @subpackage  mod_random_image
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;
?>
<div class="random-image<?php echo $moduleclass_sfx;
?>">
<?php if ($link) : ?>
<a href="<?php echo htmlspecialchars($link, ENT_QUOTES,
'UTF-8'); ?>">
<?php endif; ?>
	<?php echo JHtml::_('image', $image->folder .
'/' . htmlspecialchars($image->name, ENT_COMPAT,
'UTF-8'), htmlspecialchars($image->name, ENT_COMPAT,
'UTF-8'), array('width' => $image->width,
'height' => $image->height)); ?>
<?php if ($link) : ?>
</a>
<?php endif; ?>
</div>
home/lmsyaran/public_html/j3/modules/mod_plan_display/tmpl/default.php000064400000002214151160476270022247
0ustar00<?php
/*----------------------------------------------------------------------------------|
 www.vdm.io  |----/
				fdsh 
/-------------------------------------------------------------------------------------------------------/

	@version		1.0.40
	@build			28th May, 2023
	@created		17th December, 2020
	@package		Reservation
	@subpackage		default.php
	@author			farhad shahbazi <http://farhad.com>	
	@copyright		Copyright (C) 2015. All Rights Reserved
	@license		GNU/GPL Version 2 or later -
http://www.gnu.org/licenses/gpl-2.0.html
  ____  _____  _____  __  __  __      __       ___  _____  __  __  ____ 
_____  _  _  ____  _  _  ____ 
 (_  _)(  _  )(  _  )(  \/  )(  )    /__\     / __)(  _  )(  \/  )(  _ \( 
_  )( \( )( ___)( \( )(_  _)
.-_)(   )(_)(  )(_)(  )    (  )(__  /(__)\   ( (__  )(_)(  )    (  )___/
)(_)(  )  (  )__)  )  (   )(  
\____) (_____)(_____)(_/\/\_)(____)(__)(__)   \___)(_____)(_/\/\_)(__) 
(_____)(_)\_)(____)(_)\_) (__) 

/------------------------------------------------------------------------------------------------------*/

// No direct access to this file
defined('_JEXEC') or die('Restricted access');


?>
<h1>No Tmpl set</h1>
home/lmsyaran/public_html/j3/modules/mod_feed/tmpl/default.php000064400000006363151160664200020474
0ustar00<?php
/**
 * @package     Joomla.Site
 * @subpackage  mod_feed
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;
?>

<?php
if (!empty($feed) && is_string($feed))
{
	echo $feed;
}
else
{
	$lang      = JFactory::getLanguage();
	$myrtl     = $params->get('rssrtl', 0);
	$direction = ' ';

	$isRtl = $lang->isRtl();

	if ($isRtl && $myrtl == 0)
	{
		$direction = ' redirect-rtl';
	}

	// Feed description
	elseif ($isRtl && $myrtl == 1)
	{
		$direction = ' redirect-ltr';
	}

	elseif ($isRtl && $myrtl == 2)
	{
		$direction = ' redirect-rtl';
	}

	elseif ($myrtl == 0)
	{
		$direction = ' redirect-ltr';
	}
	elseif ($myrtl == 1)
	{
		$direction = ' redirect-ltr';
	}
	elseif ($myrtl == 2)
	{
		$direction = ' redirect-rtl';
	}

	if ($feed !== false)
	{
		?>
		<div style="direction: <?php echo $rssrtl ? 'rtl'
:'ltr'; ?>; text-align: <?php echo $rssrtl ?
'right' :'left'; ?> !important"
class="feed<?php echo $moduleclass_sfx; ?>">
		<?php
		// Feed description
		if ($feed->title !== null &&
$params->get('rsstitle', 1))
		{
			?>
					<h2 class="<?php echo $direction; ?>">
						<a href="<?php echo htmlspecialchars($rssurl, ENT_COMPAT,
'UTF-8'); ?>" target="_blank">
						<?php echo $feed->title; ?></a>
					</h2>
			<?php
		}
		// Feed date
		if ($params->get('rssdate', 1)) : ?>
			<h3>
			<?php echo JHtml::_('date', $feed->publishedDate,
JText::_('DATE_FORMAT_LC3')); ?>
			</h3>
		<?php endif;
		// Feed description
		if ($params->get('rssdesc', 1))
		{
		?>
			<?php echo $feed->description; ?>
			<?php
		}
		// Feed image
		if ($feed->image && $params->get('rssimage', 1))
:
		?>
			<img src="<?php echo $feed->image->uri; ?>"
alt="<?php echo $feed->image->title; ?>"/>
		<?php endif; ?>


	<!-- Show items -->
	<?php if (!empty($feed))
	{ ?>
		<ul class="newsfeed<?php echo
$params->get('moduleclass_sfx'); ?>">
		<?php for ($i = 0, $max = min(count($feed),
$params->get('rssitems', 3)); $i < $max; $i++) { ?>
			<?php
				$uri  = $feed[$i]->uri || !$feed[$i]->isPermaLink ?
trim($feed[$i]->uri) : trim($feed[$i]->guid);
				$uri  = !$uri || stripos($uri, 'http') !== 0 ? $rssurl :
$uri;
				$text = $feed[$i]->content !== '' ?
trim($feed[$i]->content) : '';
			?>
				<li>
					<?php if (!empty($uri)) : ?>
						<span class="feed-link">
						<a href="<?php echo htmlspecialchars($uri, ENT_COMPAT,
'UTF-8'); ?>" target="_blank">
						<?php echo trim($feed[$i]->title); ?></a></span>
					<?php else : ?>
						<span class="feed-link"><?php echo
trim($feed[$i]->title); ?></span>
					<?php endif; ?>
					<?php if ($params->get('rssitemdate', 0)) : ?>
						<div class="feed-item-date">
							<?php echo JHtml::_('date',
$feed[$i]->publishedDate, JText::_('DATE_FORMAT_LC3')); ?>
						</div>
					<?php endif; ?>
					<?php if ($params->get('rssitemdesc', 1) &&
$text !== '') : ?>
						<div class="feed-item-description">
						<?php
							// Strip the images.
							$text = JFilterOutput::stripImages($text);
							$text = JHtml::_('string.truncate', $text,
$params->get('word_count', 0));
							echo str_replace('&apos;', "'", $text);
						?>
						</div>
					<?php endif; ?>
				</li>
		<?php } ?>
		</ul>
	<?php } ?>
	</div>
	<?php }
}
home/lmsyaran/public_html/j3/modules/mod_wrapper/tmpl/default.php000064400000001422151161447650021251
0ustar00<?php
/**
 * @package     Joomla.Site
 * @subpackage  mod_wrapper
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::_('script', 'com_wrapper/iframe-height.min.js',
array('version' => 'auto', 'relative'
=> true));
?>
<iframe <?php echo $load; ?>
	id="blockrandom-<?php echo $id; ?>"
	name="<?php echo $target; ?>"
	src="<?php echo $url; ?>"
	width="<?php echo $width; ?>"
	height="<?php echo $height; ?>"
	scrolling="<?php echo $scroll; ?>"
	frameborder="<?php echo $frameborder; ?>"
	title="<?php echo $ititle; ?>"
	class="wrapper<?php echo $moduleclass_sfx; ?>" >
	<?php echo JText::_('MOD_WRAPPER_NO_IFRAMES'); ?>
</iframe>
home/lmsyaran/public_html/j3/modules/mod_banners/tmpl/default.php000064400000010615151161524270021217
0ustar00<?php
/**
 * @package     Joomla.Site
 * @subpackage  mod_banners
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

JLoader::register('BannerHelper', JPATH_ROOT .
'/components/com_banners/helpers/banner.php');
?>
<div class="bannergroup<?php echo $moduleclass_sfx;
?>">
<?php if ($headerText) : ?>
	<?php echo $headerText; ?>
<?php endif; ?>

<?php foreach ($list as $item) : ?>
	<div class="banneritem">
		<?php $link =
JRoute::_('index.php?option=com_banners&task=click&id=' .
$item->id); ?>
		<?php if ($item->type == 1) : ?>
			<?php // Text based banners ?>
			<?php echo str_replace(array('{CLICKURL}',
'{NAME}'), array($link, $item->name),
$item->custombannercode); ?>
		<?php else : ?>
			<?php $imageurl = $item->params->get('imageurl');
?>
			<?php $width = $item->params->get('width'); ?>
			<?php $height = $item->params->get('height'); ?>
			<?php if (BannerHelper::isImage($imageurl)) : ?>
				<?php // Image based banner ?>
				<?php $baseurl = strpos($imageurl, 'http') === 0 ?
'' : JUri::base(); ?>
				<?php $alt = $item->params->get('alt'); ?>
				<?php $alt = $alt ?: $item->name; ?>
				<?php $alt = $alt ?: JText::_('MOD_BANNERS_BANNER'); ?>
				<?php if ($item->clickurl) : ?>
					<?php // Wrap the banner in a link ?>
					<?php $target = $params->get('target', 1); ?>
					<?php if ($target == 1) : ?>
						<?php // Open in a new window ?>
						<a
							href="<?php echo $link; ?>"
target="_blank" rel="noopener noreferrer"
							title="<?php echo htmlspecialchars($item->name,
ENT_QUOTES, 'UTF-8'); ?>">
							<img
								src="<?php echo $baseurl . $imageurl; ?>"
								alt="<?php echo htmlspecialchars($alt, ENT_QUOTES,
'UTF-8'); ?>"
								<?php if (!empty($width)) echo ' width="' .
$width . '"';?>
								<?php if (!empty($height)) echo ' height="' .
$height . '"';?>
							/>
						</a>
					<?php elseif ($target == 2) : ?>
						<?php // Open in a popup window ?>
						<a
							href="<?php echo $link; ?>"
onclick="window.open(this.href, '',
								'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=780,height=550');
								return false"
							title="<?php echo htmlspecialchars($item->name,
ENT_QUOTES, 'UTF-8'); ?>">
							<img
								src="<?php echo $baseurl . $imageurl; ?>"
								alt="<?php echo htmlspecialchars($alt, ENT_QUOTES,
'UTF-8'); ?>"
								<?php if (!empty($width)) echo ' width="' .
$width . '"';?>
								<?php if (!empty($height)) echo ' height="' .
$height . '"';?>
							/>
						</a>
					<?php else : ?>
						<?php // Open in parent window ?>
						<a
							href="<?php echo $link; ?>"
							title="<?php echo htmlspecialchars($item->name,
ENT_QUOTES, 'UTF-8'); ?>">
							<img
								src="<?php echo $baseurl . $imageurl; ?>"
								alt="<?php echo htmlspecialchars($alt, ENT_QUOTES,
'UTF-8'); ?>"
								<?php if (!empty($width)) echo ' width="' .
$width . '"';?>
								<?php if (!empty($height)) echo ' height="' .
$height . '"';?>
							/>
						</a>
					<?php endif; ?>
				<?php else : ?>
					<?php // Just display the image if no link specified ?>
					<img
						src="<?php echo $baseurl . $imageurl; ?>"
						alt="<?php echo htmlspecialchars($alt, ENT_QUOTES,
'UTF-8'); ?>"
						<?php if (!empty($width)) echo ' width="' . $width
. '"';?>
						<?php if (!empty($height)) echo ' height="' .
$height . '"';?>
					/>
				<?php endif; ?>
			<?php elseif (BannerHelper::isFlash($imageurl)) : ?>
				<object
					classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
					codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"
					<?php if (!empty($width)) echo ' width="' . $width .
'"';?>
					<?php if (!empty($height)) echo ' height="' .
$height . '"';?>
				>
					<param name="movie" value="<?php echo $imageurl;
?>" />
					<embed
						src="<?php echo $imageurl; ?>"
						loop="false"
						pluginspage="http://www.macromedia.com/go/get/flashplayer"
						type="application/x-shockwave-flash"
						<?php if (!empty($width)) echo ' width="' . $width
. '"';?>
						<?php if (!empty($height)) echo ' height="' .
$height . '"';?>
					/>
				</object>
			<?php endif; ?>
		<?php endif; ?>
		<div class="clr"></div>
	</div>
<?php endforeach; ?>

<?php if ($footerText) : ?>
	<div class="bannerfooter">
		<?php echo $footerText; ?>
	</div>
<?php endif; ?>
</div>
home/lmsyaran/public_html/j3/modules/mod_sppagebuilder/tmpl/default.php000064400000003700151161671660022420
0ustar00<?php

/**
 * @package SP Page Builder
 * @author JoomShaper http://www.joomshaper.com
 * @copyright Copyright (c) 2010 - 2023 JoomShaper
 * @license http://www.gnu.org/licenses/gpl-2.0.html GNU/GPLv2 or later
 */
//no direct access
defined('_JEXEC') or die('restricted access');

use Joomla\CMS\Factory;
use Joomla\CMS\HTML\HTMLHelper;
use Joomla\CMS\Component\ComponentHelper;

JLoader::register('SppagebuilderHelperSite', JPATH_SITE .
'/components/com_sppagebuilder/helpers/helper.php');
require_once JPATH_ROOT .
'/components/com_sppagebuilder/parser/addon-parser.php';

if (!class_exists('SpPageBuilderAddonHelper'))
{
	require_once JPATH_ROOT .
'/components/com_sppagebuilder/builder/classes/addon.php';
}
$doc = Factory::getDocument();
$input = Factory::getApplication()->input;
$component_params =
ComponentHelper::getParams('com_sppagebuilder');

if ($component_params->get('fontawesome', 1))
{
	SppagebuilderHelperSite::addStylesheet('font-awesome-5.min.css');
	SppagebuilderHelperSite::addStylesheet('font-awesome-v4-shims.css');
}

if (!$component_params->get('disableanimatecss', 0))
{
	SppagebuilderHelperSite::addStylesheet('animate.min.css');
}

if (!$component_params->get('disablecss', 0))
{
	SppagebuilderHelperSite::addStylesheet('sppagebuilder.css');
	SppagebuilderHelperSite::addContainerMaxWidth();
}

// load font assets form database
SppagebuilderHelperSite::loadAssets();

HTMLHelper::_('jquery.framework');
HTMLHelper::_('script',
'components/com_sppagebuilder/assets/js/jquery.parallax.js',
['version' => SppagebuilderHelperSite::getVersion(true)]);
HTMLHelper::_('script',
'components/com_sppagebuilder/assets/js/sppagebuilder.js',
['version' => SppagebuilderHelperSite::getVersion(true)],
['defer' => true]);



?>
<div class="mod-sppagebuilder <?php echo $moduleclass_sfx ?>
sp-page-builder" data-module_id="<?php echo $module->id;
?>">
	<div class="page-content">
		<?php echo AddonParser::viewAddons(json_decode($data), 0,
'module'); ?>
	</div>
</div>home/lmsyaran/public_html/j3/modules/mod_hikamarket/tmpl/default.php000064400000000752151162042540021704
0ustar00<?php
/**
 * @package    HikaMarket for Joomla!
 * @version    3.1.1
 * @author     Obsidev S.A.R.L.
 * @copyright  (C) 2011-2020 OBSIDEV. All rights reserved.
 * @license    GNU/GPLv3 http://www.gnu.org/licenses/gpl-3.0.html
 */
defined('_JEXEC') or die('Restricted access');
?><?php
if(!empty($html)) {
?>
<div id="hikashop_module_<?php echo $module->id;?>"
class="hikamarket_module <?php echo
@$module->params['moduleclass_sfx']; ?>"><?php
	echo $html;
?></div>
<?php
}
home/lmsyaran/public_html/j3/modules/mod_languages/tmpl/default.php000064400000011362151162150150021526
0ustar00<?php
/**
 * @package     Joomla.Site
 * @subpackage  mod_languages
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

JHtml::_('stylesheet', 'mod_languages/template.css',
array('version' => 'auto', 'relative'
=> true));

if ($params->get('dropdown', 0) &&
!$params->get('dropdownimage', 1))
{
	JHtml::_('formbehavior.chosen');
}

?>
<div class="mod-languages<?php echo $moduleclass_sfx;
?>">
<?php if ($headerText) : ?>
	<div class="pretext"><p><?php echo $headerText;
?></p></div>
<?php endif; ?>

<?php if ($params->get('dropdown', 0) &&
!$params->get('dropdownimage', 1)) : ?>
	<form name="lang" method="post"
action="<?php echo
htmlspecialchars_decode(htmlspecialchars(JUri::current(), ENT_COMPAT,
'UTF-8'), ENT_NOQUOTES); ?>">
	<select class="inputbox advancedSelect"
onchange="document.location.replace(this.value);" >
	<?php foreach ($list as $language) : ?>
		<option dir=<?php echo $language->rtl ?
'"rtl"' : '"ltr"'; ?>
value="<?php echo
htmlspecialchars_decode(htmlspecialchars($language->link, ENT_QUOTES,
'UTF-8'), ENT_NOQUOTES); ?>" <?php echo
$language->active ? 'selected="selected"' :
''; ?>>
		<?php echo $language->title_native; ?></option>
	<?php endforeach; ?>
	</select>
	</form>
<?php elseif ($params->get('dropdown', 0) &&
$params->get('dropdownimage', 1)) : ?>
	<div class="btn-group">
		<?php foreach ($list as $language) : ?>
			<?php if ($language->active) : ?>
				<a href="#" data-toggle="dropdown"
class="btn dropdown-toggle">
					<span class="caret"></span>
					<?php if ($language->image) : ?>
						&nbsp;<?php echo JHtml::_('image',
'mod_languages/' . $language->image . '.gif',
'', null, true); ?>
					<?php endif; ?>
					<?php echo $language->title_native; ?>
				</a>
			<?php endif; ?>
		<?php endforeach; ?>
		<ul class="<?php echo $params->get('lineheight',
0) ? 'lang-block' : 'lang-inline'; ?>
dropdown-menu" dir="<?php echo
JFactory::getLanguage()->isRtl() ? 'rtl' : 'ltr';
?>">
		<?php foreach ($list as $language) : ?>
			<?php if (!$language->active) : ?>
				<li>
				<a href="<?php echo
htmlspecialchars_decode(htmlspecialchars($language->link, ENT_QUOTES,
'UTF-8'), ENT_NOQUOTES); ?>">
					<?php if ($language->image) : ?>
						<?php echo JHtml::_('image', 'mod_languages/'
. $language->image . '.gif', '', null, true); ?>
					<?php endif; ?>
				<?php echo $language->title_native; ?>
				</a>
				</li>
			<?php elseif ($params->get('show_active', 1)) : ?>
				<?php $base = JUri::getInstance(); ?>
				<li class="lang-active">
				<a href="<?php echo
htmlspecialchars_decode(htmlspecialchars($base, ENT_QUOTES,
'UTF-8'), ENT_NOQUOTES); ?>">
					<?php if ($language->image) : ?>
						<?php echo JHtml::_('image', 'mod_languages/'
. $language->image . '.gif', '', null, true); ?>
					<?php endif; ?>
				<?php echo $language->title_native; ?>
				</a>
				</li>
			<?php endif; ?>
		<?php endforeach; ?>
		</ul>
	</div>
<?php else : ?>
	<ul class="<?php echo $params->get('inline', 1) ?
'lang-inline' : 'lang-block'; ?>"
dir="<?php echo JFactory::getLanguage()->isRtl() ?
'rtl' : 'ltr'; ?>">
	<?php foreach ($list as $language) : ?>
		<?php if (!$language->active) : ?>
			<li>
			<a href="<?php echo
htmlspecialchars_decode(htmlspecialchars($language->link, ENT_QUOTES,
'UTF-8'), ENT_NOQUOTES); ?>">
			<?php if ($params->get('image', 1)) : ?>
				<?php if ($language->image) : ?>
					<?php echo JHtml::_('image', 'mod_languages/' .
$language->image . '.gif', $language->title_native,
array('title' => $language->title_native), true); ?>
				<?php else : ?>
					<span class="label"><?php echo
strtoupper($language->sef); ?></span>
				<?php endif; ?>
			<?php else : ?>
				<?php echo $params->get('full_name', 1) ?
$language->title_native : strtoupper($language->sef); ?>
			<?php endif; ?>
			</a>
			</li>
		<?php elseif ($params->get('show_active', 1)) : ?>
			<?php $base = JUri::getInstance(); ?>
			<li class="lang-active">
			<a href="<?php echo
htmlspecialchars_decode(htmlspecialchars($base, ENT_QUOTES,
'UTF-8'), ENT_NOQUOTES); ?>">
			<?php if ($params->get('image', 1)) : ?>
				<?php if ($language->image) : ?>
					<?php echo JHtml::_('image', 'mod_languages/' .
$language->image . '.gif', $language->title_native,
array('title' => $language->title_native), true); ?>
				<?php else : ?>
					<span class="label"><?php echo
strtoupper($language->sef); ?></span>
				<?php endif; ?>
			<?php else : ?>
				<?php echo $params->get('full_name', 1) ?
$language->title_native : strtoupper($language->sef); ?>
			<?php endif; ?>
			</a>
			</li>
		<?php endif; ?>
	<?php endforeach; ?>
	</ul>
<?php endif; ?>

<?php if ($footerText) : ?>
	<div class="posttext"><p><?php echo $footerText;
?></p></div>
<?php endif; ?>
</div>
home/lmsyaran/public_html/j3/plugins/pcv/default/default.php000064400000004510151162321260020171
0ustar00<?php
/* @package Joomla
 * @copyright Copyright (C) Open Source Matters. All rights reserved.
 * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL, see LICENSE.php
 * @extension Phoca Extension
 * @copyright Copyright (C) Jan Pavelka www.phoca.cz
 * @license http://www.gnu.org/copyleft/gpl.html GNU/GPL
 */

defined('_JEXEC') or die;
jimport( 'joomla.plugin.plugin' );
jimport( 'joomla.filesystem.file');
jimport( 'joomla.html.parameter' );


JLoader::registerPrefix('Phocacart', JPATH_ADMINISTRATOR .
'/components/com_phocacart/libraries/phocacart');

class plgPCVDefault extends JPlugin
{
	function __construct(& $subject, $config) {
		parent :: __construct($subject, $config);
		$this->loadLanguage();
	}

	public function PCVonCategoriesBeforeHeader($context, &$categories,
&$params) {
		// return "test";
	}

	public function PCVonCategoryBeforeHeader($context, &$items,
&$params) {
	}

	public function PCVonItemsBeforeHeader($context, &$items,
&$params) {
	}

	public function PCVonCategoryItemAfterAddToCart($context, &$item,
&$params) {
	}

	public function PCVonItemsItemAfterAddToCart($context, &$item,
&$params) {
	}

	public function PCVonItemBeforeHeader($context, &$item, &$params)
{
	}

	public function PCVonItemAfterAddToCart($context, &$item,
&$params) {
	}

	public function PCVonItemBeforeEndPricePanel($context, &$item,
&$params) {
	}

	public function PCVonItemInsideTabPanel($context, &$item,
&$params) {

		$tab 			= array();
		
		// Example
		/*$tab['title']	= JText::_('Title');
		$tab['alias']	= 'title';
		if (isset($item[0]->features)) {
			$tab['content']	= JHTML::_('content.prepare',
$item[0]->features);
		}
		return $tab;*/
	}

	public function PCVonCheckoutAfterCart($context, $access, &$params,
$total) {
	}

	public function PCVonCheckoutAfterLogin($context, $access, &$params,
$total) {
	}

	public function PCVonCheckoutAfterAddress($context, $access, &$params,
$total) {
	}

	public function PCVonCheckoutAfterShipping($context, $access,
&$params, $total) {
	}

	public function PCVonCheckoutAfterPayment($context, $access, &$params,
$total) {
	}

	public function PCVonCheckoutAfterConfirm($context, $access, &$params,
$total) {
	}


	/*
	public function PCVonPopupAddToCartAfterHeader($context, $product,
$products, $total) {

	} */

}
?>
home/lmsyaran/public_html/j3/modules/mod_search/tmpl/default.php000064400000004244151162452110021027
0ustar00<?php
/**
 * @package     Joomla.Site
 * @subpackage  mod_search
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;

// Including fallback code for the placeholder attribute in the search
field.
JHtml::_('jquery.framework');
JHtml::_('script', 'system/html5fallback.js',
array('version' => 'auto', 'relative'
=> true, 'conditional' => 'lt IE 9'));

if ($width)
{
	$moduleclass_sfx .= ' ' . 'mod_search' .
$module->id;
	$css = 'div.mod_search' . $module->id . '
input[type="search"]{ width:auto; }';
	JFactory::getDocument()->addStyleDeclaration($css);
	$width = ' size="' . $width . '"';
}
else
{
	$width = '';
}
?>
<div class="search<?php echo $moduleclass_sfx; ?>">
	<form action="<?php echo JRoute::_('index.php');
?>" method="post" class="form-inline"
role="search">
		<?php
			$output = '<label for="mod-search-searchword' .
$module->id . '" class="element-invisible">'
. $label . '</label> ';
			$output .= '<input name="searchword"
id="mod-search-searchword' . $module->id . '"
maxlength="' . $maxlength . '"  class="inputbox
search-query input-medium" type="search"' . $width;
			$output .= ' placeholder="' . $text . '"
/>';

			if ($button) :
				if ($imagebutton) :
					$btn_output = ' <input type="image" alt="'
. $button_text . '" class="button" src="' .
$img . '"
onclick="this.form.searchword.focus();"/>';
				else :
					$btn_output = ' <button class="button btn
btn-primary"
onclick="this.form.searchword.focus();">' . $button_text
. '</button>';
				endif;

				switch ($button_pos) :
					case 'top' :
						$output = $btn_output . '<br />' . $output;
						break;

					case 'bottom' :
						$output .= '<br />' . $btn_output;
						break;

					case 'right' :
						$output .= $btn_output;
						break;

					case 'left' :
					default :
						$output = $btn_output . $output;
						break;
				endswitch;
			endif;

			echo $output;
		?>
		<input type="hidden" name="task"
value="search" />
		<input type="hidden" name="option"
value="com_search" />
		<input type="hidden" name="Itemid"
value="<?php echo $mitemid; ?>" />
	</form>
</div>
home/lmsyaran/public_html/j3/tmpl/default.php000064400000002216151163715610015260
0ustar00<?php
/*----------------------------------------------------------------------------------|
 www.vdm.io  |----/
				fdsh 
/-------------------------------------------------------------------------------------------------------/

	@version		1.0.36
	@build			28th March, 2023
	@created		17th December, 2020
	@package		Reservation
	@subpackage		default.php
	@author			farhad shahbazi <http://farhad.com>	
	@copyright		Copyright (C) 2015. All Rights Reserved
	@license		GNU/GPL Version 2 or later -
http://www.gnu.org/licenses/gpl-2.0.html
  ____  _____  _____  __  __  __      __       ___  _____  __  __  ____ 
_____  _  _  ____  _  _  ____ 
 (_  _)(  _  )(  _  )(  \/  )(  )    /__\     / __)(  _  )(  \/  )(  _ \( 
_  )( \( )( ___)( \( )(_  _)
.-_)(   )(_)(  )(_)(  )    (  )(__  /(__)\   ( (__  )(_)(  )    (  )___/
)(_)(  )  (  )__)  )  (   )(  
\____) (_____)(_____)(_/\/\_)(____)(__)(__)   \___)(_____)(_/\/\_)(__) 
(_____)(_)\_)(____)(_)\_) (__) 

/------------------------------------------------------------------------------------------------------*/

// No direct access to this file
defined('_JEXEC') or die('Restricted access');


?>
<h1>No Tmpl set</h1>
home/lmsyaran/public_html/j3/modules/mod_related_items/tmpl/default.php000064400000001121151164073760022406
0ustar00<?php
/**
 * @package     Joomla.Site
 * @subpackage  mod_related_items
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;
?>
<ul class="relateditems<?php echo $moduleclass_sfx; ?>
mod-list">
<?php foreach ($list as $item) : ?>
<li>
	<a href="<?php echo $item->route; ?>">
		<?php if ($showDate) echo JHtml::_('date',
$item->created, JText::_('DATE_FORMAT_LC4')) . ' -
'; ?>
		<?php echo $item->title; ?></a>
</li>
<?php endforeach; ?>
</ul>
home/lmsyaran/public_html/j3/modules/mod_breadcrumbs/tmpl/default.php000064400000004551151164261120022055
0ustar00<?php
/**
 * @package     Joomla.Site
 * @subpackage  mod_breadcrumbs
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;
?>
<div aria-label="<?php echo htmlspecialchars($module->title,
ENT_QUOTES, 'UTF-8'); ?>" role="navigation">
	<ul itemscope itemtype="https://schema.org/BreadcrumbList"
class="breadcrumb<?php echo $moduleclass_sfx; ?>">
		<?php if ($params->get('showHere', 1)) : ?>
			<li>
				<?php echo JText::_('MOD_BREADCRUMBS_HERE');
?>&#160;
			</li>
		<?php else : ?>
			<li class="active">
				<span class="divider icon-location"></span>
			</li>
		<?php endif; ?>

		<?php
		// Get rid of duplicated entries on trail including home page when using
multilanguage
		for ($i = 0; $i < $count; $i++)
		{
			if ($i === 1 && !empty($list[$i]->link) &&
!empty($list[$i - 1]->link) && $list[$i]->link === $list[$i -
1]->link)
			{
				unset($list[$i]);
			}
		}

		// Find last and penultimate items in breadcrumbs list
		end($list);
		$last_item_key   = key($list);
		prev($list);
		$penult_item_key = key($list);

		// Make a link if not the last item in the breadcrumbs
		$show_last = $params->get('showLast', 1);

		// Generate the trail
		foreach ($list as $key => $item) :
			if ($key !== $last_item_key) :
				// Render all but last item - along with separator ?>
				<li itemprop="itemListElement" itemscope
itemtype="https://schema.org/ListItem">
					<?php if (!empty($item->link)) : ?>
						<a itemprop="item" href="<?php echo
$item->link; ?>" class="pathway"><span
itemprop="name"><?php echo $item->name;
?></span></a>
					<?php else : ?>
						<span itemprop="name">
							<?php echo $item->name; ?>
						</span>
					<?php endif; ?>

					<?php if (($key !== $penult_item_key) || $show_last) : ?>
						<span class="divider">
							<?php echo $separator; ?>
						</span>
					<?php endif; ?>
					<meta itemprop="position" content="<?php echo
$key + 1; ?>">
				</li>
			<?php elseif ($show_last) :
				// Render last item if reqd. ?>
				<li itemprop="itemListElement" itemscope
itemtype="https://schema.org/ListItem"
class="active">
					<span itemprop="name">
						<?php echo $item->name; ?>
					</span>
					<meta itemprop="position" content="<?php echo
$key + 1; ?>">
				</li>
			<?php endif;
		endforeach; ?>
	</ul>
</div>
home/lmsyaran/public_html/j3/modules/mod_custom/tmpl/default.php000064400000000771151164261140021100
0ustar00<?php
/**
 * @package     Joomla.Site
 * @subpackage  mod_custom
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

defined('_JEXEC') or die;
?>


<div class="custom<?php echo $moduleclass_sfx; ?>"
<?php if ($params->get('backgroundimage')) : ?>
style="background-image:url(<?php echo
$params->get('backgroundimage'); ?>)"<?php endif;
?> >
	<?php echo $module->content; ?>
</div>