Spade
Mini Shell
| Directory:~$ /home/lmsyaran/public_html/joomla4/ |
| [Home] [System Details] [Kill Me] |
PK�8�[T�U�c
c
helper.phpnu�[���<?php
/**
* @package FrameworkOnFramework
* @subpackage utils
* @copyright Copyright (C) 2010-2016 Nicholas K. Dionysopoulos / Akeeba
Ltd. All rights reserved.
* @license GNU General Public License version 2 or later; see
LICENSE.txt
*/
defined('FOF_INCLUDED') or die;
/**
* A utility class to help you fetch component parameters without going
through JComponentHelper
*/
class FOFUtilsConfigHelper
{
/**
* Caches the component parameters without going through JComponentHelper.
This is necessary since JComponentHelper
* cannot be reset or updated once you update parameters in the database.
*
* @var array
*/
private static $componentParams = array();
/**
* Loads the component's configuration parameters so they can be
accessed by getComponentConfigurationValue
*
* @param string $component The component for loading the parameters
* @param bool $force Should I force-reload the configuration
information?
*/
public final static function loadComponentConfig($component, $force =
false)
{
if (isset(self::$componentParams[$component]) &&
!is_null(self::$componentParams[$component]) && !$force)
{
return;
}
$db = FOFPlatform::getInstance()->getDbo();
$sql = $db->getQuery(true)
->select($db->qn('params'))
->from($db->qn('#__extensions'))
->where($db->qn('type') . ' = ' .
$db->q('component'))
->where($db->qn('element') . " = " .
$db->q($component));
$db->setQuery($sql);
$config_ini = $db->loadResult();
// OK, Joomla! 1.6 stores values JSON-encoded so, what do I do? Right!
$config_ini = trim($config_ini);
if ((substr($config_ini, 0, 1) == '{') &&
substr($config_ini, -1) == '}')
{
$config_ini = json_decode($config_ini, true);
}
else
{
$config_ini = FOFUtilsIniParser::parse_ini_file($config_ini, false,
true);
}
if (is_null($config_ini) || empty($config_ini))
{
$config_ini = array();
}
self::$componentParams[$component] = $config_ini;
}
/**
* Retrieves the value of a component configuration parameter without
going through JComponentHelper
*
* @param string $component The component for loading the parameter
value
* @param string $key The key to retrieve
* @param mixed $default The default value to use in case the key
is missing
*
* @return mixed
*/
public final static function getComponentConfigurationValue($component,
$key, $default = null)
{
self::loadComponentConfig($component, false);
if (array_key_exists($key, self::$componentParams[$component]))
{
return self::$componentParams[$component][$key];
}
else
{
return $default;
}
}
}
PK���[s�_���domain/dispatcher.phpnu�[���<?php
/**
* @package FrameworkOnFramework
* @subpackage config
* @copyright Copyright (C) 2010-2016 Nicholas K. Dionysopoulos / Akeeba
Ltd. All rights reserved.
* @license GNU General Public License version 2, or later
*/
defined('FOF_INCLUDED') or die();
/**
* Configuration parser for the dispatcher-specific settings
*
* @package FrameworkOnFramework
* @since 2.1
*/
class FOFConfigDomainDispatcher implements FOFConfigDomainInterface
{
/**
* Parse the XML data, adding them to the $ret array
*
* @param SimpleXMLElement $xml The XML data of the component's
configuration area
* @param array &$ret The parsed data, in the form of a
hash array
*
* @return void
*/
public function parseDomain(SimpleXMLElement $xml, array &$ret)
{
// Initialise
$ret['dispatcher'] = array();
// Parse the dispatcher configuration
$dispatcherData = $xml->dispatcher;
// Sanity check
if (empty($dispatcherData))
{
return;
}
$options = $xml->xpath('dispatcher/option');
if (!empty($options))
{
foreach ($options as $option)
{
$key = (string) $option['name'];
$ret['dispatcher'][$key] = (string) $option;
}
}
}
/**
* Return a configuration variable
*
* @param string &$configuration Configuration variables (hashed
array)
* @param string $var The variable we want to fetch
* @param mixed $default Default value
*
* @return mixed The variable's value
*/
public function get(&$configuration, $var, $default)
{
if (isset($configuration['dispatcher'][$var]))
{
return $configuration['dispatcher'][$var];
}
else
{
return $default;
}
}
}
PK���[I{.�^^domain/interface.phpnu�[���<?php
/**
* @package FrameworkOnFramework
* @subpackage config
* @copyright Copyright (C) 2010-2016 Nicholas K. Dionysopoulos / Akeeba
Ltd. All rights reserved.
* @license GNU General Public License version 2, or later
* @note This file has been modified by the Joomla! Project and no
longer reflects the original work of its author.
*/
defined('FOF_INCLUDED') or die();
/**
* The Interface of an FOFConfigDomain class. The methods are used to parse
and
* provision sensible information to consumers. FOFConfigProvider acts as
an
* adapter to the FOFConfigDomain classes.
*
* @package FrameworkOnFramework
* @since 2.1
*/
interface FOFConfigDomainInterface
{
/**
* Parse the XML data, adding them to the $ret array
*
* @param SimpleXMLElement $xml The XML data of the component's
configuration area
* @param array &$ret The parsed data, in the form of a
hash array
*
* @return void
*/
public function parseDomain(SimpleXMLElement $xml, array &$ret);
/**
* Return a configuration variable
*
* @param string &$configuration Configuration variables (hashed
array)
* @param string $var The variable we want to fetch
* @param mixed $default Default value
*
* @return mixed The variable's value
*/
public function get(&$configuration, $var, $default);
}
PK���[Y��domain/tables.phpnu�[���<?php
/**
* @package FrameworkOnFramework
* @subpackage config
* @copyright Copyright (C) 2010-2016 Nicholas K. Dionysopoulos / Akeeba
Ltd. All rights reserved.
* @license GNU General Public License version 2, or later
*/
defined('FOF_INCLUDED') or die();
/**
* Configuration parser for the tables-specific settings
*
* @package FrameworkOnFramework
* @since 2.1
*/
class FOFConfigDomainTables implements FOFConfigDomainInterface
{
/**
* Parse the XML data, adding them to the $ret array
*
* @param SimpleXMLElement $xml The XML data of the component's
configuration area
* @param array &$ret The parsed data, in the form of a
hash array
*
* @return void
*/
public function parseDomain(SimpleXMLElement $xml, array &$ret)
{
// Initialise
$ret['tables'] = array();
// Parse table configuration
$tableData = $xml->xpath('table');
// Sanity check
if (empty($tableData))
{
return;
}
foreach ($tableData as $aTable)
{
$key = (string) $aTable['name'];
$ret['tables'][$key]['behaviors'] = (string)
$aTable->behaviors;
$ret['tables'][$key]['tablealias'] =
$aTable->xpath('tablealias');
$ret['tables'][$key]['fields'] = array();
$ret['tables'][$key]['relations'] = array();
$fieldData = $aTable->xpath('field');
if (!empty($fieldData))
{
foreach ($fieldData as $field)
{
$k = (string) $field['name'];
$ret['tables'][$key]['fields'][$k] = (string)
$field;
}
}
$relationsData = $aTable->xpath('relation');
if (!empty($relationsData))
{
foreach ($relationsData as $relationData)
{
$type = (string)$relationData['type'];
$itemName = (string)$relationData['name'];
if (empty($type) || empty($itemName))
{
continue;
}
$tableClass = (string)$relationData['tableClass'];
$localKey = (string)$relationData['localKey'];
$remoteKey = (string)$relationData['remoteKey'];
$ourPivotKey = (string)$relationData['ourPivotKey'];
$theirPivotKey = (string)$relationData['theirPivotKey'];
$pivotTable = (string)$relationData['pivotTable'];
$default = (string)$relationData['default'];
$default = !in_array($default, array('no',
'false', 0));
$relation = array(
'type' => $type,
'itemName' => $itemName,
'tableClass' => empty($tableClass) ? null : $tableClass,
'localKey' => empty($localKey) ? null : $localKey,
'remoteKey' => empty($remoteKey) ? null : $remoteKey,
'default' => $default,
);
if (!empty($ourPivotKey) || !empty($theirPivotKey) ||
!empty($pivotTable))
{
$relation['ourPivotKey'] = empty($ourPivotKey) ? null :
$ourPivotKey;
$relation['theirPivotKey'] = empty($theirPivotKey) ? null :
$theirPivotKey;
$relation['pivotTable'] = empty($pivotTable) ? null :
$pivotTable;
}
$ret['tables'][$key]['relations'][] = $relation;
}
}
}
}
/**
* Return a configuration variable
*
* @param string &$configuration Configuration variables (hashed
array)
* @param string $var The variable we want to fetch
* @param mixed $default Default value
*
* @return mixed The variable's value
*/
public function get(&$configuration, $var, $default)
{
$parts = explode('.', $var);
$view = $parts[0];
$method = 'get' . ucfirst($parts[1]);
if (!method_exists($this, $method))
{
return $default;
}
array_shift($parts);
array_shift($parts);
$ret = $this->$method($view, $configuration, $parts, $default);
return $ret;
}
/**
* Internal method to return the magic field mapping
*
* @param string $table The table for which we will be
fetching a field map
* @param array &$configuration The configuration parameters hash
array
* @param array $params Extra options; key 0 defines the
table we want to fetch
* @param string $default Default magic field mapping; empty if
not defined
*
* @return array Field map
*/
protected function getField($table, &$configuration, $params, $default
= '')
{
$fieldmap = array();
if (isset($configuration['tables']['*']) &&
isset($configuration['tables']['*']['fields']))
{
$fieldmap =
$configuration['tables']['*']['fields'];
}
if (isset($configuration['tables'][$table]) &&
isset($configuration['tables'][$table]['fields']))
{
$fieldmap = array_merge($fieldmap,
$configuration['tables'][$table]['fields']);
}
$map = $default;
if (empty($params[0]))
{
$map = $fieldmap;
}
elseif (isset($fieldmap[$params[0]]))
{
$map = $fieldmap[$params[0]];
}
return $map;
}
/**
* Internal method to get table alias
*
* @param string $table The table for which we will be
fetching table alias
* @param array &$configuration The configuration parameters hash
array
* @param array $params Extra options; key 0 defines the
table we want to fetch
* @param string $default Default table alias
*
* @return string Table alias
*/
protected function getTablealias($table, &$configuration, $params,
$default = '')
{
$tablealias = $default;
if (isset($configuration['tables']['*'])
&&
isset($configuration['tables']['*']['tablealias'])
&&
isset($configuration['tables']['*']['tablealias'][0]))
{
$tablealias = (string)
$configuration['tables']['*']['tablealias'][0];
}
if (isset($configuration['tables'][$table])
&&
isset($configuration['tables'][$table]['tablealias'])
&&
isset($configuration['tables'][$table]['tablealias'][0]))
{
$tablealias = (string)
$configuration['tables'][$table]['tablealias'][0];
}
return $tablealias;
}
/**
* Internal method to get table behaviours
*
* @param string $table The table for which we will be
fetching table alias
* @param array &$configuration The configuration parameters hash
array
* @param array $params Extra options; key 0 defines the
table we want to fetch
* @param string $default Default table alias
*
* @return string Table behaviours
*/
protected function getBehaviors($table, &$configuration, $params,
$default = '')
{
$behaviors = $default;
if (isset($configuration['tables']['*'])
&&
isset($configuration['tables']['*']['behaviors']))
{
$behaviors = (string)
$configuration['tables']['*']['behaviors'];
}
if (isset($configuration['tables'][$table])
&&
isset($configuration['tables'][$table]['behaviors']))
{
$behaviors = (string)
$configuration['tables'][$table]['behaviors'];
}
return $behaviors;
}
/**
* Internal method to get table relations
*
* @param string $table The table for which we will be
fetching table alias
* @param array &$configuration The configuration parameters hash
array
* @param array $params Extra options; key 0 defines the
table we want to fetch
* @param string $default Default table alias
*
* @return array Table relations
*/
protected function getRelations($table, &$configuration, $params,
$default = '')
{
$relations = $default;
if (isset($configuration['tables']['*'])
&&
isset($configuration['tables']['*']['relations']))
{
$relations =
$configuration['tables']['*']['relations'];
}
if (isset($configuration['tables'][$table])
&&
isset($configuration['tables'][$table]['relations']))
{
$relations =
$configuration['tables'][$table]['relations'];
}
return $relations;
}
}
PK���[�H_� � domain/views.phpnu�[���<?php
/**
* @package FrameworkOnFramework
* @subpackage config
* @copyright Copyright (C) 2010-2016 Nicholas K. Dionysopoulos / Akeeba
Ltd. All rights reserved.
* @license GNU General Public License version 2, or later
*/
defined('FOF_INCLUDED') or die();
/**
* Configuration parser for the view-specific settings
*
* @package FrameworkOnFramework
* @since 2.1
*/
class FOFConfigDomainViews implements FOFConfigDomainInterface
{
/**
* Parse the XML data, adding them to the $ret array
*
* @param SimpleXMLElement $xml The XML data of the component's
configuration area
* @param array &$ret The parsed data, in the form of a
hash array
*
* @return void
*/
public function parseDomain(SimpleXMLElement $xml, array &$ret)
{
// Initialise
$ret['views'] = array();
// Parse view configuration
$viewData = $xml->xpath('view');
// Sanity check
if (empty($viewData))
{
return;
}
foreach ($viewData as $aView)
{
$key = (string) $aView['name'];
// Parse ACL options
$ret['views'][$key]['acl'] = array();
$aclData = $aView->xpath('acl/task');
if (!empty($aclData))
{
foreach ($aclData as $acl)
{
$k = (string) $acl['name'];
$ret['views'][$key]['acl'][$k] = (string) $acl;
}
}
// Parse taskmap
$ret['views'][$key]['taskmap'] = array();
$taskmapData = $aView->xpath('taskmap/task');
if (!empty($taskmapData))
{
foreach ($taskmapData as $map)
{
$k = (string) $map['name'];
$ret['views'][$key]['taskmap'][$k] = (string)
$map;
}
}
// Parse controller configuration
$ret['views'][$key]['config'] = array();
$optionData = $aView->xpath('config/option');
if (!empty($optionData))
{
foreach ($optionData as $option)
{
$k = (string) $option['name'];
$ret['views'][$key]['config'][$k] = (string)
$option;
}
}
// Parse the toolbar
$ret['views'][$key]['toolbar'] = array();
$toolBars = $aView->xpath('toolbar');
if (!empty($toolBars))
{
foreach ($toolBars as $toolBar)
{
$taskName = isset($toolBar['task']) ? (string)
$toolBar['task'] : '*';
// If a toolbar title is specified, create a title element.
if (isset($toolBar['title']))
{
$ret['views'][$key]['toolbar'][$taskName]['title']
= array(
'value' => (string) $toolBar['title']
);
}
// Parse the toolbar buttons data
$toolbarData = $toolBar->xpath('button');
if (!empty($toolbarData))
{
foreach ($toolbarData as $button)
{
$k = (string) $button['type'];
$ret['views'][$key]['toolbar'][$taskName][$k] =
current($button->attributes());
$ret['views'][$key]['toolbar'][$taskName][$k]['value']
= (string) $button;
}
}
}
}
}
}
/**
* Return a configuration variable
*
* @param string &$configuration Configuration variables (hashed
array)
* @param string $var The variable we want to fetch
* @param mixed $default Default value
*
* @return mixed The variable's value
*/
public function get(&$configuration, $var, $default)
{
$parts = explode('.', $var);
$view = $parts[0];
$method = 'get' . ucfirst($parts[1]);
if (!method_exists($this, $method))
{
return $default;
}
array_shift($parts);
array_shift($parts);
$ret = $this->$method($view, $configuration, $parts, $default);
return $ret;
}
/**
* Internal function to return the task map for a view
*
* @param string $view The view for which we will be
fetching a task map
* @param array &$configuration The configuration parameters hash
array
* @param array $params Extra options (not used)
* @param array $default ßDefault task map; empty array if
not provided
*
* @return array The task map as a hash array in the format task =>
method
*/
protected function getTaskmap($view, &$configuration, $params,
$default = array())
{
$taskmap = array();
if (isset($configuration['views']['*']) &&
isset($configuration['views']['*']['taskmap']))
{
$taskmap =
$configuration['views']['*']['taskmap'];
}
if (isset($configuration['views'][$view]) &&
isset($configuration['views'][$view]['taskmap']))
{
$taskmap = array_merge($taskmap,
$configuration['views'][$view]['taskmap']);
}
if (empty($taskmap))
{
return $default;
}
return $taskmap;
}
/**
* Internal method to return the ACL mapping (privilege required to access
* a specific task) for the given view's tasks
*
* @param string $view The view for which we will be
fetching a task map
* @param array &$configuration The configuration parameters hash
array
* @param array $params Extra options; key 0 defines the task
we want to fetch
* @param string $default Default ACL option; empty (no ACL
check) if not defined
*
* @return string The privilege required to access this view
*/
protected function getAcl($view, &$configuration, $params, $default =
'')
{
$aclmap = array();
if (isset($configuration['views']['*']) &&
isset($configuration['views']['*']['acl']))
{
$aclmap =
$configuration['views']['*']['acl'];
}
if (isset($configuration['views'][$view]) &&
isset($configuration['views'][$view]['acl']))
{
$aclmap = array_merge($aclmap,
$configuration['views'][$view]['acl']);
}
$acl = $default;
if (isset($aclmap['*']))
{
$acl = $aclmap['*'];
}
if (isset($aclmap[$params[0]]))
{
$acl = $aclmap[$params[0]];
}
return $acl;
}
/**
* Internal method to return the a configuration option for the view.
These
* are equivalent to $config array options passed to the Controller
*
* @param string $view The view for which we will be
fetching a task map
* @param array &$configuration The configuration parameters hash
array
* @param array $params Extra options; key 0 defines the
option variable we want to fetch
* @param mixed $default Default option; null if not defined
*
* @return string The setting for the requested option
*/
protected function getConfig($view, &$configuration, $params, $default
= null)
{
$ret = $default;
if (isset($configuration['views']['*'])
&&
isset($configuration['views']['*']['config'])
&&
isset($configuration['views']['*']['config'][$params[0]]))
{
$ret =
$configuration['views']['*']['config'][$params[0]];
}
if (isset($configuration['views'][$view])
&&
isset($configuration['views'][$view]['config'])
&&
isset($configuration['views'][$view]['config'][$params[0]]))
{
$ret =
$configuration['views'][$view]['config'][$params[0]];
}
return $ret;
}
/**
* Internal method to return the toolbar infos.
*
* @param string $view The view for which we will be
fetching buttons
* @param array &$configuration The configuration parameters hash
array
* @param array $params Extra options
* @param string $default Default option
*
* @return string The toolbar data for this view
*/
protected function getToolbar($view, &$configuration, $params,
$default = '')
{
$toolbar = array();
if (isset($configuration['views']['*'])
&&
isset($configuration['views']['*']['toolbar'])
&&
isset($configuration['views']['*']['toolbar']['*']))
{
$toolbar =
$configuration['views']['*']['toolbar']['*'];
}
if (isset($configuration['views']['*'])
&&
isset($configuration['views']['*']['toolbar'])
&&
isset($configuration['views']['*']['toolbar'][$params[0]]))
{
$toolbar = array_merge($toolbar,
$configuration['views']['*']['toolbar'][$params[0]]);
}
if (isset($configuration['views'][$view])
&&
isset($configuration['views'][$view]['toolbar'])
&&
isset($configuration['views'][$view]['toolbar']['*']))
{
$toolbar = array_merge($toolbar,
$configuration['views'][$view]['toolbar']['*']);
}
if (isset($configuration['views'][$view])
&&
isset($configuration['views'][$view]['toolbar'])
&&
isset($configuration['views'][$view]['toolbar'][$params[0]]))
{
$toolbar = array_merge($toolbar,
$configuration['views'][$view]['toolbar'][$params[0]]);
}
if (empty($toolbar))
{
return $default;
}
return $toolbar;
}
}
PK���[W�5�provider.phpnu�[���<?php
/**
* @package FrameworkOnFramework
* @subpackage config
* @copyright Copyright (C) 2010-2016 Nicholas K. Dionysopoulos / Akeeba
Ltd. All rights reserved.
* @license GNU General Public License version 2, or later
* @note This file has been modified by the Joomla! Project and no
longer reflects the original work of its author.
*/
defined('FOF_INCLUDED') or die();
/**
* Reads and parses the fof.xml file in the back-end of a FOF-powered
component,
* provisioning the data to the rest of the FOF framework
*
* @package FrameworkOnFramework
* @since 2.1
*/
class FOFConfigProvider
{
/**
* Cache of FOF components' configuration variables
*
* @var array
*/
public static $configurations = array();
/**
* Parses the configuration of the specified component
*
* @param string $component The name of the component, e.g.
com_foobar
* @param boolean $force Force reload even if it's already
parsed?
*
* @return void
*/
public function parseComponent($component, $force = false)
{
if (!$force && isset(self::$configurations[$component]))
{
return;
}
if (FOFPlatform::getInstance()->isCli())
{
$order = array('cli', 'backend');
}
elseif (FOFPlatform::getInstance()->isBackend())
{
$order = array('backend');
}
else
{
$order = array('frontend');
}
$order[] = 'common';
$order = array_reverse($order);
self::$configurations[$component] = array();
foreach ($order as $area)
{
$config = $this->parseComponentArea($component, $area);
self::$configurations[$component] =
array_merge_recursive(self::$configurations[$component], $config);
}
}
/**
* Returns the value of a variable. Variables use a dot notation, e.g.
* view.config.whatever where the first part is the domain, the rest of
the
* parts specify the path to the variable.
*
* @param string $variable The variable name
* @param mixed $default The default value, or null if not specified
*
* @return mixed The value of the variable
*/
public function get($variable, $default = null)
{
static $domains = null;
if (is_null($domains))
{
$domains = $this->getDomains();
}
list($component, $domain, $var) = explode('.', $variable, 3);
if (!isset(self::$configurations[$component]))
{
$this->parseComponent($component);
}
if (!in_array($domain, $domains))
{
return $default;
}
$class = 'FOFConfigDomain' . ucfirst($domain);
$o = new $class;
return $o->get(self::$configurations[$component], $var, $default);
}
/**
* Parses the configuration options of a specific component area
*
* @param string $component Which component's configuration to
parse
* @param string $area Which area to parse (frontend, backend,
cli)
*
* @return array A hash array with the configuration data
*/
protected function parseComponentArea($component, $area)
{
// Initialise the return array
$ret = array();
// Get the folders of the component
$componentPaths =
FOFPlatform::getInstance()->getComponentBaseDirs($component);
$filesystem =
FOFPlatform::getInstance()->getIntegrationObject('filesystem');
// Check that the path exists
$path = $componentPaths['admin'];
$path = $filesystem->pathCheck($path);
if (!$filesystem->folderExists($path))
{
return $ret;
}
// Read the filename if it exists
$filename = $path . '/fof.xml';
if (!$filesystem->fileExists($filename))
{
return $ret;
}
$data = file_get_contents($filename);
// Load the XML data in a SimpleXMLElement object
$xml = simplexml_load_string($data);
if (!($xml instanceof SimpleXMLElement))
{
return $ret;
}
// Get this area's data
$areaData = $xml->xpath('//' . $area);
if (empty($areaData))
{
return $ret;
}
$xml = array_shift($areaData);
// Parse individual configuration domains
$domains = $this->getDomains();
foreach ($domains as $dom)
{
$class = 'FOFConfigDomain' . ucfirst($dom);
if (class_exists($class, true))
{
$o = new $class;
$o->parseDomain($xml, $ret);
}
}
// Finally, return the result
return $ret;
}
/**
* Gets a list of the available configuration domain adapters
*
* @return array A list of the available domains
*/
protected function getDomains()
{
static $domains = array();
if (empty($domains))
{
$filesystem =
FOFPlatform::getInstance()->getIntegrationObject('filesystem');
$files = $filesystem->folderFiles(__DIR__ . '/domain',
'.php');
if (!empty($files))
{
foreach ($files as $file)
{
$domain = basename($file, '.php');
if ($domain == 'interface')
{
continue;
}
$domain = preg_replace('/[^A-Za-z0-9]/', '',
$domain);
$domains[] = $domain;
}
$domains = array_unique($domains);
}
}
return $domains;
}
}
PK���[��qjjdefault/particles/logo.yamlnu�[���enabled:
'1'
url: ''
image: 'gantry-assets://images/gantry5-logo.png'
text: 'Gantry 5'
class: gantry-logo
PK���[�M� ��
10/index.yamlnu�[���name:
'10'
timestamp: 1678864370
version: 7
preset:
image: 'gantry-admin://images/layouts/home.png'
name: lmsyaran-home
timestamp: 1624190962
positions:
header: 'Module Position'
Offcanvas-Section: 'Offcanvas Section'
navigation: 'Module Position'
main: 'Module Position'
usersign: 'Module Position'
footer: Footer
sections:
header: Header
navigation: Navigation
showcase: Showcase
feature: Feature
subfeature: Subfeature
bottomFooter: BottomFooter
main: Main
footer: Footer
offcanvas: Offcanvas
particles:
position:
position-position-1956: 'Module Position'
position-position-5028: 'Offcanvas Section'
position-position-2289: 'Module Position'
position-position-1124: 'Module Position'
position-position-5151: 'Module Position'
position-position-6294: Footer
spacer:
spacer-2908: Spacer
spacer-3985: Spacer
logo:
logo-6987: 'Logo / Image'
menu:
menu-2114: Menu
menu-9878: Menu
menu-7921: Menu
menu-4764: Menu
messages:
system-messages-9829: 'System Messages'
content:
system-content-1905: 'Page Content'
module:
position-module-5746: 'module cart test'
position-module-4725: 'لوگو و پیام رسان ها'
menu-title:
menu-title-8730: 'خدمات ما'
menu-title-5107: صفحات
custom:
custom-8780: 'تمام حقوق مادی و معنوی'
custom-1674: 'رفتن به بالا'
mobile-menu:
mobile-menu-3249: Mobile-menu
inherit:
default:
navigation: navigation
position-position-2289: position-position-1248
subfeature: subfeature
menu-7921: menu-1023
footer: footer
position-position-6294: position-footer
position-module-4725: position-module-1501
menu-title-8730: menu-title-8759
menu-title-5107: menu-title-7262
menu-4764: menu-3152
bottomFooter: bottomFooter
custom-8780: custom-1536
custom-1674: custom-1014
offcanvas: offcanvas
mobile-menu-3249: mobile-menu-3709
PK���[>���?
?
10/layout.yamlnu�[���version: 2
preset:
image: 'gantry-admin://images/layouts/home.png'
name: lmsyaran-home
timestamp: 1624190962
layout:
/header/:
-
- position-position-1956
-
- 'spacer-2908 5'
- 'logo-6987 10'
- 'menu-2114 64'
- 'menu-9878 16'
- 'spacer-3985 5'
-
- position-position-5028
navigation: { }
/showcase/: { }
/feature/: { }
/main/:
-
- position-position-1124
-
- system-messages-9829
-
- system-content-1905
-
- position-position-5151
-
- position-module-5746
subfeature: { }
footer: { }
bottomFooter: { }
offcanvas: { }
structure:
header:
attributes:
boxed: '3'
class: ''
variations: ''
navigation:
type: section
inherit:
outline: default
include:
- attributes
- block
- children
showcase:
type: section
attributes:
boxed: ''
feature:
type: section
attributes:
boxed: ''
main:
attributes:
boxed: ''
subfeature:
type: section
inherit:
outline: default
include:
- attributes
- children
footer:
inherit:
outline: default
include:
- attributes
- block
- children
bottomFooter:
type: section
inherit:
outline: default
include:
- attributes
- children
offcanvas:
inherit:
outline: default
include:
- attributes
- block
- children
content:
position-position-1956:
title: 'Module Position'
attributes:
key: header
logo-6987:
title: 'Logo / Image'
attributes:
image: 'gantry-media://logo/reservation-logo-lmskaran.png'
text: 'Reservation Lmskaran'
block:
class: 'logo-reservation flex-auto center'
variations: 'nopaddingall nomarginall'
menu-2114:
block:
class: visible-large
variations: 'nomarginall nopaddingall'
menu-9878:
attributes:
menu: chatters-vertical-menu
block:
class: 'flex-auto center chattersa-loging-reg flex-end'
variations: nopaddingall
position-position-5028:
title: 'Offcanvas Section'
attributes:
key: Offcanvas-Section
block:
variations: 'nopaddingall nomarginall'
position-position-1124:
title: 'Module Position'
attributes:
key: main
position-position-5151:
title: 'Module Position'
attributes:
key: usersign
position-module-5746:
title: 'module cart test'
attributes:
enabled: 0
module_id: '163'
key: module-cart-test
PK���[3M���
11/index.yamlnu�[���name: 11
timestamp: 1629188091
version: 7
preset:
image: 'gantry-admin://images/layouts/home.png'
name: lmsyaran-home
timestamp: 1624190962
positions:
navigation: 'Module Position'
main: 'Module Position'
consultants-gantry: consultants
chatters-gantry: 'Module Position'
header: 'Module Position'
Offcanvas-Section: 'Offcanvas Section'
footer: Footer
sections:
header: Header
navigation: Navigation
showcase: Showcase
feature: Feature
subfeature: Subfeature
bottomFooter: BottomFooter
main: Main
footer: Footer
offcanvas: Offcanvas
particles:
position:
position-position-1248: 'Module Position'
position-position-5358: 'Module Position'
position-position-3865: consultants
position-position-9385: 'Module Position'
position-position-8015: 'Module Position'
position-position-5937: 'Offcanvas Section'
position-position-3967: Footer
messages:
system-messages-7217: 'System Messages'
module:
position-module-3758: 'Caption Hover Effect'
position-module-6925: 'لوگو و پیام رسان ها'
spacer:
spacer-2930: Spacer
spacer-3093: Spacer
logo:
logo-4931: 'Logo / Image'
menu:
menu-3883: Menu
menu-8647: Menu
menu-6933: Menu
menu-4909: Menu
menu-title:
menu-title-8046: 'خدمات ما'
menu-title-9360: صفحات
custom:
custom-2094: 'تمام حقوق مادی و معنوی'
custom-2296: 'رفتن به بالا'
mobile-menu:
mobile-menu-8874: Mobile-menu
inherit:
default:
header: header
subfeature: subfeature
footer: footer
bottomFooter: bottomFooter
offcanvas: offcanvas
position-position-8015: position-position-1956
spacer-2930: spacer-2908
logo-4931: logo-6987
menu-3883: menu-2114
menu-8647: menu-9878
spacer-3093: spacer-3985
position-position-5937: position-position-5028
menu-6933: menu-1023
position-position-3967: position-footer
position-module-6925: position-module-1501
menu-title-8046: menu-title-8759
menu-title-9360: menu-title-7262
menu-4909: menu-3152
custom-2094: custom-1536
custom-2296: custom-1014
mobile-menu-8874: mobile-menu-3709
PK���[
0��;;11/layout.yamlnu�[���version: 2
preset:
image: 'gantry-admin://images/layouts/home.png'
name: lmsyaran-home
timestamp: 1624190962
layout:
header: { }
/navigation/:
-
- position-position-1248
/showcase/: { }
/feature/: { }
/main/:
-
- system-messages-7217
-
- position-position-5358
-
- position-position-3865
-
- position-module-3758
-
- position-position-9385
subfeature: { }
footer: { }
bottomFooter: { }
offcanvas: { }
structure:
header:
inherit:
outline: default
include:
- attributes
- children
navigation:
type: section
attributes:
boxed: ''
showcase:
type: section
attributes:
boxed: ''
feature:
type: section
attributes:
boxed: ''
main:
attributes:
boxed: ''
subfeature:
type: section
inherit:
outline: default
include:
- attributes
- children
footer:
inherit:
outline: default
include:
- attributes
- children
bottomFooter:
type: section
inherit:
outline: default
include:
- attributes
- children
offcanvas:
inherit:
outline: default
include:
- attributes
- children
content:
position-position-1248:
title: 'Module Position'
attributes:
key: navigation
block:
variations: 'nopaddingall nomarginall'
position-position-5358:
title: 'Module Position'
attributes:
key: main
position-position-3865:
title: consultants
attributes:
key: consultants-gantry
position-module-3758:
title: 'Caption Hover Effect'
attributes:
module_id: '156'
key: caption-hover-effect
position-position-9385:
title: 'Module Position'
attributes:
key: chatters-gantry
PK���[I��5qq11/page/assets.yamlnu�[���css:
-
location: ''
inline: "#mahdi{\ncolor:red;\n}"
extra: { }
priority: '0'
name: style
PK���[�[��
12/index.yamlnu�[���name: 12
timestamp: 1629188091
version: 7
preset:
image: 'gantry-admin://images/layouts/default.png'
name: lmsyaran-default
timestamp: 1624189064
positions: { }
sections:
header: Header
navigation: Navigation
bottomFooter: BottomFooter
main: Main
footer: Footer
offcanvas: Offcanvas
particles:
menu:
menu-2114: Menu
mobile-menu:
mobile-menu-2283: Mobile-menu
inherit:
default:
offcanvas: offcanvas
mobile-menu-2283: mobile-menu-3709
PK���[�K�T��12/layout.yamlnu�[���version: 2
preset:
image: 'gantry-admin://images/layouts/default.png'
name: lmsyaran-default
timestamp: 1624189064
layout:
/header/:
-
- menu-2114
/navigation/: { }
/main/: { }
/footer/: { }
/bottomFooter/: { }
offcanvas: { }
structure:
header:
attributes:
boxed: '3'
class: ''
variations: ''
navigation:
type: section
attributes:
boxed: ''
class: ''
variations: ''
main:
attributes:
boxed: ''
class: ''
variations: ''
footer:
attributes:
boxed: ''
class: ''
variations: ''
bottomFooter:
type: section
attributes:
boxed: ''
class: ''
variations: ''
offcanvas:
inherit:
outline: default
include:
- attributes
- block
- children
content:
menu-2114:
block:
class: lmskaran_menu_effect
PK���[��a� � 12/page/assets.yamlnu�[���css:
-
location: ''
inline: ".lmskaran_menu_effect .g-main-nav {\n position:
relative;\n height: 40px;\n margin: 0 0 0
0;\n}\n\n.lmskaran_menu_effect .g-toplevel {\n margin: 0;\n padding:
0;\n display: block;\n}\n\n.lmskaran_menu_effect .g-toplevel li {\n
float: left;\n}\n\n.lmskaran_menu_effect .g-toplevel li a
{\n}\n\n.lmskaran_menu_effect .g-toplevel li.active a {\n color:
#CC0000;\n}\n\n.lmskaran_menu_effect .g-toplevel li.slide-line {\n
display: block;\n padding: 0;\n margin: 0;\n background: none
#CC0000;\n position: absolute;\n top: 0;\n width: 43px;\n
height: 6px;\n left: 20px;\n top: 30px;\n z-index: 0;\n}"
extra: { }
priority: '0'
name: 'lavalamp style'
javascript:
-
location:
'https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js'
inline: "// adds sliding underline HTML\nvar jQuery = $;\nvar $ =
jQuery;\n$('.lmskaran_menu_effect
.g-toplevel').append('<li
class=\"slide-line\"></li>');\nconsole.log('mahdi')\n
// animate slide-line on click\n$(document).on('mouseenter',
'.lmskaran_menu_effect .g-toplevel li a', function() {\n\n var
$this = $(this),\n // get offset of hovered this\n offset =
$this.offset(),\n //find the offset of the wrapping div \n
offsetBody = $('.lmskaran_menu_effect .g-main-nav').offset();\n\n
// GSAP animate to clicked menu item\n
TweenMax.to($('.lmskaran_menu_effect .g-toplevel .slide-line'),
0.5, {\n css: {\n width: $this.outerWidth() +
'px',\n left: (offset.left - offsetBody.left) +
'px'\n },\n overwrite: \"all\",\n
// easing for overshoot\n ease: Back.easeOut\n
});\n\n}).on('mouseleave', '.lmskaran_menu_effect
.g-toplevel li', function() {\n\n var $this = $(this),\n //
get the active menu selector\n $active =
$this.parent().find(\"li.active\"),\n // get offset of
active menu item\n offset = $active.offset(),\n //find the
offset of the wrapping div \n offsetBody =
$('.lmskaran_menu_effect .g-main-nav').offset();\n\n // GSAP
animate to clicked menu item\n TweenMax.to($('.lmskaran_menu_effect
.g-toplevel .slide-line'), 0.5, {\n css: {\n width:
$active.outerWidth() + 'px',\n left: (offset.left -
offsetBody.left) + 'px'\n },\n overwrite:
\"all\",\n ease: Power4.easeInOut\n });\n});"
in_footer: '0'
extra: { }
priority: '0'
name: lavalamp
PK���[
��jj12/page/body.yamlnu�[���body_bottom: '<script
src="https://cdnjs.cloudflare.com/ajax/libs/gsap/1.11.4/TweenMax.min.js"></script>'
PK���[L� s��12/page/head.yamlnu�[���atoms:
-
id: assets-1969
type: assets
title: 'Custom CSS / JS'
attributes:
enabled: '1'
css:
- { location: 'gantry-assets://css/bootstrapRtl.min.css',
inline: '', extra: { }, priority: '0', name:
bootstrapRtl45 }
javascript:
- { location: '', inline: '', in_footer:
'0', extra: { }, priority: '0', name: 'lavelamp
menu jquery and js' }
PK���[�m}^< <
13/index.yamlnu�[���name: 13
timestamp: 1629188091
version: 7
preset:
image: 'gantry-admin://images/layouts/home.png'
name: lmsyaran-consulting
timestamp: 1628408535
positions:
main: 'Module Position'
usersign: 'Module Position'
header: 'Module Position'
Offcanvas-Section: 'Offcanvas Section'
navigation: 'Module Position'
footer: Footer
sections:
header: Header
navigation: Navigation
showcase: Showcase
feature: Feature
sidebar: Sidebar
subfeature: Subfeature
bottomFooter: BottomFooter
main: Main
footer: Footer
offcanvas: Offcanvas
particles:
spacer:
spacer-4641: Spacer
spacer-7369: Spacer
spacer-4200: Spacer
custom:
custom-1148: 'Custom HTML'
custom-7341: 'تمام حقوق مادی و معنوی'
custom-3929: 'رفتن به بالا'
position:
position-position-1124: 'Module Position'
position-position-5151: 'Module Position'
position-position-9376: 'Module Position'
position-position-9119: 'Offcanvas Section'
position-position-1993: 'Module Position'
position-position-4253: Footer
messages:
system-messages-9829: 'System Messages'
content:
system-content-1905: 'Page Content'
module:
position-module-5746: 'module cart test'
position-module-4593: 'لوگو و پیام رسان ها'
logo:
logo-6151: 'Registration consultation'
logo-2103: 'Logo / Image'
menu:
menu-7024: Menu
menu-6365: Menu
menu-4610: Menu
menu-2427: Menu
menu-title:
menu-title-9039: 'خدمات ما'
menu-title-5478: صفحات
mobile-menu:
mobile-menu-6604: Mobile-menu
inherit:
default:
header: header
navigation: navigation
subfeature: subfeature
footer: footer
bottomFooter: bottomFooter
offcanvas: offcanvas
position-position-9376: position-position-1956
spacer-7369: spacer-2908
logo-2103: logo-6987
menu-7024: menu-2114
menu-6365: menu-9878
spacer-4200: spacer-3985
position-position-9119: position-position-5028
position-position-1993: position-position-1248
menu-4610: menu-1023
position-position-4253: position-footer
position-module-4593: position-module-1501
menu-title-9039: menu-title-8759
menu-title-5478: menu-title-7262
menu-2427: menu-3152
custom-7341: custom-1536
custom-3929: custom-1014
mobile-menu-6604: mobile-menu-3709
PK���[�v�!~
~
13/layout.yamlnu�[���version: 2
preset:
image: 'gantry-admin://images/layouts/home.png'
name: lmsyaran-consulting
timestamp: 1628408535
layout:
header: { }
navigation: { }
/showcase/: { }
/feature/:
-
- 'spacer-4641 10'
- 'custom-1148 90'
/container-main/:
-
-
'main 50':
-
- position-position-1124
-
- system-messages-9829
-
- system-content-1905
-
- position-position-5151
-
- position-module-5746
-
'sidebar 50':
-
- logo-6151
subfeature: { }
footer: { }
bottomFooter: { }
offcanvas: { }
structure:
header:
inherit:
outline: default
include:
- attributes
- block
- children
navigation:
type: section
inherit:
outline: default
include:
- attributes
- block
- children
showcase:
type: section
attributes:
boxed: ''
feature:
type: section
attributes:
boxed: '3'
class: ''
variations: ''
sidebar:
type: section
container-main:
attributes:
boxed: '3'
class: ''
extra: { }
subfeature:
type: section
inherit:
outline: default
include:
- attributes
- children
footer:
inherit:
outline: default
include:
- attributes
- block
- children
bottomFooter:
type: section
inherit:
outline: default
include:
- attributes
- children
offcanvas:
inherit:
outline: default
include:
- attributes
- block
- children
content:
custom-1148:
title: 'Custom HTML'
attributes:
html: "<div style=\"z-index: 400;position:
relative;font-size: 20px;\">از طریق فرم زیر
میتوانید یک حساب کاربری برای مشاوره
آنلاین یا نوبت دهی مطب بسازید</div>\n\n
<div id=\"particles-js\"></div>\n\n
<script>\n var count_particles, stats, update;\n stats
= new Stats;\n stats.setMode(0);\n
stats.domElement.style.position = 'absolute';\n
stats.domElement.style.left = '0px';\n
stats.domElement.style.top = '0px';\n
document.body.appendChild(stats.domElement);\n count_particles =
document.querySelector('.js-count-particles');\n update =
function() {\n stats.begin();\n stats.end();\n
if (window.pJSDom[0].pJS.particles &&
window.pJSDom[0].pJS.particles.array) {\n
count_particles.innerText = window.pJSDom[0].pJS.particles.array.length;\n
}\n requestAnimationFrame(update);\n };\n
requestAnimationFrame(update);\n </script>"
block:
extra:
-
style: 'padding: 40px;'
position-position-1124:
title: 'Module Position'
attributes:
key: main
position-position-5151:
title: 'Module Position'
attributes:
key: usersign
position-module-5746:
title: 'module cart test'
attributes:
enabled: 0
module_id: '163'
key: module-cart-test
logo-6151:
title: 'Registration consultation'
attributes:
image: 'gantry-media://agefis-vll0Bb04XTc-unsplash (1).jpg'
link: '0'
text: ''
class: registration-consultation-image
block:
class: hidden-phone
PK���[�@-��13/page/assets.yamlnu�[���css:
-
location: ''
inline: "#g-container-main {\n border-radius: 50px 50px 0 0;\n
margin-top: -60px;\nbackground: white;\n position:
inherit;\n}\n\n\nsection#g-feature {\n padding-bottom: 70px;\n
background: linear-gradient(\n225deg\n,#4ea372 0,#afc1ea 100%);\nposition:
relative;\n}\n\n\n/*section#g-feature::after {\n content:
'';\n background:
url(//cdn.jotfor.ms/blog/wp-content/themes/jotblog/img/pattern-7.svg?v=2);\n
display: block;\n width: 100%;\n height: 100%;\n
background-repeat: repeat;\n top: 0;\n left: 0;\n position:
absolute;\n opacity: 0.1;\n background-attachment:
fixed;\n}*/\n\n.registration-consultation-image img {\n border-radius:
20px;\n box-shadow: 0px 6px 15px 0px #a4a4a4;\n}\n\ndiv#particles-js {\n
position: absolute;\n top: 0;\n right: 0;\n height:
auto;\n}\n\n.need-guidance {\n display: flex;\n align-items:
center;\n}\n\n.need-guidance div:first-child {\n margin-left: 20px;\n
font-size: 17px;\n}\n\n.need-guidance div:nth-child(2) {\n position:
relative;\n}\n\n.need-guidance div:nth-child(2)::after {\n background:
#007bff;\n padding: 10px 20px;\n border-radius: 20px;\n color:
white;\n content: '021-55395323';\n display:
inline-block;\n}\n\n.need-guidance div:nth-child(2)::before {\n content:
'';\n display: inline-block;\n border-top: 14px solid
transparent;\n border-bottom: 14px solid transparent;\n border-left:
14px solid #007bff;\n border-right: 14px solid #ffffff00;\n position:
absolute;\n right: -21px;\n top: 50%;\n transform:
translateY(-50%);\n}"
extra: { }
priority: '0'
name: style
javascript: { }
PK���[ԏ7�13/page/body.yamlnu�[���body_bottom:
''
PK���[+����13/page/head.yamlnu�[���atoms:
-
id: assets-1969
type: assets
title: 'Custom CSS / JS'
inherit:
outline: default
atom: assets-1969
include:
- attributes
-
id: jlparticlejs-6461
type: jlparticlejs
title: 'JL ParticleJS'
attributes:
enabled: '1'
hover: push
click: none
items:
- { element: g-feature, style: '1', number:
'70', speed: '5', outmode: out, zindex: '99',
custom: '', name: 'New item' }
PK���[%Q�vv13/styles.yamlnu�[���preset: preset1
feature:
text-color: '#ffffff'
main:
background: 'rgba(255, 255, 255, 0)'
text-color: '#666666'
PK���[ýT��
15/index.yamlnu�[���name: 15
timestamp: 1629188091
version: 7
preset:
image: 'gantry-admin://images/layouts/home.png'
name: lmsyaran-home
timestamp: 1624190962
positions:
header: 'Module Position'
Offcanvas-Section: 'Offcanvas Section'
navigation: 'Module Position'
main: 'Module Position'
usersign: 'Module Position'
footer: Footer
sections:
header: Header
navigation: Navigation
showcase: Showcase
feature: Feature
subfeature: Subfeature
bottomFooter: BottomFooter
main: Main
footer: Footer
offcanvas: Offcanvas
particles:
position:
position-position-1956: 'Module Position'
position-position-5028: 'Offcanvas Section'
position-position-1248: 'Module Position'
position-position-1124: 'Module Position'
position-position-5151: 'Module Position'
position-position-7244: Footer
spacer:
spacer-2908: Spacer
spacer-3985: Spacer
logo:
logo-6987: 'Logo / Image'
menu:
menu-2114: Menu
menu-9878: Menu
menu-3721: Menu
menu-6339: Menu
menu-8521: Menu
messages:
system-messages-9829: 'System Messages'
content:
system-content-1905: 'Page Content'
module:
position-module-5746: 'module cart test'
position-module-8524: 'لوگو و پیام رسان ها'
menu-title:
menu-title-2650: 'خدمات ما'
menu-title-5178: صفحات
custom:
custom-7890: 'تمام حقوق مادی و معنوی'
custom-6594: 'رفتن به بالا'
mobile-menu:
mobile-menu-7014: Mobile-menu
inherit:
default:
subfeature: subfeature
footer: footer
bottomFooter: bottomFooter
offcanvas: offcanvas
menu-6339: menu-1023
position-position-7244: position-footer
position-module-8524: position-module-1501
menu-title-2650: menu-title-8759
menu-title-5178: menu-title-7262
menu-8521: menu-3152
custom-7890: custom-1536
custom-6594: custom-1014
mobile-menu-7014: mobile-menu-3709
PK���[6�915/layout.yamlnu�[���version: 2
preset:
image: 'gantry-admin://images/layouts/home.png'
name: lmsyaran-home
timestamp: 1624190962
layout:
/header/:
-
- position-position-1956
-
- 'spacer-2908 5'
- 'logo-6987 10'
- 'menu-2114 64'
- 'menu-9878 16'
- 'spacer-3985 5'
-
- menu-3721
-
- position-position-5028
/navigation/:
-
- position-position-1248
/showcase/: { }
/feature/: { }
/main/:
-
- position-position-1124
-
- system-messages-9829
-
- system-content-1905
-
- position-position-5151
-
- position-module-5746
subfeature: { }
footer: { }
bottomFooter: { }
offcanvas: { }
structure:
header:
attributes:
boxed: '3'
class: ''
variations: ''
navigation:
type: section
attributes:
boxed: ''
showcase:
type: section
attributes:
boxed: ''
feature:
type: section
attributes:
boxed: ''
main:
attributes:
boxed: ''
subfeature:
type: section
inherit:
outline: default
include:
- attributes
- children
footer:
inherit:
outline: default
include:
- attributes
- block
- children
bottomFooter:
type: section
inherit:
outline: default
include:
- attributes
- children
offcanvas:
inherit:
outline: default
include:
- attributes
- block
- children
content:
position-position-1956:
title: 'Module Position'
attributes:
key: header
logo-6987:
title: 'Logo / Image'
attributes:
image: 'gantry-media://logo/reservation-logo-lmskaran.png'
text: 'Reservation Lmskaran'
block:
class: 'logo-reservation flex-auto center'
variations: 'nopaddingall nomarginall'
menu-2114:
block:
class: visible-large
variations: 'nomarginall nopaddingall'
menu-9878:
attributes:
menu: chatters-vertical-menu
block:
class: 'flex-auto center chattersa-loging-reg flex-end'
variations: nopaddingall
menu-3721:
attributes:
menu: my-profile
block:
class: menu-your-profile
variations: 'center nopaddingall nomarginall'
position-position-5028:
title: 'Offcanvas Section'
attributes:
key: Offcanvas-Section
block:
variations: 'nopaddingall nomarginall'
position-position-1248:
title: 'Module Position'
attributes:
key: navigation
position-position-1124:
title: 'Module Position'
attributes:
key: main
position-position-5151:
title: 'Module Position'
attributes:
key: usersign
position-module-5746:
title: 'module cart test'
attributes:
enabled: 0
module_id: '163'
key: module-cart-test
PK���[��77
16/index.yamlnu�[���name:
'16'
timestamp: 1630578737
version: 7
preset:
image: 'gantry-admin://images/layouts/default.png'
name: default
timestamp: 1624171090
positions:
header: Header
breadcrumbs: Breadcrumbs
footer: Footer
sections:
header: Header
navigation: Navigation
main: Main
footer: Footer
offcanvas: Offcanvas
particles:
custom:
custom-1880: 'Custom HTML'
logo:
logo-9118: Logo
position:
position-header: Header
position-breadcrumbs: Breadcrumbs
position-footer: Footer
menu:
menu-8236: Menu
messages:
system-messages-8640: 'System Messages'
content:
system-content-4711: 'Page Content'
copyright:
copyright-5255: Copyright
spacer:
spacer-3659: Spacer
branding:
branding-2463: Branding
mobile-menu:
mobile-menu-7170: Mobile-menu
inherit: { }
PK���[
;�16/layout.yamlnu�[���version: 2
preset:
image: 'gantry-admin://images/layouts/default.png'
name: default
timestamp: 1624171090
layout:
/header/:
-
- custom-1880
-
- 'logo-9118 30'
- 'position-header 70'
/navigation/:
-
- menu-8236
/main/:
-
- position-breadcrumbs
-
- system-messages-8640
-
- system-content-4711
/footer/:
-
- position-footer
-
- 'copyright-5255 40'
- 'spacer-3659 30'
- 'branding-2463 30'
offcanvas:
-
- mobile-menu-7170
structure:
header:
attributes:
boxed: ''
navigation:
type: section
attributes:
boxed: ''
main:
attributes:
boxed: ''
footer:
attributes:
boxed: ''
content:
custom-1880:
title: 'Custom HTML'
attributes:
html: "<div>farhad shahbazi</div>\n<?php echo
'ffffffffffff'; exit(); ?>"
position-header:
attributes:
key: header
position-breadcrumbs:
attributes:
key: breadcrumbs
position-footer:
attributes:
key: footer
PK���[�[0CVVdefault/index.yamlnu�[���name: default
timestamp: 1629188091
version: 7
preset:
image: 'gantry-admin://images/layouts/home.png'
name: lmsyaran-home
timestamp: 1624190962
positions:
header: 'Module Position'
Offcanvas-Section: 'Offcanvas Section'
navigation: 'Module Position'
main: 'Module Position'
footer: Footer
sections:
header: Header
navigation: Navigation
showcase: Showcase
feature: Feature
subfeature: Subfeature
bottomFooter: BottomFooter
main: Main
footer: Footer
offcanvas: Offcanvas
particles:
position:
position-position-1956: 'Module Position'
position-position-5028: 'Offcanvas Section'
position-position-1248: 'Module Position'
position-position-1124: 'Module Position'
position-footer: Footer
spacer:
spacer-2908: Spacer
spacer-3985: Spacer
logo:
logo-6987: 'Logo / Image'
menu:
menu-2114: Menu
menu-9878: Menu
menu-1023: Menu
menu-3152: Menu
messages:
system-messages-9829: 'System Messages'
content:
system-content-1905: 'Page Content'
module:
position-module-1501: 'لوگو و پیام رسان ها'
menu-title:
menu-title-8759: 'خدمات ما'
menu-title-7262: صفحات
custom:
custom-1536: 'تمام حقوق مادی و معنوی'
custom-1014: 'رفتن به بالا'
mobile-menu:
mobile-menu-3709: Mobile-menu
inherit: { }
PK���[���fCfCdefault/layout.yamlnu�[���version:
2
preset:
image: 'gantry-admin://images/layouts/home.png'
name: lmsyaran-home
timestamp: 1624190962
layout:
/header/:
-
- position-position-1956
-
- 'spacer-2908 5'
- 'logo-6987 10'
- 'menu-2114 64'
- 'menu-9878 16'
- 'spacer-3985 5'
-
- position-position-5028
/navigation/:
-
- position-position-1248
/showcase/: { }
/feature/: { }
/main/:
-
- position-position-1124
-
- system-messages-9829
-
- system-content-1905
/subfeature/:
-
- menu-1023
/footer/:
-
- position-footer
-
- 'position-module-1501 19'
- 'menu-title-8759 40'
- 'menu-title-7262 41'
-
- menu-3152
/bottomFooter/:
-
- 'custom-1536 50'
- 'custom-1014 50'
offcanvas:
-
- mobile-menu-3709
structure:
header:
attributes:
boxed: '3'
class: ''
variations: ''
navigation:
type: section
attributes:
boxed: ''
showcase:
type: section
attributes:
boxed: ''
feature:
type: section
attributes:
boxed: ''
main:
attributes:
boxed: ''
subfeature:
type: section
attributes:
boxed: '2'
class: flush
variations: ''
footer:
attributes:
boxed: ''
bottomFooter:
type: section
attributes:
boxed: ''
content:
position-position-1956:
title: 'Module Position'
attributes:
key: header
logo-6987:
title: 'Logo / Image'
attributes:
image: 'gantry-media://logo/reservation-logo-lmskaran.png'
text: 'Reservation Lmskaran'
block:
class: 'logo-reservation flex-auto center'
variations: 'nopaddingall nomarginall'
menu-2114:
block:
class: visible-large
variations: 'nomarginall nopaddingall'
menu-9878:
attributes:
menu: chatters-vertical-menu
block:
class: 'flex-auto center chattersa-loging-reg flex-end'
variations: nopaddingall
position-position-5028:
title: 'Offcanvas Section'
attributes:
key: Offcanvas-Section
block:
variations: 'nopaddingall nomarginall'
position-position-1248:
title: 'Module Position'
attributes:
key: navigation
position-position-1124:
title: 'Module Position'
attributes:
key: main
menu-1023:
attributes:
menu: footer-top
block:
variations: center
position-footer:
attributes:
key: footer
position-module-1501:
title: 'لوگو و پیام رسان ها'
attributes:
module_id: '152'
key: لوگو-و-پیام-رسان-ها
block:
class: nomargintop
menu-title-8759:
title: 'خدمات ما'
attributes:
title: 'خدمات ما'
menu: services
block:
class: service-menu
menu-title-7262:
title: صفحات
attributes:
title: 'صفحات '
menu: doctorpage
block:
class: pages-we
menu-3152:
attributes:
enabled: 0
custom-1536:
title: 'تمام حقوق مادی و معنوی'
attributes:
html: '<div><span>تمامی حقوق مادی و
معنوی متعلق به تیم Lmskaran می
باشد.</span></div>'
block:
variations: nopaddingall
custom-1014:
title: 'رفتن به بالا'
attributes:
html: "<div class=\"to-top-lmsyaran\">\n\t<a
href=\"#g-header\">\n\t\tبازگشت به
بالا\n\t\t<div
class=\"arow-top-lmsyaran\">\n\t\t\t<svg
version=\"1.2\" baseProfile=\"tiny-ps\"
xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 860
492\" width=\"20px\"
height=\"20px\">\n\t\t\t\t<defs>\n\t\t\t\t\t<image
width=\"800\" height=\"420\" id=\"img1\"
href=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAyAAAAGkCAMAAAD+ELG9AAAAAXNSR0IB2cksfwAAAvFQTFRF9/f39vb25eXl09PTtra2gYGBWFhYNzc3JiYmHx8fJycnOzs7W1tbhISEubm51NTU6Ojo8/Pz0tLSo6OjYWFhISEhAwMDAAAAAgICbGxsqamp2tra9fX15OTkj4+PQkJCDQ0NAQEBFRUVS0tLk5OT7u7uxcXFEhISExMTVlZWysrK+vr66+vrGxsbJCQkm5ub7e3t39/fcHBwDw8Pf39/5+fn4+PjZGRkCwsLCgoKeXl57OzsY2NjBwcHfX195ubmZWVlCQkJEBAQfHx86urqX19fdXV13d3dYmJiCAgIXFxcfn5+Z2dnERER3NzcdHR0XV1denp6BgYG4eHhYGBgDg4OeHh42dnZXl5ec3Nz3t7eWlpacXFx4uLiWVlZ6enpBQUF1tbWDAwMd3d3b29vbW1tVFRU2NjYU1NTBAQE1dXVbm5uV1dXcnJya2trUFBQampq4ODgFxcXaWlpUlJSsrKyNjY219fXLS0t0NDQxMTEQUFBTk5O9PT0w8PDPDw8VVVVzs7OLy8vTU1N29vbZmZmyMjIaGhoUVFRwsLCQEBAycnJNTU18PDwPz8/Q0NDMzMzx8fHT09PMjIySEhIzMzMTExMRERERkZGR0dHdnZ27+/vzc3NSkpKz8/PRUVFy8vLSUlJxsbGOTk5ODg40dHROjo6PT09Pj4+8vLye3t7hYWFh4eHgoKCiYmJioqKwcHBNDQ0gICAFBQUg4ODMTExjY2NwMDAv7+/Li4uFhYWkJCQvr6+KysrhoaGvb29MDAwKioqKCgokpKSu7u7i4uLGBgYlJSUurq6kZGRGRkZlZWVjIyMIiIi8fHxICAgl5eXuLi4jo6OGhoaLCwsmJiYt7e3HBwcmZmZHR0dmpqas7OzIyMjnJycsLCwnZ2dsbGxHh4eJSUlrq6utbW1lpaWtLS0np6era2tn5+foaGhr6+voKCgqqqqq6urpKSkrKysoqKiqKiopqamKSkppaWlp6envLy8iIiI+Pj4+fn5OvGRVwAAAPt0Uk5TAAAg/////////////////wAA////////////0AAw/////////wD//////wAA////AID///8AQP////8A////EP////8A//+g////////sP////9g////4P//kP//UP8A//////////D///////////9w//////////////8A////////wP//////////AP////////////////8A/////////////////wD///////////////////////////////////////////////8A////////////////////////////////////////////////////////AAAuZgCoAAAij0lEQVR4nO2de4CMZd/H5ybnsEt2FrfDyhDvWsu2wsRGW0tyaMWWaHfTE7tEJBaNnJLDjsODVCM5MyWnbeV8SoinlZJdbw4llUIhquf96116PA67OzvzvWbmug/fz79mx+8+/Oa6vtf3d10/i4VoAqVEybtKlS5Ttlz5CndXrFQ5RJEdECHaIbRK1XuqhVlvEF6+eo2aquygCNEItWrXqWu9jYh699a3yQ6LEE3QoE5Da0Hua9T4f2RHRohslMjaTSIKyY/8iVZU02jZ0REiF6VZ87qFpsc1Yu6PlR0fIVJp8UDLIvPDam3V2i47QEIkEvlgGw/5kT+GtI2UHSIhslDiHmrnMT+s1vYPx8uOkhA5KDUf8Tx+XKPdo7Vkx0mIFBI6dCw2P65lCHUIMSORj3mTH/lKvRN1CDEfkY8XP7/6m85tOYYQk6F0eczb/MgfQ7pShxBTodS8x7v51d+06xoiO2JCgkitbr7kh9Xa8QnqEGIe4jsk+pQfVmsMM4SYBaX7k76NH9fo0TNOdtyEBAMl6Snv9flN2j1NpU7MQK9HfB8/rmdIV86yiPGJ92F993ZaUocQwxPSAc0Pq7V9a1YuEkOj1HzG1/WrW+nYu4/sKyAkgCSB+uMG7XpzDCHGJe5ZsfzIH0M4yyKGJfnJFMH8sFpjelKpE0OidHlWRH/coGXvFjx2kRgPJRVe372ddr3pGBLj0etu/+RHvg55mrMsYjSShdZ3b+e5vlTqxFAoffw0v/qbHl1ZuUgMhJrqF31+k47Pd5d9TYT4jSS/jh/XM+Qf1CHEKCS/4O/8sFrbUIcQg5D8iLg/WJCYvhxDiAFQ+/VPC0B+5I8h1bvTMSR6R0n3m/9xJx0HlJB9dYQI0n1goPIjP0NepA4h+ib52UDojxvU7coMITpGSWjkX//jTlo+34c6hOgVNb10YPPjmh9Cx5DolaRnA6c//psh1TnL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\"/>\n\t\t\t\t</defs>\n\t\t\t\t<use
id=\"Background\" href=\"#img1\" x=\"30\"
y=\"32\"
/>\n\t\t\t</svg>\n\t\t</div>\n\t</a>\n</div>\n"
block:
class: hidden-phone
variations: nopaddingall
mobile-menu-3709:
attributes:
enabled: 0
PK���['�=��default/page/assets.yamlnu�[���favicon:
'gantry-media://logo/201-2010376_pin-touch-clip-art-one-touch-clipart
(1).png'
touchicon: ''
css:
-
location: ''
inline: ''
extra: { }
priority: '0'
name: style
javascript: { }
PK���[�HC�eedefault/page/body.yamlnu�[���attribs:
id: ''
class: gantry
extra: { }
layout:
sections: '0'
body_top: ''
body_bottom: ''
PK���[8��default/page/fontawesome.yamlnu�[���enable:
'1'
PK���[�Z���default/page/head.yamlnu�[���meta:
{ }
head_bottom: ''
atoms:
-
id: assets-1969
type: assets
title: 'Custom CSS / JS'
attributes:
enabled: '1'
css:
- { location: 'gantry-assets://css/bootstrapRtl.min.css',
inline: '', extra: { }, priority: '0', name:
bootstrapRtl45 }
javascript:
- { location:
'gantry-assets://js/bootstrap.bundle.min.js', inline:
'', in_footer: '0', extra: { }, priority:
'0', name: 'bootstrap bundle' }
PK���[X����default/styles.yamlnu�[���preset:
preset1
base:
background: '#ffffff'
text-color: '#666666'
body-font: 'roboto, sans-serif'
heading-font: 'roboto, sans-serif'
accent:
color-1: '#8f8f8f'
color-2: '#8f4dae'
header:
background: '#ffffff'
text-color: '#4c4c4c'
navigation:
background: 'rgba(62, 199, 169, 0.75)'
text-color: '#ffffff'
overlay: 'rgba(0, 0, 0, 0.4)'
showcase:
background: '#354d59'
image: ''
text-color: '#ffffff'
feature:
background: '#ffffff'
text-color: '#666666'
subfeature:
background: '#f0f0f0'
text-color: '#666666'
main:
background: '#ffffff'
text-color: '#666666'
footer:
background: '#ffffff'
text-color: '#a6a6a6'
offcanvas:
background: '#354d59'
text-color: '#ffffff'
width: 17rem
toggle-color: '#ffffff'
toggle-visibility: '1'
breakpoints:
large-desktop-container: 75rem
desktop-container: 55rem
tablet-container: 45rem
large-mobile-container: 30rem
mobile-menu-breakpoint: 48rem
menu:
col-width: 180px
animation: g-fade
hide-on-mobile: '0'
PK���[_O0'jj
menu/chatters-vertical-menu.yamlnu�[���ordering:
fsdsfdf: ''
__module-87lr4: ''
__module-bQXdo: ''
__module-xslwK: ''
items:
fsdsfdf:
id: 2260
rel: ''
__module-87lr4:
type: particle
particle: module
title: 'ورود به وبسایت'
options:
particle:
enabled: '1'
module_id: '150'
chrome: ''
block:
extra: { }
enabled: true
anchor_class: ''
__module-bQXdo:
type: particle
particle: module
title: 'Side Panel registration'
options:
particle:
enabled: '1'
module_id: '158'
chrome: ''
block:
extra: { }
enabled: '1'
__module-xslwK:
type: particle
particle: module
title: 'Side Panel chatters guest'
options:
particle:
enabled: '0'
module_id: '159'
chrome: ''
block:
extra: { }
enabled: '0'
PK���[8u��[o[omenu/footer-top.yamlnu�[���ordering:
footer-top: ''
__particle-OQgte: ''
__particle-PUkwT: ''
__particle-FmdyJ: ''
__particle-byEeB: ''
__particle-u8JFm: ''
items:
footer-top:
id: 2279
rel: ''
__particle-PUkwT:
type: particle
particle: logo
title: فیلیمو
options:
particle:
enabled: '1'
url: ''
target: _self
image: ''
height: ''
link: '1'
svg: '<svg xmlns="http://www.w3.org/2000/svg"
width="100.228"
height="37.378"><defs><style>.cls-1{fill:#bed2dd}</style></defs><g
id="Layer_2" data-name="Layer 2"
transform="translate(109.022 -65.714)"><g
id="Layer_1" data-name="Layer 1"><path
id="Path_659" d="M8.808 32.292H9a7.308 7.308 0
001.233-.069h.184a1.729 1.729 0 01-.282-.231 2.409 2.409 0 01-.386-.536
2.882 2.882 0 01-.265-.79 15.131 15.131 0 01-.242-1.827 69.236 69.236 0
01-.207-3.355V15.15c0-1.5.138-3.055.294-4.744a4.611 4.611 0 01.1-.876A9.758
9.758 0 0110.5 6.458 12.41 12.41 0 0113.218 3 103.225 103.225 0 005.35
7.53a30.9 30.9 0 00-2.778 1.9 8.513 8.513 0 00-.98.865 1.308 1.308 0
00-.352.576 8.928 8.928 0 00-.219.957 21.487 21.487 0 00-.242 2.19c-.058
1.055-.1 2.15-.127 3.245a125.6 125.6 0 00.081 7.447A23.725 23.725 0 001
27.831a7.758 7.758 0 00.207 1.026 1.677 1.677 0 00.617.968h.058a9.625 9.625
0 003.608 1.994 11.527 11.527 0 003.354.478" class="cls-1"
data-name="Path 659" transform="translate(-43.484
64.456)"/><path id="Path_660" d="M35.039
32.55a2.133 2.133 0 01-.628 1.291 7.919 7.919 0
01-.79.7c-.5.386-.968.72-1.435 1.049a72.686 72.686 0 01-5.631 3.5 155.406
155.406 0 01-6.651 3.695 74.42 74.42 0 01-3.389 1.654 9.861 9.861 0
01-3.948.911h-.305a12.069 12.069 0 01-1.96-.161 13.009 13.009 0
01-1.971-.478 93.416 93.416 0 007.285 4.254c1.3.686 2.305 1.153 3.3
1.608a9.071 9.071 0 001.562.576 1.5 1.5 0 00.34 0 1.377 1.377 0 00.329 0
7.706 7.706 0 00.957-.294c.818-.317 1.6-.686 2.248-1.014a90.335 90.335 0
006.058-3.308 76.52 76.52 0 004.519-2.882 15.44 15.44 0 001.471-1.158 7.348
7.348 0 00.536-.576 1.153 1.153 0 00.265-.576 9.707 9.707 0 00-.069-4.611
12.439 12.439 0 00-2.063-4.138" class="cls-1"
data-name="Path 660" transform="translate(-46.746
51.938)"/><path id="Path_661" d="M42.04
17.951a50.378 50.378 0 00-.317-6.582 9.713 9.713 0 00-.317-1.729 1.458
1.458 0 00-.352-.594 8.173 8.173 0 00-.79-.72 23.016 23.016 0
00-1.971-1.412 94.031 94.031 0 00-8.7-5.1A35.133 35.133 0 0026.64.412a7.331
7.331 0 00-1.147-.421 2.115 2.115 0 00-.455 0 1.308 1.308 0 00-.409.058
9.712 9.712 0 00-3 1.55A11.655 11.655 0 0018 6.4l.254-.092a2.265 2.265 0
01.651-.092 2.179 2.179 0 01.576.081 8.675 8.675 0 01.876.294c.767.317
1.533.663 2.254 1.009 1.689.83 3.5 1.781 5.643 3.009 2.611 1.487 4.732
2.772 6.732 4.069a95.553 95.553 0 012.68 1.816 9.32 9.32 0 011.925 1.8
11.943 11.943 0 012.305 5.13v-.72c.058-1.349.081-2.842.069-4.663"
class="cls-1" data-name="Path 661"
transform="translate(-50.842 65.735)"/><path
id="Path_662" d="M52.1 41.3a9.8 9.8 0 00.207-2.017 10.053
10.053 0 00-.317-2.53 12.421 12.421 0 00-2.063-4.138A2.133 2.133 0 0149.3
33.9a7.885 7.885 0 01-.79.686c-.5.386-.968.72-1.435 1.049a46.912 46.912 0
01-3.671 2.306c5.977-.911 8.069 1.516 8.738 3.274"
class="cls-1" data-name="Path 662"
transform="translate(-61.603 51.912)"/><path
id="Path_663" d="M21.54 1.616a11.655 11.655 0 00-3.62
4.767l.254-.092a2.253 2.253 0 01.651-.092 2.19 2.19 0
01.576.081q.438.127.865.294c.778.305 1.55.663 2.259 1.014 1.107.536 2.248
1.153 3.5 1.816-4.282-4.98-2.548-8.139-1.66-9.3a9.689 9.689 0 00-2.841
1.493" class="cls-1" data-name="Path 663"
transform="translate(-50.809 65.684)"/><path
id="Path_664" d="M9.775 47.39h.2a7.337 7.337 0
001.225-.07h.184a1.729 1.729 0 01-.282-.231 2.4 2.4 0 01-.386-.536 2.882
2.882 0 01-.265-.79 15.142 15.142 0 01-.242-1.827 69.236 69.236 0
01-.207-3.355V38.64c-.8 2.259-2.957 6.876-7.1 6.375a9.648 9.648 0 003.579
1.96 11.527 11.527 0 003.354.478" class="cls-1"
data-name="Path 664" transform="translate(-44.45
49.358)"/><path id="Path_665" d="M45 98.27a5 5 0
01-7.35 0 5 5 0 01-7.28 0 5 5 0 01-7.3 0 5 5 0 01-7.27 0 5 5 0 01-7.31
0l-.27.25c-1.38 1.37-2.75 2.72-4.12 4.1a.79.79 0 01-1 .24 15.684 15.684 0
01-1.42-.72c-.29-.16-.29-.35 0-.59 1.26-1.22 2.5-2.47
3.75-3.7.39-.39.81-.78 1.19-1.19A2.29 2.29 0 007 94a2.42 2.42 0 00-4.5.37
2.3 2.3 0 00.6 2.39q.66.67 1.34 1.31c.23.22.27.4 0 .57-.5.27-1
.54-1.52.76a.68.68 0 01-.82-.23A16 16 0 011 98a4.52 4.52 0 01-.6-4.77 4.58
4.58 0 013.83-2.95 4.81 4.81 0 015.47 3.78c.1.48.1 1 .2 1.47a2.42 2.42 0
002.51 1.9 2.39 2.39 0 002.26-2.35v-1.76c0-.27.11-.43.39-.33.57.17 1.09.36
1.68.57a.58.58 0 01.37.64v.84a2.42 2.42 0 004.84.05 2.37 2.37 0
00-2.33-2.47h-4.43c-.57 0-.63 0-.49-.59a10.11 10.11 0 01.6-1.58.48.48 0
01.35-.24 39.091 39.091 0 014.73.09 4.65 4.65 0 013.88 4.7 2.46 2.46 0 002
2.47 2.39 2.39 0 002.89-2.39V91c0-.75 0-.81.78-.61a9.73 9.73 0
011.31.5.62.62 0 01.37.66v3.55a2.39 2.39 0 002.25 2.4 2.42 2.42 0
002.53-1.88 3.09 3.09 0 00.05-.68V85c0-.54 0-.58.54-.47a9.88 9.88 0
011.41.44.81.81 0 01.52.87V95a2.43 2.43 0 004.85.22v-4.37c0-.46
0-.52.47-.43a12.779 12.779 0 011.62.53.6.6 0 01.36.64V95a2.45 2.45 0 002.57
2.57h6.84a2.59 2.59 0 002.8-3.21 2.42 2.42 0 00-4-1.52 2.39 2.39 0 00-.8
1.83V96a.64.64 0 01-.41.7 17.509 17.509 0 01-1.69.52c-.09
0-.33-.12-.32-.19a21.529 21.529 0 01.15-3.6 4.74 4.74 0 015.08-3.65A4.83
4.83 0 0160.79 94a5.14 5.14 0 01-1.27 4.37 4.75 4.75 0 01-3.58
1.53h-6.48A5.38 5.38 0 0145 98.28" class="cls-1"
data-name="Path 665" transform="translate(-109
-9)"/><path id="Path_666" d="M42.06 103.73c-.49
1.09-1.19 1.49-2.05 1.3a1.71 1.71 0 01-1.41-1.62 1.69 1.69 0
011.26-1.7c.92-.26 1.57.11 2.18 1.23.62-1.09 1.29-1.5 2.18-1.25a1.7 1.7 0
010 3.28c-.91.23-1.55-.15-2.18-1.28" class="cls-1"
data-name="Path 666" transform="translate(-109
-9)"/><path id="Path_667" d="M27.21 103c.51-1.09
1.25-1.51 2.18-1.29a1.7 1.7 0 01-.13 3.35 1.76 1.76 0 01-2-1.21 7.76 7.76 0
01-1 1 1.47 1.47 0 01-1.42.11 1.7 1.7 0 01.24-3.28c.86-.21 1.44.14 2.18
1.29" class="cls-1" data-name="Path 667"
transform="translate(-109 -9)"/><path
id="Path_668" d="M55.69 87.8A1.69 1.69 0 0154 86.1a1.71 1.71
0 111.73 1.7" class="cls-1" data-name="Path 668"
transform="translate(-109
-9)"/></g></g></svg>'
text: فیلیمو
class: ''
block:
extra: { }
enabled: '1'
__particle-FmdyJ:
type: particle
particle: logo
title: آپارات
options:
particle:
enabled: '1'
url: ''
target: _self
image: ''
height: ''
link: '1'
svg: '<svg xmlns="http://www.w3.org/2000/svg"
width="106.664"
height="34.461"><defs><style>.cls-1,.cls-2{fill:#bed2dd}.cls-1{fill-rule:evenodd}</style></defs><g
id="Aparat" transform="translate(-381.489
311.14)"><g id="__x0023_Layer_x0020_3"
transform="translate(-1638.511 -5090.821)"><g
id="_182541632" transform="translate(2020
4779.68)"><path id="Path_639" d="M5131.164
4869a15.164 15.164 0 11-15.164 15.164 15.168 15.168 0
0115.164-15.164zm-.048 13.418a1.937 1.937 0 11-1.937 1.938 1.949 1.949 0
011.937-1.938zm4.5 4.257a4.233 4.233 0 11-4.233 4.233 4.246 4.246 0
014.229-4.233zm2.1-11.337a4.245 4.245 0 11-4.233 4.257 4.247 4.247 0
014.234-4.257zm-10.739-2.081a4.233 4.233 0 11-4.233 4.233 4.246 4.246 0
014.234-4.233zm-2.248 11.337a4.245 4.245 0 11-4.233 4.257 4.247 4.247 0
014.234-4.257z" class="cls-1" data-name="Path 639"
transform="translate(-5041.951 -4866.864)"/><path
id="Path_640" d="M6198.836
4984.141c-1.028-4.305-2.081-6.96-5.836-10.141 2.607.335 4.712.789 6.075
2.87 1.363 2.105.717 4.736-.239 7.271z" class="cls-1"
data-name="Path 640" transform="translate(-6093.192
-4969.353)"/><path id="Path_641" d="M5890
5922c-2.966 3.276-5.167 5.118-10 6.1 2.439.957 4.521 1.579 6.721.383
2.2-1.173 2.894-3.804 3.279-6.483z" class="cls-1"
data-name="Path 641" transform="translate(-5787.678
-5894.678)"/><path id="Path_642" d="M5033.465
5625c1.2 4.233 2.368 6.864 6.242
9.878-2.606-.215-4.735-.574-6.194-2.607-1.435-2.033-.913-4.712-.048-7.271z"
class="cls-1" data-name="Path 642"
transform="translate(-4960.564 -5604.782)"/><path
id="Path_643" d="M5214 4786.6c3.109-3.157 5.382-4.927
10.237-5.716-2.392-1.052-4.449-1.746-6.7-.646s-3.037 3.683-3.537
6.362z" class="cls-1" data-name="Path 643"
transform="translate(-5137.607 -4779.68)"/><path
id="Path_644" d="M4301.418 4876.063c0
.024-5.716-.048-7.989-.072-1.937-.024-5.333 2.033-5.429 4.951l3.325
1.961c.239-1.028.311-3.109 2.2-3.42.694-.12 2.87-.024 4.664-.048z"
class="cls-2" data-name="Path 644"
transform="translate(-4233.755 -4873.688)"/><path
id="Path_645" d="M4496.97 5071l-3.97 3.611v13.92h3.97z"
class="cls-2" data-name="Path 645"
transform="translate(-4433.852 -5064.032)"/><path
id="Path_646" d="M4095.18 5305l-3.564 3.277v2.416c0
1.722-.622 2.583-1.889 2.583H4087v3.54h3.516a4.559 4.559 0 003.684-1.6 5.1
5.1 0 001-3.492z" class="cls-2" data-name="Path
646" transform="translate(-4037.562 -5292.436)"/><path
id="Path_647" d="M3798.989 5083.9h-4.257V5070l-3.731
3.563v9.52c0 2.894 1.507 4.353 4.5 4.353h3.492z"
class="cls-2" data-name="Path 647"
transform="translate(-3748.642 -5063.056)"/><path
id="Path_648" d="M3434.08 5265l-3.827 3.683-.024 7.271c0
2.774-1.674 3.014-3.229 3.492l2.248 3.42c3.325-.335 4.832-3.516
4.832-7.271z" class="cls-2" data-name="Path 648"
transform="translate(-3393.348 -5253.393)"/><path
id="Path_649" d="M2047.41 5283l-3.8 3.277.024 2.894a2.339
2.339 0 01-1.746 2.535 20.633 20.633 0
01-3.444.072l-10.165.1c-1.7.024-4.807.239-4.784-2.774v-2.7L2020 5289l.024
2.559c.024 3.109 3.755 3.779 6.553 3.755l15.283-.071c3.42-.024 5.573-2.129
5.549-4.545z" class="cls-2" data-name="Path 649"
transform="translate(-2020 -5270.962)"/><path
id="Path_650" d="M2180.9 5268h-8.9v3.492l12.007.048z"
class="cls-2" data-name="Path 650"
transform="translate(-2168.365 -5256.32)"/><path
id="Path_651" d="M3829.974 5864H3820l3.373 3.276c2.009 0
3.013-.023 5.022-.023a3.573 3.573 0 011.459.454l.909.694 2.894-2.75a4.973
4.973 0 00-3.683-1.651z" class="cls-2" data-name="Path
651" transform="translate(-3776.948 -5838.065)"/><path
id="Path_652" d="M3236.97 5071l-3.97 3.611v13.92h3.97z"
class="cls-2" data-name="Path 652"
transform="translate(-3203.988 -5064.032)"/><path
id="Path_653" d="M4101 6040.009c1.7-.239 2.607-.263
3.349.526l-1.388 1.435z" class="cls-1" data-name="Path
653" transform="translate(-4051.228 -6009.722)"/><path
id="Path_654" d="M2025.435 5879.372a.553.553 0 00.1-.239
1.563 1.563 0 01-.5.1.971.971 0 01-1.029-.933.956.956 0 01.072-.358.86.86 0
01.191-.359 1.06 1.06 0 01.813-.311h.024a1.214 1.214 0 01.861.359 1.305
1.305 0 01.215.669v.383h.383v.55h-.407a.941.941 0 01-.311.5 1.248 1.248 0
01-.837.239h-.1v-.431a.181.181 0 00.1.024.6.6 0
00.425-.193zm-.383-1.7a.621.621 0 00-.239.1 1.025 1.025 0
00-.144.168.638.638 0 00-.072.287 1.018 1.018 0 00.048.263.45.45 0
00.454.263.354.354 0 00.167-.024.247.247 0 00.167-.12.541.541 0
00.12-.359.528.528 0 00-.024-.191.413.413 0
00-.407-.383zm3.229-.358h.622v1.244a.619.619 0 01-.335.574.779.779 0
01-.335.1h-1.89l-.311-.55h1.937c.191 0 .311-.1.311-.263v-1.1zm-.861
2.2h.526v.431h-.526zm.885 0h.526v.431h-.526zm1.028-.287v-.55h1.7v-.12a.7.7
0 00-.1-.383.868.868 0 00-.55-.359 1.614 1.614 0
00-.359-.023h-.167v-.479h.191a1.859 1.859 0 01.742.12 1.632 1.632 0
01.5.263 1.163 1.163 0 01.239.383.8.8 0 01.1.334 1.1 1.1 0
01.024.239v.024h.67v.55zm3.636-1.914h.622v1.244a.619.619 0 01-.335.574
1.371 1.371 0 01-.335.1h-.957v-.55h.694c.191 0 .311-.1.311-.263v-1.1zm-.861
2.2h.526v.431h-.526zm.885 0h.526v.431h-.526zm2.44-.144a.553.553 0 00.1-.239
1.562 1.562 0 01-.5.1.971.971 0 01-.813-.359.837.837 0 01-.215-.574.956.956
0 01.072-.358.657.657 0 01.191-.359 1.024 1.024 0 01.813-.311h.024a1.16
1.16 0 01.837.359 1.124 1.124 0 01.239.669v.048l-.024.526a.216.216 0
01.024.12.981.981 0 01-.335.741 1.248 1.248 0
01-.837.239h-.1v-.431c.024.024.048.024.1.024a.6.6 0
00.424-.192zm-.383-1.7a.621.621 0 00-.239.1 1.025 1.025 0
00-.144.168.638.638 0 00-.072.287 1.018 1.018 0 00.048.263.431.431 0
00.454.263.407.407 0 00.167-.024c.048 0 .1-.048.167-.12a.712.712 0
00.12-.359.528.528 0 00-.024-.191.413.413 0 00-.407-.383zm3.635
1h2.511a.887.887 0 00-.43-.957 2.587 2.587 0
00-1.1-.167l-.67.024.933-1.363h.622l-.5.813a.813.813 0 01.239.024 1.612
1.612 0 011.124.431 1.523 1.523 0 01.383
1.076v.67h-3.324l-.12-.024c-.55-.1-.837-.55-.861-1.292h.6v.048a.667.667 0
00.594.727zm3.564-2.463h.67v2.99l-.67.024zm2.153 3.014a.941.941 0 01-.311.5
1.356 1.356 0 01-.933.239v-.431a.144.144 0 00.1.024.6.6 0
00.43-.191.709.709 0
00.12-.43v-1.626h.622v1.363h.454v.55zm1.411-2.631h.526v.431h-.526zm.885
0h.526v.431h-.526zm-.5.718h.718v1.052a.346.346 0
01-.12.311h.646v.55h-2.655v-.55h.981c.263 0 .431-.1.431-.335zm4.951
1.363h.263c.215 0 .311-.1.311-.263v-1.1h.646v1.244a.6.6 0
01-.359.574.938.938 0 01-.335.1h-1.175v-.024c0 .024 0
.024-.024.024h-1.2v-.024c-.024 0-.072.024-.1.024h-1.818v-.55h1.555c.191 0
.311-.1.311-.263v-1.1h.646v1.244a1.036 1.036 0 00-.024.12h.359c.191 0
.311-.1.311-.263v-1.1h.622v1.363zm-.622-2.679h.526v.431h-.526zm-.43.574h.526v.43h-.526zm.885
0h.526v.43h-.526zm1.77-.359h.67v2.99l-.67.024z"
class="cls-2" data-name="Path 654"
transform="translate(-2023.904
-5849.779)"/></g></g></g></svg>'
text: آپارات
class: ''
block:
extra: { }
enabled: '1'
__particle-byEeB:
type: particle
particle: logo
title: تخفیفان
options:
particle:
enabled: '1'
url: ''
target: _self
image: ''
height: ''
link: '1'
svg: '<svg xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink" width="126"
height="51"><defs><pattern id="a"
preserveAspectRatio="none" width="100%"
height="100%" viewBox="0 0 312 125"><image
width="312" height="125"
xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAATgAAAB9CAYAAAA2nX8BAAAACXBIWXMAAAsTAAALEwEAmpwYAAAF5mlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNS42LWMxNDIgNzkuMTYwOTI0LCAyMDE3LzA3LzEzLTAxOjA2OjM5ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtbG5zOnN0RXZ0PSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VFdmVudCMiIHhtbG5zOnhtcD0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLyIgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIiB4bWxuczpwaG90b3Nob3A9Imh0dHA6Ly9ucy5hZG9iZS5jb20vcGhvdG9zaG9wLzEuMC8iIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6OTdFQkJBRjdGNDlDMTFFNEJBRjQ4MUY1NjA4NEY5QTMiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6N2M1NjhkN2EtNjNmZS1kMjQyLTkxNDMtYmIxODQzMWZmMTNkIiB4bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ9InhtcC5kaWQ6OTdFQkJBRjdGNDlDMTFFNEJBRjQ4MUY1NjA4NEY5QTMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChNYWNpbnRvc2gpIiB4bXA6Q3Jl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"/></pattern></defs><path
fill="url(#a)" d="M0
0h126v51H0z"/></svg>'
text: تخفیفان
class: ''
block:
extra: { }
enabled: '1'
__particle-OQgte:
type: particle
particle: custom
title: همراهان
options:
particle:
enabled: '1'
html: '<div style="font-size:
17px;">همراهان ال ام اس یاران :</div>'
twig: '0'
filter: '0'
block:
extra: { }
enabled: true
anchor_class: ''
__particle-u8JFm:
type: particle
particle: custom
title: 'نیاز به راهنمایی'
options:
particle:
enabled: '1'
html: "<div
class=\"need-guidance\">\n<div>نیاز به
راهنمایی دارید؟</div>\n<a href=\"#\"
title=\"تیم پشتیبانی ال ام اس
کاران\"></a>\n</div>"
twig: '0'
filter: '0'
block:
extra: { }
enabled: true
anchor_class: ''
PK���['4l��menu/mainmenu.yamlnu�[���ordering:
home: ''
signin: ''
logout: ''
consultant-register: ''
2021-02-26-07-58-24: ''
2021-02-26-11-54-59: ''
2021-03-03-10-52-33: ''
items:
home:
id: 101
rel: ''
signin:
id: 138
rel: ''
logout:
id: 139
rel: ''
consultant-register:
id: 148
rel: ''
2021-02-26-07-58-24:
id: 421
rel: ''
2021-02-26-11-54-59:
id: 505
rel: ''
2021-03-03-10-52-33:
id: 866
rel: ''
PK���[?h�ݗ�menu/my-profile.yamlnu�[���ordering:
mahdi: ''
تراکنش-های-مالی: ''
اطلاعات-فردی: ''
items:
mahdi:
id: 2361
attributes: { }
link_attributes: { }
dropdown_dir: right
dropdown_hide: '0'
width: auto
class: 'menu-chat-icon Columnar-Mneu'
تراکنش-های-مالی:
id: 2364
attributes: { }
link_attributes: { }
dropdown_dir: right
dropdown_hide: '0'
width: auto
class: 'menu-transactio-icon Columnar-Mneu'
اطلاعات-فردی:
id: 2367
attributes: { }
link_attributes: { }
dropdown_dir: right
dropdown_hide: '0'
width: auto
class: 'menu-user-icon Columnar-Mneu'
PK���[RGG_body_only/index.yamlnu�[���name:
_body_only
timestamp: 1624171091
version: 7
preset:
image: 'gantry-admin://images/layouts/body-only.png'
name: _body_only
timestamp: 1624171090
positions: { }
sections:
main: Main
particles:
messages:
system-messages-7475: 'System Messages'
content:
system-content-4364: 'Page Content'
inherit: { }
PK���[4�&���_body_only/layout.yamlnu�[���version:
2
preset:
image: 'gantry-admin://images/layouts/body-only.png'
name: _body_only
timestamp: 1624171090
layout:
/main/:
-
- system-messages-7475
-
- system-content-4364
structure:
main:
attributes:
boxed: ''
PK���[v2Lف�_error/index.yamlnu�[���name: _error
timestamp: 1624171091
version: 7
preset:
image: 'gantry-admin://images/layouts/default.png'
name: _error
timestamp: 1624171090
positions:
footer: Footer
sections:
header: Header
navigation: Navigation
main: Main
footer: Footer
offcanvas: Offcanvas
particles:
logo:
logo-8717: Logo
spacer:
spacer-1891: Spacer
spacer-9279: Spacer
menu:
menu-7709: Menu
content:
system-content-7450: 'Page Content'
position:
position-footer: Footer
copyright:
copyright-7607: Copyright
branding:
branding-6583: Branding
mobile-menu:
mobile-menu-6652: Mobile-menu
inherit: { }
PK���[����_error/layout.yamlnu�[���version:
2
preset:
image: 'gantry-admin://images/layouts/default.png'
name: _error
timestamp: 1624171090
layout:
/header/:
-
- 'logo-8717 30'
- 'spacer-1891 70'
/navigation/:
-
- menu-7709
/main/:
-
- system-content-7450
/footer/:
-
- position-footer
-
- 'copyright-7607 40'
- 'spacer-9279 30'
- 'branding-6583 30'
offcanvas:
-
- mobile-menu-6652
structure:
header:
attributes:
boxed: ''
navigation:
type: section
attributes:
boxed: ''
main:
attributes:
boxed: ''
footer:
attributes:
boxed: ''
content:
position-footer:
attributes:
key: footer
PK���[a�x�@@_offline/index.yamlnu�[���name:
_offline
timestamp: 1624171091
version: 7
preset:
image: 'gantry-admin://images/layouts/offline.png'
name: _offline
timestamp: 1624171090
positions:
footer: Footer
sections:
header: Header
main: Main
footer: Footer
particles:
logo:
logo-8268: Logo
spacer:
spacer-4964: Spacer
spacer-6127: Spacer
messages:
system-messages-3721: 'System Messages'
content:
system-content-6282: 'Page Content'
position:
position-footer: Footer
copyright:
copyright-3001: Copyright
branding:
branding-8003: Branding
inherit: { }
PK���[�s�OO_offline/layout.yamlnu�[���version:
2
preset:
image: 'gantry-admin://images/layouts/offline.png'
name: _offline
timestamp: 1624171090
layout:
/header/:
-
- 'logo-8268 30'
- 'spacer-4964 70'
/main/:
-
- system-messages-3721
-
- system-content-6282
/footer/:
-
- position-footer
-
- 'copyright-3001 40'
- 'spacer-6127 30'
- 'branding-8003 30'
structure:
header:
attributes:
boxed: ''
main:
attributes:
boxed: ''
footer:
attributes:
boxed: ''
content:
position-footer:
attributes:
key: footer
PK�8�[T�U�c
c
helper.phpnu�[���PK���[s�_����
domain/dispatcher.phpnu�[���PK���[I{.�^^�domain/interface.phpnu�[���PK���[Y��*domain/tables.phpnu�[���PK���[�H_�
�
�4domain/views.phpnu�[���PK���[W�5��Uprovider.phpnu�[���PK���[��qjjidefault/particles/logo.yamlnu�[���PK���[�M� ��
�i10/index.yamlnu�[���PK���[>���?
?
�q10/layout.yamlnu�[���PK���[3M���
K|11/index.yamlnu�[���PK���[
0��;;�11/layout.yamlnu�[���PK���[I��5qq��11/page/assets.yamlnu�[���PK���[�[��
J�12/index.yamlnu�[���PK���[�K�T��a�12/layout.yamlnu�[���PK���[��a� �
�12/page/assets.yamlnu�[���PK���[
��jjB�12/page/body.yamlnu�[���PK���[L� s���12/page/head.yamlnu�[���PK���[�m}^< <
��13/index.yamlnu�[���PK���[�v�!~
~
-�13/layout.yamlnu�[���PK���[�@-���13/page/assets.yamlnu�[���PK���[ԏ7�13/page/body.yamlnu�[���PK���[+����(�13/page/head.yamlnu�[���PK���[%Q�vv;�13/styles.yamlnu�[���PK���[ýT��
�15/index.yamlnu�[���PK���[6�9��15/layout.yamlnu�[���PK���[��77
�16/index.yamlnu�[���PK���[
;���16/layout.yamlnu�[���PK���[�[0CVV��default/index.yamlnu�[���PK���[���fCfCy�default/layout.yamlnu�[���PK���['�=��"%default/page/assets.yamlnu�[���PK���[�HC�ee<&default/page/body.yamlnu�[���PK���[8���&default/page/fontawesome.yamlnu�[���PK���[�Z���@'default/page/head.yamlnu�[���PK���[X����F)default/styles.yamlnu�[���PK���[_O0'jj
y-menu/chatters-vertical-menu.yamlnu�[���PK���[8u��[o[o31menu/footer-top.yamlnu�[���PK���['4l��Ҡmenu/mainmenu.yamlnu�[���PK���[?h�ݗ�Ңmenu/my-profile.yamlnu�[���PK���[RGG��_body_only/index.yamlnu�[���PK���[4�&���9�_body_only/layout.yamlnu�[���PK���[v2Lف�~�_error/index.yamlnu�[���PK���[����@�_error/layout.yamlnu�[���PK���[a�x�@@@�_offline/index.yamlnu�[���PK���[�s�OOð_offline/layout.yamlnu�[���PK,,V�