Spade

Mini Shell

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

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

js/admin-article-pagebreak.js000064400000002320151155311330012141
0ustar00/**
 * @copyright  Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license    GNU General Public License version 2 or later; see
LICENSE.txt
 */
(function() {
	"use strict";

	window.insertPagebreak = function(editor) {
		/** Get the pagebreak title **/
		var alt, tag, title = document.getElementById('title').value;

		if (!window.parent.Joomla.getOptions('xtd-pagebreak')) {
			// Something went wrong!
			window.parent.jModalClose();
			return false;
		}

		/** Get the pagebreak toc alias -- not inserting for now **/
		/** don't know which attribute to use... **/
		alt = document.getElementById('alt').value;

		title  = (title != '') ? 'title="' + title +
'"' : '';
		alt    = (alt != '') ? 'alt="' + alt +
'"' : '';

		tag = '<hr class="system-pagebreak" ' + title +
' ' + alt + '/>';

		/** Use the API, if editor supports it **/
		if (window.parent.Joomla && window.parent.Joomla.editors
&& window.parent.Joomla.editors.instances &&
window.parent.Joomla.editors.instances.hasOwnProperty(editor)) {
			window.parent.Joomla.editors.instances[editor].replaceSelection(tag)
		} else {
			window.parent.jInsertEditorText(tag, editor);
		}

		window.parent.jModalClose();
		return false;
	};
})();
js/admin-article-pagebreak.min.js000064400000001155151155311330012730
0ustar00!function(){"use
strict";window.insertPagebreak=function(a){var
b,c,d=document.getElementById("title").value;return
window.parent.Joomla.getOptions("xtd-pagebreak")?(b=document.getElementById("alt").value,d=""!=d?'title="'+d+'"':"",b=""!=b?'alt="'+b+'"':"",c='<hr
class="system-pagebreak" '+d+"
"+b+"/>",window.parent.Joomla&&window.parent.Joomla.editors&&window.parent.Joomla.editors.instances&&window.parent.Joomla.editors.instances.hasOwnProperty(a)?window.parent.Joomla.editors.instances[a].replaceSelection(c):window.parent.jInsertEditorText(c,a),window.parent.jModalClose(),!1):(window.parent.jModalClose(),!1)}}();js/admin-article-readmore.js000064400000002200151155311330012013
0ustar00/**
 * @copyright  Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license    GNU General Public License version 2 or later; see
LICENSE.txt
 */

window.insertReadmore = function(editor) {
	"use strict";
	if (!Joomla.getOptions('xtd-readmore')) {
		// Something went wrong!
		return false;
	}

	var content, options = window.Joomla.getOptions('xtd-readmore');

	if (window.Joomla && window.Joomla.editors &&
window.Joomla.editors.instances &&
window.Joomla.editors.instances.hasOwnProperty(editor)) {
		content = window.Joomla.editors.instances[editor].getValue();
	} else {
		content = (new Function('return ' + options.editor))();
	}

	if
(content.match(/<hr\s+id=("|')system-readmore("|')\s*\/*>/i))
{
		alert(options.exists);
		return false;
	} else {
		/** Use the API, if editor supports it **/
		if (window.Joomla && window.Joomla.editors &&
window.Joomla.editors.instances &&
window.Joomla.editors.instances.hasOwnProperty(editor)) {
			window.Joomla.editors.instances[editor].replaceSelection('<hr
id="system-readmore" />');
		} else {
			window.jInsertEditorText('<hr id="system-readmore"
/>', editor);
		}
	}
};
js/admin-article-readmore.min.js000064400000001265151155311330012607
0ustar00window.insertReadmore=function(a){"use
strict";if(!Joomla.getOptions("xtd-readmore"))return!1;var
b,c=window.Joomla.getOptions("xtd-readmore");if(b=window.Joomla&&window.Joomla.editors&&window.Joomla.editors.instances&&window.Joomla.editors.instances.hasOwnProperty(a)?window.Joomla.editors.instances[a].getValue():new
Function("return
"+c.editor)(),b.match(/<hr\s+id=("|')system-readmore("|')\s*\/*>/i))return
alert(c.exists),!1;window.Joomla&&window.Joomla.editors&&window.Joomla.editors.instances&&window.Joomla.editors.instances.hasOwnProperty(a)?window.Joomla.editors.instances[a].replaceSelection('<hr
id="system-readmore"
/>'):window.jInsertEditorText('<hr
id="system-readmore"
/>',a)};js/admin-articles-modal.js000064400000004261151155311330011505
0ustar00/**
 * @copyright  Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license    GNU General Public License version 2 or later; see
LICENSE.txt
 */
(function() {
	"use strict";
	/**
	 * Javascript to insert the link
	 * View element calls jSelectArticle when an article is clicked
	 * jSelectArticle creates the link tag, sends it to the editor,
	 * and closes the select frame.
	 **/
	window.jSelectArticle = function (id, title, catid, object, link, lang) {
		var hreflang = '', editor, tag;

		if (!Joomla.getOptions('xtd-articles')) {
			// Something went wrong!
			window.parent.jModalClose();
			return false;
		}

		editor = Joomla.getOptions('xtd-articles').editor;

		if (lang !== '')
		{
			hreflang = ' hreflang="' + lang + '"';
		}

		tag = '<a' + hreflang + ' href="' + link +
'">' + title + '</a>';

		/** Use the API, if editor supports it **/
		if (window.parent.Joomla && window.parent.Joomla.editors
&& window.parent.Joomla.editors.instances &&
window.parent.Joomla.editors.instances.hasOwnProperty(editor)) {
			window.parent.Joomla.editors.instances[editor].replaceSelection(tag)
		} else {
			window.parent.jInsertEditorText(tag, editor);
		}

		window.parent.jModalClose();
	};

	document.addEventListener('DOMContentLoaded', function(){
		// Get the elements
		var elements = document.querySelectorAll('.select-link');

		for(var i = 0, l = elements.length; l>i; i++) {
			// Listen for click event
			elements[i].addEventListener('click', function (event) {
				event.preventDefault();
				var functionName =
event.target.getAttribute('data-function');

				if (functionName === 'jSelectArticle') {
					// Used in xtd_contacts
					window[functionName](event.target.getAttribute('data-id'),
event.target.getAttribute('data-title'),
event.target.getAttribute('data-cat-id'), null,
event.target.getAttribute('data-uri'),
event.target.getAttribute('data-language'));
				} else {
					// Used in com_menus
					window.parent[functionName](event.target.getAttribute('data-id'),
event.target.getAttribute('data-title'),
event.target.getAttribute('data-cat-id'), null,
event.target.getAttribute('data-uri'),
event.target.getAttribute('data-language'));
				}
			})
		}
	});
})();
js/admin-articles-modal.min.js000064400000002274151155311330012271
0ustar00!function(){"use
strict";window.jSelectArticle=function(a,b,c,d,e,f){var
h,i,g="";return
Joomla.getOptions("xtd-articles")?(h=Joomla.getOptions("xtd-articles").editor,""!==f&&(g='
hreflang="'+f+'"'),i="<a"+g+'
href="'+e+'">'+b+"</a>",window.parent.Joomla&&window.parent.Joomla.editors&&window.parent.Joomla.editors.instances&&window.parent.Joomla.editors.instances.hasOwnProperty(h)?window.parent.Joomla.editors.instances[h].replaceSelection(i):window.parent.jInsertEditorText(i,h),void
window.parent.jModalClose()):(window.parent.jModalClose(),!1)},document.addEventListener("DOMContentLoaded",function(){for(var
a=document.querySelectorAll(".select-link"),b=0,c=a.length;c>b;b++)a[b].addEventListener("click",function(a){a.preventDefault();var
b=a.target.getAttribute("data-function");"jSelectArticle"===b?window[b](a.target.getAttribute("data-id"),a.target.getAttribute("data-title"),a.target.getAttribute("data-cat-id"),null,a.target.getAttribute("data-uri"),a.target.getAttribute("data-language")):window.parent[b](a.target.getAttribute("data-id"),a.target.getAttribute("data-title"),a.target.getAttribute("data-cat-id"),null,a.target.getAttribute("data-uri"),a.target.getAttribute("data-language"))})})}();index.html000064400000000036151155312200006533
0ustar00<!DOCTYPE
html><title></title>9ca401dc5c83ea71321893da14a56979-cache-com_content-69153490c236b2d8883076a0453ca1b6.php000064400000012726151155312200021043
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:2887:"<div
class="item-page" itemscope
itemtype="https://schema.org/Article">
	<meta itemprop="inLanguage" content="fa-IR" />
	
		
			<div class="page-header">
		<h2 itemprop="headline">
			abc		</h2>
							</div>
							
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-1"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-1">
											<li class="print-icon"> <a
href="/index.php?option=com_content&amp;view=article&amp;id=1&amp;catid=2&amp;tmpl=component&amp;print=1&amp;layout=default&amp;Itemid=101"
title="چاپ مقاله < abc >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>
			
		1
						<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a
href="/index.php?option=com_content&amp;view=category&amp;id=2&amp;Itemid=101"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-03-04T15:50:15+00:00"
itemprop="datePublished">
					منتشر شده در 14 اسفند 1399				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:1029087" />
					بازدید: 1029087			</dd>						</dl>
	
	
		
								<div itemprop="articleBody">
		 	</div>

	
	<ul class="pager pagenav">
	<li class="previous">
		<a class="hasTooltip" title="4tere"
aria-label="مطلب قبلی: 4tere"
href="/index.php?option=com_content&amp;view=article&amp;id=5:4tere&amp;catid=2&amp;Itemid=3025"
rel="prev">
			<span class="icon-chevron-right"
aria-hidden="true"></span> <span
aria-hidden="true">قبلی</span>		</a>
	</li>
	<li class="next">
		<a class="hasTooltip" title="abb"
aria-label="مطلب بعدی: abb"
href="/index.php?option=com_content&amp;view=article&amp;id=2:0-2&amp;catid=2&amp;Itemid=101"
rel="next">
			<span aria-hidden="true">بعدی</span> <span
class="icon-chevron-left"
aria-hidden="true"></span>		</a>
	</li>
</ul>
							</div>
";s:4:"head";a:12:{s:5:"title";s:8:"lmsyaran";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:3:{s:8:"keywords";N;s:6:"rights";N;s:6:"author";s:6:"farhad";}}s:5:"links";a:0:{}s:11:"styleSheets";a:5:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:43:"/media/com_hikashop/css/safari_hikashop.css";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:6:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:30:"/media/jui/js/bootstrap.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";s:1:"0";s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:322:"jQuery(function($){
initTooltips(); $("body").on("subform-row-add",
initTooltips); function initTooltips (event, container) { container =
container ||
document;$(container).find(".hasTooltip").tooltip({"html":
true,"container": "body"});}
});
jQuery(window).on('load',  function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:0:{}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-5340069044cf0d0e26f612c12adfd6a4.php000064400000011671151155312200021320
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:2285:"<div
class="blog" itemscope
itemtype="https://schema.org/Blog">
	
		1
	
	
	
				<div class="items-leading clearfix">
							<div class="leading-0"
					itemprop="blogPost" itemscope
itemtype="https://schema.org/BlogPosting">
					
	<div class="page-header">
					<h2 itemprop="name">
									<a href="/12-blog/4-2021-06-27-11-47-33"
itemprop="url">
						سلبسلی					</a>
							</h2>
		
		
		
			</div>

	
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-4"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-4">
											<li class="print-icon"> <a
href="/12-blog/4-2021-06-27-11-47-33?tmpl=component&amp;print=1"
title="چاپ مقاله < سلبسلی >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>


			<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a href="/12-blog"
itemprop="genre">blog</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-06-27T11:47:33+00:00"
itemprop="datePublished">
					منتشر شده در 06 تیر 1400				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:36" />
					بازدید: 36			</dd>						</dl>




<p>لبیسلبیسلیس</p>



				</div>
									</div><!-- end items-leading -->
	
	
	
	
		</div>
";s:4:"head";a:12:{s:5:"title";s:4:"blog";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:2:{s:8:"keywords";N;s:6:"rights";N;}}s:5:"links";a:2:{s:33:"/12-blog?format=feed&amp;type=rss";a:3:{s:8:"relation";s:9:"alternate";s:7:"relType";s:3:"rel";s:7:"attribs";a:2:{s:4:"type";s:19:"application/rss+xml";s:5:"title";s:7:"RSS
2.0";}}s:34:"/12-blog?format=feed&amp;type=atom";a:3:{s:8:"relation";s:9:"alternate";s:7:"relType";s:3:"rel";s:7:"attribs";a:2:{s:4:"type";s:20:"application/atom+xml";s:5:"title";s:8:"Atom
1.0";}}}s:11:"styleSheets";a:4:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:6:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:30:"/media/jui/js/bootstrap.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";s:1:"0";s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:79:"jQuery(window).on('load',
 function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:1:{i:0;O:8:"stdClass":2:{s:4:"name";s:4:"blog";s:4:"link";s:0:"";}}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-97b23b634f6b6a0e6e21b399749ac946.php000064400000012017151155312200021277
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:2353:"<div
class="item-page" itemscope
itemtype="https://schema.org/Article">
	<meta itemprop="inLanguage" content="fa-IR" />
	
		
			<div class="page-header">
		<h2 itemprop="headline">
			4tere		</h2>
							</div>
							
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-5"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-5">
											<li class="print-icon"> <a
href="/farhad?tmpl=component&amp;print=1" title="چاپ
مقاله < 4tere >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>
			
		1
						<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a href="/2-uncategorised"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-06-27T11:51:10+00:00"
itemprop="datePublished">
					منتشر شده در 06 تیر 1400				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:296" />
					بازدید: 296			</dd>						</dl>
	
	
		
								<div itemprop="articleBody">
		<p>rtetretrtre</p> 	</div>

	
	<ul class="pager pagenav">
	<li class="next">
		<a class="hasTooltip" title="abc"
aria-label="مطلب بعدی: abc"
href="/2-uncategorised/1-0" rel="next">
			<span aria-hidden="true">بعدی</span> <span
class="icon-chevron-left"
aria-hidden="true"></span>		</a>
	</li>
</ul>
							</div>
";s:4:"head";a:12:{s:5:"title";s:5:"4tere";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:3:{s:8:"keywords";N;s:6:"rights";N;s:6:"author";s:6:"farhad";}}s:5:"links";a:0:{}s:11:"styleSheets";a:4:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:6:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:30:"/media/jui/js/bootstrap.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";s:1:"0";s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:322:"jQuery(function($){
initTooltips(); $("body").on("subform-row-add",
initTooltips); function initTooltips (event, container) { container =
container ||
document;$(container).find(".hasTooltip").tooltip({"html":
true,"container": "body"});}
});
jQuery(window).on('load',  function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:2:{i:0;O:8:"stdClass":2:{s:4:"name";s:13:"Uncategorised";s:4:"link";s:47:"index.php?option=com_content&view=category&id=2";}i:1;O:8:"stdClass":2:{s:4:"name";s:5:"4tere";s:4:"link";s:0:"";}}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-3e89829c1d6c5c32239c7777e0117ef9.php000064400000012121151155312200021224
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:2601:"<div
class="item-page" itemscope
itemtype="https://schema.org/Article">
	<meta itemprop="inLanguage" content="fa-IR" />
	
		
			<div class="page-header">
		<h2 itemprop="headline">
			abc		</h2>
							</div>
							
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-1"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-1">
											<li class="print-icon"> <a
href="/2-uncategorised/1-0?tmpl=component&amp;print=1"
title="چاپ مقاله < abc >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>
			
		1
						<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a href="/2-uncategorised"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-03-04T15:50:15+00:00"
itemprop="datePublished">
					منتشر شده در 14 اسفند 1399				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:1038433" />
					بازدید: 1038433			</dd>						</dl>
	
	
		
								<div itemprop="articleBody">
		 	</div>

	
	<ul class="pager pagenav">
	<li class="previous">
		<a class="hasTooltip" title="4tere"
aria-label="مطلب قبلی: 4tere" href="/farhad"
rel="prev">
			<span class="icon-chevron-right"
aria-hidden="true"></span> <span
aria-hidden="true">قبلی</span>		</a>
	</li>
	<li class="next">
		<a class="hasTooltip" title="abb"
aria-label="مطلب بعدی: abb"
href="/2-uncategorised/2-0-2" rel="next">
			<span aria-hidden="true">بعدی</span> <span
class="icon-chevron-left"
aria-hidden="true"></span>		</a>
	</li>
</ul>
							</div>
";s:4:"head";a:12:{s:5:"title";s:8:"lmsyaran";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:3:{s:8:"keywords";N;s:6:"rights";N;s:6:"author";s:6:"farhad";}}s:5:"links";a:0:{}s:11:"styleSheets";a:4:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:6:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:30:"/media/jui/js/bootstrap.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";s:1:"0";s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:322:"jQuery(function($){
initTooltips(); $("body").on("subform-row-add",
initTooltips); function initTooltips (event, container) { container =
container ||
document;$(container).find(".hasTooltip").tooltip({"html":
true,"container": "body"});}
});
jQuery(window).on('load',  function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:0:{}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-c2bc39fe0ff07dedfd7e5ab5fef803e0.php000064400000012726151155312200022153
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:2887:"<div
class="item-page" itemscope
itemtype="https://schema.org/Article">
	<meta itemprop="inLanguage" content="fa-IR" />
	
		
			<div class="page-header">
		<h2 itemprop="headline">
			abc		</h2>
							</div>
							
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-1"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-1">
											<li class="print-icon"> <a
href="/index.php?option=com_content&amp;view=article&amp;id=1&amp;catid=2&amp;tmpl=component&amp;print=1&amp;layout=default&amp;Itemid=101"
title="چاپ مقاله < abc >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>
			
		1
						<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a
href="/index.php?option=com_content&amp;view=category&amp;id=2&amp;Itemid=101"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-03-04T15:50:15+00:00"
itemprop="datePublished">
					منتشر شده در 14 اسفند 1399				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:1029095" />
					بازدید: 1029095			</dd>						</dl>
	
	
		
								<div itemprop="articleBody">
		 	</div>

	
	<ul class="pager pagenav">
	<li class="previous">
		<a class="hasTooltip" title="4tere"
aria-label="مطلب قبلی: 4tere"
href="/index.php?option=com_content&amp;view=article&amp;id=5:4tere&amp;catid=2&amp;Itemid=3025"
rel="prev">
			<span class="icon-chevron-right"
aria-hidden="true"></span> <span
aria-hidden="true">قبلی</span>		</a>
	</li>
	<li class="next">
		<a class="hasTooltip" title="abb"
aria-label="مطلب بعدی: abb"
href="/index.php?option=com_content&amp;view=article&amp;id=2:0-2&amp;catid=2&amp;Itemid=101"
rel="next">
			<span aria-hidden="true">بعدی</span> <span
class="icon-chevron-left"
aria-hidden="true"></span>		</a>
	</li>
</ul>
							</div>
";s:4:"head";a:12:{s:5:"title";s:8:"lmsyaran";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:3:{s:8:"keywords";N;s:6:"rights";N;s:6:"author";s:6:"farhad";}}s:5:"links";a:0:{}s:11:"styleSheets";a:5:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:43:"/media/com_hikashop/css/safari_hikashop.css";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:6:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:30:"/media/jui/js/bootstrap.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";s:1:"0";s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:322:"jQuery(function($){
initTooltips(); $("body").on("subform-row-add",
initTooltips); function initTooltips (event, container) { container =
container ||
document;$(container).find(".hasTooltip").tooltip({"html":
true,"container": "body"});}
});
jQuery(window).on('load',  function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:0:{}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-fbd56865d43f8ab91d9d48a3e6f848e1.php000064400000004753151155312200021543
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:83:"<div
class="blog-featured" itemscope
itemtype="https://schema.org/Blog">



</div>
";s:4:"head";a:12:{s:5:"title";s:8:"خانه";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:2:{s:8:"keywords";N;s:6:"rights";N;}}s:5:"links";a:2:{s:26:"/?format=feed&amp;type=rss";a:3:{s:8:"relation";s:9:"alternate";s:7:"relType";s:3:"rel";s:7:"attribs";a:2:{s:4:"type";s:19:"application/rss+xml";s:5:"title";s:7:"RSS
2.0";}}s:27:"/?format=feed&amp;type=atom";a:3:{s:8:"relation";s:9:"alternate";s:7:"relType";s:3:"rel";s:7:"attribs";a:2:{s:4:"type";s:20:"application/atom+xml";s:5:"title";s:8:"Atom
1.0";}}}s:11:"styleSheets";a:4:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:5:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:79:"jQuery(window).on('load',
 function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:0:{}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-f0d1feb54a455eb0b1392e1c552202b5.php000064400000011533151155312200021371
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:2355:"<div
class="item-page" itemscope
itemtype="https://schema.org/Article">
	<meta itemprop="inLanguage" content="fa-IR" />
	
		
			<div class="page-header">
		<h2 itemprop="headline">
			abb		</h2>
							</div>
							
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-2"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-2">
											<li class="print-icon"> <a
href="/2-uncategorised/2-0-2?tmpl=component&amp;print=1"
title="چاپ مقاله < abb >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>
			
		1
						<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a href="/2-uncategorised"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-03-04T15:50:15+00:00"
itemprop="datePublished">
					منتشر شده در 14 اسفند 1399				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:359" />
					بازدید: 359			</dd>						</dl>
	
	
		
								<div itemprop="articleBody">
		 	</div>

	
	<ul class="pager pagenav">
	<li class="previous">
		<a class="hasTooltip" title="abc"
aria-label="مطلب قبلی: abc"
href="/2-uncategorised/1-0" rel="prev">
			<span class="icon-chevron-right"
aria-hidden="true"></span> <span
aria-hidden="true">قبلی</span>		</a>
	</li>
</ul>
							</div>
";s:4:"head";a:12:{s:5:"title";s:8:"lmsyaran";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:3:{s:8:"keywords";N;s:6:"rights";N;s:6:"author";s:6:"farhad";}}s:5:"links";a:0:{}s:11:"styleSheets";a:4:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:6:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:30:"/media/jui/js/bootstrap.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";s:1:"0";s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:322:"jQuery(function($){
initTooltips(); $("body").on("subform-row-add",
initTooltips); function initTooltips (event, container) { container =
container ||
document;$(container).find(".hasTooltip").tooltip({"html":
true,"container": "body"});}
});
jQuery(window).on('load',  function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:0:{}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-29d0ab1d2abdde026a54de16b826aea5.php000064400000012726151155312200021677
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:2887:"<div
class="item-page" itemscope
itemtype="https://schema.org/Article">
	<meta itemprop="inLanguage" content="fa-IR" />
	
		
			<div class="page-header">
		<h2 itemprop="headline">
			abc		</h2>
							</div>
							
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-1"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-1">
											<li class="print-icon"> <a
href="/index.php?option=com_content&amp;view=article&amp;id=1&amp;catid=2&amp;tmpl=component&amp;print=1&amp;layout=default&amp;Itemid=101"
title="چاپ مقاله < abc >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>
			
		1
						<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a
href="/index.php?option=com_content&amp;view=category&amp;id=2&amp;Itemid=101"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-03-04T15:50:15+00:00"
itemprop="datePublished">
					منتشر شده در 14 اسفند 1399				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:1029105" />
					بازدید: 1029105			</dd>						</dl>
	
	
		
								<div itemprop="articleBody">
		 	</div>

	
	<ul class="pager pagenav">
	<li class="previous">
		<a class="hasTooltip" title="4tere"
aria-label="مطلب قبلی: 4tere"
href="/index.php?option=com_content&amp;view=article&amp;id=5:4tere&amp;catid=2&amp;Itemid=3025"
rel="prev">
			<span class="icon-chevron-right"
aria-hidden="true"></span> <span
aria-hidden="true">قبلی</span>		</a>
	</li>
	<li class="next">
		<a class="hasTooltip" title="abb"
aria-label="مطلب بعدی: abb"
href="/index.php?option=com_content&amp;view=article&amp;id=2:0-2&amp;catid=2&amp;Itemid=101"
rel="next">
			<span aria-hidden="true">بعدی</span> <span
class="icon-chevron-left"
aria-hidden="true"></span>		</a>
	</li>
</ul>
							</div>
";s:4:"head";a:12:{s:5:"title";s:8:"lmsyaran";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:3:{s:8:"keywords";N;s:6:"rights";N;s:6:"author";s:6:"farhad";}}s:5:"links";a:0:{}s:11:"styleSheets";a:5:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:43:"/media/com_hikashop/css/safari_hikashop.css";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:6:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:30:"/media/jui/js/bootstrap.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";s:1:"0";s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:322:"jQuery(function($){
initTooltips(); $("body").on("subform-row-add",
initTooltips); function initTooltips (event, container) { container =
container ||
document;$(container).find(".hasTooltip").tooltip({"html":
true,"container": "body"});}
});
jQuery(window).on('load',  function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:0:{}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-9f1cf3a83fbded55cb35ae899c8eb1ad.php000064400000006712151155312200022100
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:1369:"<div
class="item-page" itemscope
itemtype="https://schema.org/Article">
	<meta itemprop="inLanguage" content="fa-IR" />
	
		
			<div class="page-header">
		<h2 itemprop="headline">
			abc		</h2>
							</div>
							<div id="pop-print" class="btn
hidden-print">
				<a href="#" onclick="window.print();return
false;">			<span class="icon-print"
aria-hidden="true"></span>
		چاپ	</a>			</div>
			
		1
						<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a href="/2-uncategorised"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-03-04T15:50:15+00:00"
itemprop="datePublished">
					منتشر شده در 14 اسفند 1399				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:1036289" />
					بازدید: 1036289			</dd>						</dl>
	
	
		
								<div itemprop="articleBody">
		 	</div>

	
							</div>
";s:4:"head";a:12:{s:5:"title";s:8:"lmsyaran";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:4:{s:8:"keywords";N;s:6:"rights";N;s:6:"author";s:6:"farhad";s:6:"robots";s:17:"noindex,
nofollow";}}s:5:"links";a:0:{}s:11:"styleSheets";a:4:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:5:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:79:"jQuery(window).on('load',
 function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:0:{}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-22f461772acf0e15f2f38410f4e31d39.php000064400000012726151155312200021261
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:2887:"<div
class="item-page" itemscope
itemtype="https://schema.org/Article">
	<meta itemprop="inLanguage" content="fa-IR" />
	
		
			<div class="page-header">
		<h2 itemprop="headline">
			abc		</h2>
							</div>
							
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-1"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-1">
											<li class="print-icon"> <a
href="/index.php?option=com_content&amp;view=article&amp;id=1&amp;catid=2&amp;tmpl=component&amp;print=1&amp;layout=default&amp;Itemid=101"
title="چاپ مقاله < abc >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>
			
		1
						<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a
href="/index.php?option=com_content&amp;view=category&amp;id=2&amp;Itemid=101"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-03-04T15:50:15+00:00"
itemprop="datePublished">
					منتشر شده در 14 اسفند 1399				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:1029117" />
					بازدید: 1029117			</dd>						</dl>
	
	
		
								<div itemprop="articleBody">
		 	</div>

	
	<ul class="pager pagenav">
	<li class="previous">
		<a class="hasTooltip" title="4tere"
aria-label="مطلب قبلی: 4tere"
href="/index.php?option=com_content&amp;view=article&amp;id=5:4tere&amp;catid=2&amp;Itemid=3025"
rel="prev">
			<span class="icon-chevron-right"
aria-hidden="true"></span> <span
aria-hidden="true">قبلی</span>		</a>
	</li>
	<li class="next">
		<a class="hasTooltip" title="abb"
aria-label="مطلب بعدی: abb"
href="/index.php?option=com_content&amp;view=article&amp;id=2:0-2&amp;catid=2&amp;Itemid=101"
rel="next">
			<span aria-hidden="true">بعدی</span> <span
class="icon-chevron-left"
aria-hidden="true"></span>		</a>
	</li>
</ul>
							</div>
";s:4:"head";a:12:{s:5:"title";s:8:"lmsyaran";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:3:{s:8:"keywords";N;s:6:"rights";N;s:6:"author";s:6:"farhad";}}s:5:"links";a:0:{}s:11:"styleSheets";a:5:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:43:"/media/com_hikashop/css/safari_hikashop.css";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:6:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:30:"/media/jui/js/bootstrap.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";s:1:"0";s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:322:"jQuery(function($){
initTooltips(); $("body").on("subform-row-add",
initTooltips); function initTooltips (event, container) { container =
container ||
document;$(container).find(".hasTooltip").tooltip({"html":
true,"container": "body"});}
});
jQuery(window).on('load',  function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:0:{}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-63d0ae9e4d61c48b0b316c83899693e9.php000064400000022353151155312200021310
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:6651:"<div
class="blog" itemscope
itemtype="https://schema.org/Blog">
	
		1
	
	
	
				<div class="items-leading clearfix">
							<div class="leading-0"
					itemprop="blogPost" itemscope
itemtype="https://schema.org/BlogPosting">
					
	<div class="page-header">
					<h2 itemprop="name">
									<a href="/farhad" itemprop="url">
						4tere					</a>
							</h2>
		
		
		
			</div>

	
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-5"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-5">
											<li class="print-icon"> <a
href="/farhad?tmpl=component&amp;print=1" title="چاپ
مقاله < 4tere >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>


			<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a href="/2-uncategorised"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-06-27T11:51:10+00:00"
itemprop="datePublished">
					منتشر شده در 06 تیر 1400				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:336" />
					بازدید: 336			</dd>						</dl>




<p>rtetretrtre</p>



				</div>
									</div><!-- end items-leading -->
	
	
																	<div class="items-row cols-3 row-0 row-fluid
clearfix">
						<div class="span4">
				<div class="item column-1"
					itemprop="blogPost" itemscope
itemtype="https://schema.org/BlogPosting">
					
	<div class="page-header">
					<h2 itemprop="name">
									<a href="/2-uncategorised/1-0"
itemprop="url">
						abc					</a>
							</h2>
		
		
		
			</div>

	
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-1"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-1">
											<li class="print-icon"> <a
href="/2-uncategorised/1-0?tmpl=component&amp;print=1"
title="چاپ مقاله < abc >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>


			<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a href="/2-uncategorised"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-03-04T15:50:15+00:00"
itemprop="datePublished">
					منتشر شده در 14 اسفند 1399				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:1038340" />
					بازدید: 1038340			</dd>						</dl>








				</div>
				<!-- end item -->
							</div><!-- end span -->
														<div class="span4">
				<div class="item column-2"
					itemprop="blogPost" itemscope
itemtype="https://schema.org/BlogPosting">
					
	<div class="page-header">
					<h2 itemprop="name">
									<a href="/2-uncategorised/2-0-2"
itemprop="url">
						abb					</a>
							</h2>
		
		
		
			</div>

	
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-2"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-2">
											<li class="print-icon"> <a
href="/2-uncategorised/2-0-2?tmpl=component&amp;print=1"
title="چاپ مقاله < abb >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>


			<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a href="/2-uncategorised"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-03-04T15:50:15+00:00"
itemprop="datePublished">
					منتشر شده در 14 اسفند 1399				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:390" />
					بازدید: 390			</dd>						</dl>








				</div>
				<!-- end item -->
							</div><!-- end span -->
							</div><!-- end row -->
						
	
		</div>
";s:4:"head";a:12:{s:5:"title";s:13:"Uncategorised";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:2:{s:8:"keywords";N;s:6:"rights";N;}}s:5:"links";a:2:{s:41:"/2-uncategorised?format=feed&amp;type=rss";a:3:{s:8:"relation";s:9:"alternate";s:7:"relType";s:3:"rel";s:7:"attribs";a:2:{s:4:"type";s:19:"application/rss+xml";s:5:"title";s:7:"RSS
2.0";}}s:42:"/2-uncategorised?format=feed&amp;type=atom";a:3:{s:8:"relation";s:9:"alternate";s:7:"relType";s:3:"rel";s:7:"attribs";a:2:{s:4:"type";s:20:"application/atom+xml";s:5:"title";s:8:"Atom
1.0";}}}s:11:"styleSheets";a:4:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:6:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:30:"/media/jui/js/bootstrap.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";s:1:"0";s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:79:"jQuery(window).on('load',
 function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:1:{i:0;O:8:"stdClass":2:{s:4:"name";s:13:"Uncategorised";s:4:"link";s:0:"";}}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-dcd88a25a5550e5885e9183f923cead7.php000064400000012403151155312200021442
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:2601:"<div
class="item-page" itemscope
itemtype="https://schema.org/Article">
	<meta itemprop="inLanguage" content="fa-IR" />
	
		
			<div class="page-header">
		<h2 itemprop="headline">
			abc		</h2>
							</div>
							
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-1"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-1">
											<li class="print-icon"> <a
href="/2-uncategorised/1-0?tmpl=component&amp;print=1"
title="چاپ مقاله < abc >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>
			
		1
						<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a href="/2-uncategorised"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-03-04T15:50:15+00:00"
itemprop="datePublished">
					منتشر شده در 14 اسفند 1399				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:1038055" />
					بازدید: 1038055			</dd>						</dl>
	
	
		
								<div itemprop="articleBody">
		 	</div>

	
	<ul class="pager pagenav">
	<li class="previous">
		<a class="hasTooltip" title="4tere"
aria-label="مطلب قبلی: 4tere" href="/farhad"
rel="prev">
			<span class="icon-chevron-right"
aria-hidden="true"></span> <span
aria-hidden="true">قبلی</span>		</a>
	</li>
	<li class="next">
		<a class="hasTooltip" title="abb"
aria-label="مطلب بعدی: abb"
href="/2-uncategorised/2-0-2" rel="next">
			<span aria-hidden="true">بعدی</span> <span
class="icon-chevron-left"
aria-hidden="true"></span>		</a>
	</li>
</ul>
							</div>
";s:4:"head";a:12:{s:5:"title";s:3:"abc";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:3:{s:8:"keywords";N;s:6:"rights";N;s:6:"author";s:6:"farhad";}}s:5:"links";a:0:{}s:11:"styleSheets";a:4:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:6:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:30:"/media/jui/js/bootstrap.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";s:1:"0";s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:322:"jQuery(function($){
initTooltips(); $("body").on("subform-row-add",
initTooltips); function initTooltips (event, container) { container =
container ||
document;$(container).find(".hasTooltip").tooltip({"html":
true,"container": "body"});}
});
jQuery(window).on('load',  function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:2:{i:0;O:8:"stdClass":2:{s:4:"name";s:13:"Uncategorised";s:4:"link";s:47:"index.php?option=com_content&view=category&id=2";}i:1;O:8:"stdClass":2:{s:4:"name";s:3:"abc";s:4:"link";s:0:"";}}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-2afc577fc8111d454ecca5aa723415a9.php000064400000012726151155312200021475
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:2887:"<div
class="item-page" itemscope
itemtype="https://schema.org/Article">
	<meta itemprop="inLanguage" content="fa-IR" />
	
		
			<div class="page-header">
		<h2 itemprop="headline">
			abc		</h2>
							</div>
							
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-1"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-1">
											<li class="print-icon"> <a
href="/index.php?option=com_content&amp;view=article&amp;id=1&amp;catid=2&amp;tmpl=component&amp;print=1&amp;layout=default&amp;Itemid=101"
title="چاپ مقاله < abc >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>
			
		1
						<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a
href="/index.php?option=com_content&amp;view=category&amp;id=2&amp;Itemid=101"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-03-04T15:50:15+00:00"
itemprop="datePublished">
					منتشر شده در 14 اسفند 1399				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:1029109" />
					بازدید: 1029109			</dd>						</dl>
	
	
		
								<div itemprop="articleBody">
		 	</div>

	
	<ul class="pager pagenav">
	<li class="previous">
		<a class="hasTooltip" title="4tere"
aria-label="مطلب قبلی: 4tere"
href="/index.php?option=com_content&amp;view=article&amp;id=5:4tere&amp;catid=2&amp;Itemid=3025"
rel="prev">
			<span class="icon-chevron-right"
aria-hidden="true"></span> <span
aria-hidden="true">قبلی</span>		</a>
	</li>
	<li class="next">
		<a class="hasTooltip" title="abb"
aria-label="مطلب بعدی: abb"
href="/index.php?option=com_content&amp;view=article&amp;id=2:0-2&amp;catid=2&amp;Itemid=101"
rel="next">
			<span aria-hidden="true">بعدی</span> <span
class="icon-chevron-left"
aria-hidden="true"></span>		</a>
	</li>
</ul>
							</div>
";s:4:"head";a:12:{s:5:"title";s:8:"lmsyaran";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:3:{s:8:"keywords";N;s:6:"rights";N;s:6:"author";s:6:"farhad";}}s:5:"links";a:0:{}s:11:"styleSheets";a:5:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:43:"/media/com_hikashop/css/safari_hikashop.css";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:6:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:30:"/media/jui/js/bootstrap.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";s:1:"0";s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:322:"jQuery(function($){
initTooltips(); $("body").on("subform-row-add",
initTooltips); function initTooltips (event, container) { container =
container ||
document;$(container).find(".hasTooltip").tooltip({"html":
true,"container": "body"});}
});
jQuery(window).on('load',  function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:0:{}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-8a0038826558a1c4171eea52c5b80b24.php000064400000007011151155312200021161
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:1432:"<div
class="item-page" itemscope
itemtype="https://schema.org/Article">
	<meta itemprop="inLanguage" content="fa-IR" />
	
		
			<div class="page-header">
		<h2 itemprop="headline">
			4tere		</h2>
							</div>
							<div id="pop-print" class="btn
hidden-print">
				<a href="#" onclick="window.print();return
false;">			<span class="icon-print"
aria-hidden="true"></span>
		چاپ	</a>			</div>
			
		1
						<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a
href="/index.php?option=com_content&amp;view=category&amp;id=2&amp;Itemid=101"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-06-27T11:51:10+00:00"
itemprop="datePublished">
					منتشر شده در 06 تیر 1400				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:108" />
					بازدید: 108			</dd>						</dl>
	
	
		
								<div itemprop="articleBody">
		<p>rtetretrtre</p> 	</div>

	
							</div>
";s:4:"head";a:12:{s:5:"title";s:8:"lmsyaran";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:4:{s:8:"keywords";N;s:6:"rights";N;s:6:"author";s:6:"farhad";s:6:"robots";s:17:"noindex,
nofollow";}}s:5:"links";a:0:{}s:11:"styleSheets";a:4:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:5:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:79:"jQuery(window).on('load',
 function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:0:{}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-1fbbd87e9ab35d044d724625936af802.php000064400000005155151155312200021350
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:83:"<div
class="blog-featured" itemscope
itemtype="https://schema.org/Blog">



</div>
";s:4:"head";a:12:{s:5:"title";s:8:"lmsyaran";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:2:{s:8:"keywords";N;s:6:"rights";N;}}s:5:"links";a:2:{s:91:"/index.php?option=com_content&amp;view=featured&amp;format=feed&amp;type=rss&amp;Itemid=101";a:3:{s:8:"relation";s:9:"alternate";s:7:"relType";s:3:"rel";s:7:"attribs";a:2:{s:4:"type";s:19:"application/rss+xml";s:5:"title";s:7:"RSS
2.0";}}s:92:"/index.php?option=com_content&amp;view=featured&amp;format=feed&amp;type=atom&amp;Itemid=101";a:3:{s:8:"relation";s:9:"alternate";s:7:"relType";s:3:"rel";s:7:"attribs";a:2:{s:4:"type";s:20:"application/atom+xml";s:5:"title";s:8:"Atom
1.0";}}}s:11:"styleSheets";a:4:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:5:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:79:"jQuery(window).on('load',
 function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:0:{}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-b67dba23bbe791b4d8d9073397b635e2.php000064400000012726151155312200021436
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:2887:"<div
class="item-page" itemscope
itemtype="https://schema.org/Article">
	<meta itemprop="inLanguage" content="fa-IR" />
	
		
			<div class="page-header">
		<h2 itemprop="headline">
			abc		</h2>
							</div>
							
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-1"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-1">
											<li class="print-icon"> <a
href="/index.php?option=com_content&amp;view=article&amp;id=1&amp;catid=2&amp;tmpl=component&amp;print=1&amp;layout=default&amp;Itemid=101"
title="چاپ مقاله < abc >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>
			
		1
						<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a
href="/index.php?option=com_content&amp;view=category&amp;id=2&amp;Itemid=101"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-03-04T15:50:15+00:00"
itemprop="datePublished">
					منتشر شده در 14 اسفند 1399				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:1029130" />
					بازدید: 1029130			</dd>						</dl>
	
	
		
								<div itemprop="articleBody">
		 	</div>

	
	<ul class="pager pagenav">
	<li class="previous">
		<a class="hasTooltip" title="4tere"
aria-label="مطلب قبلی: 4tere"
href="/index.php?option=com_content&amp;view=article&amp;id=5:4tere&amp;catid=2&amp;Itemid=3025"
rel="prev">
			<span class="icon-chevron-right"
aria-hidden="true"></span> <span
aria-hidden="true">قبلی</span>		</a>
	</li>
	<li class="next">
		<a class="hasTooltip" title="abb"
aria-label="مطلب بعدی: abb"
href="/index.php?option=com_content&amp;view=article&amp;id=2:0-2&amp;catid=2&amp;Itemid=101"
rel="next">
			<span aria-hidden="true">بعدی</span> <span
class="icon-chevron-left"
aria-hidden="true"></span>		</a>
	</li>
</ul>
							</div>
";s:4:"head";a:12:{s:5:"title";s:8:"lmsyaran";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:3:{s:8:"keywords";N;s:6:"rights";N;s:6:"author";s:6:"farhad";}}s:5:"links";a:0:{}s:11:"styleSheets";a:5:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:43:"/media/com_hikashop/css/safari_hikashop.css";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:6:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:30:"/media/jui/js/bootstrap.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";s:1:"0";s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:322:"jQuery(function($){
initTooltips(); $("body").on("subform-row-add",
initTooltips); function initTooltips (event, container) { container =
container ||
document;$(container).find(".hasTooltip").tooltip({"html":
true,"container": "body"});}
});
jQuery(window).on('load',  function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:0:{}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-a6f048e893a16e789e037f54785c9fe6.php000064400000004775151155312200021341
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:83:"<div
class="blog-featured" itemscope
itemtype="https://schema.org/Blog">



</div>
";s:4:"head";a:12:{s:5:"title";s:8:"خانه";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:2:{s:8:"keywords";N;s:6:"rights";N;}}s:5:"links";a:2:{s:35:"/index.php?format=feed&amp;type=rss";a:3:{s:8:"relation";s:9:"alternate";s:7:"relType";s:3:"rel";s:7:"attribs";a:2:{s:4:"type";s:19:"application/rss+xml";s:5:"title";s:7:"RSS
2.0";}}s:36:"/index.php?format=feed&amp;type=atom";a:3:{s:8:"relation";s:9:"alternate";s:7:"relType";s:3:"rel";s:7:"attribs";a:2:{s:4:"type";s:20:"application/atom+xml";s:5:"title";s:8:"Atom
1.0";}}}s:11:"styleSheets";a:4:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:5:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:79:"jQuery(window).on('load',
 function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:0:{}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-a545b5a4d30f4fcf83decb94b0fbc714.php000064400000022346151155312200021717
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:6651:"<div
class="blog" itemscope
itemtype="https://schema.org/Blog">
	
		1
	
	
	
				<div class="items-leading clearfix">
							<div class="leading-0"
					itemprop="blogPost" itemscope
itemtype="https://schema.org/BlogPosting">
					
	<div class="page-header">
					<h2 itemprop="name">
									<a href="/farhad" itemprop="url">
						4tere					</a>
							</h2>
		
		
		
			</div>

	
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-5"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-5">
											<li class="print-icon"> <a
href="/farhad?tmpl=component&amp;print=1" title="چاپ
مقاله < 4tere >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>


			<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a href="/2-uncategorised"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-06-27T11:51:10+00:00"
itemprop="datePublished">
					منتشر شده در 06 تیر 1400				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:329" />
					بازدید: 329			</dd>						</dl>




<p>rtetretrtre</p>



				</div>
									</div><!-- end items-leading -->
	
	
																	<div class="items-row cols-2 row-0 row-fluid
clearfix">
						<div class="span6">
				<div class="item column-1"
					itemprop="blogPost" itemscope
itemtype="https://schema.org/BlogPosting">
					
	<div class="page-header">
					<h2 itemprop="name">
									<a href="/2-uncategorised/1-0"
itemprop="url">
						abc					</a>
							</h2>
		
		
		
			</div>

	
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-1"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-1">
											<li class="print-icon"> <a
href="/2-uncategorised/1-0?tmpl=component&amp;print=1"
title="چاپ مقاله < abc >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>


			<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a href="/2-uncategorised"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-03-04T15:50:15+00:00"
itemprop="datePublished">
					منتشر شده در 14 اسفند 1399				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:1037949" />
					بازدید: 1037949			</dd>						</dl>








				</div>
				<!-- end item -->
							</div><!-- end span -->
														<div class="span6">
				<div class="item column-2"
					itemprop="blogPost" itemscope
itemtype="https://schema.org/BlogPosting">
					
	<div class="page-header">
					<h2 itemprop="name">
									<a href="/2-uncategorised/2-0-2"
itemprop="url">
						abb					</a>
							</h2>
		
		
		
			</div>

	
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-2"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-2">
											<li class="print-icon"> <a
href="/2-uncategorised/2-0-2?tmpl=component&amp;print=1"
title="چاپ مقاله < abb >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>


			<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a href="/2-uncategorised"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-03-04T15:50:15+00:00"
itemprop="datePublished">
					منتشر شده در 14 اسفند 1399				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:379" />
					بازدید: 379			</dd>						</dl>








				</div>
				<!-- end item -->
							</div><!-- end span -->
							</div><!-- end row -->
						
	
		</div>
";s:4:"head";a:12:{s:5:"title";s:13:"Uncategorised";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:2:{s:8:"keywords";N;s:6:"rights";N;}}s:5:"links";a:2:{s:75:"/component/content/2-uncategorised?Itemid=2426&amp;format=feed&amp;type=rss";a:3:{s:8:"relation";s:9:"alternate";s:7:"relType";s:3:"rel";s:7:"attribs";a:2:{s:4:"type";s:19:"application/rss+xml";s:5:"title";s:7:"RSS
2.0";}}s:76:"/component/content/2-uncategorised?Itemid=2426&amp;format=feed&amp;type=atom";a:3:{s:8:"relation";s:9:"alternate";s:7:"relType";s:3:"rel";s:7:"attribs";a:2:{s:4:"type";s:20:"application/atom+xml";s:5:"title";s:8:"Atom
1.0";}}}s:11:"styleSheets";a:4:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:6:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:30:"/media/jui/js/bootstrap.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";s:1:"0";s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:79:"jQuery(window).on('load',
 function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:0:{}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-1d3aa83e4b424da0adeba08e56186c0f.php000064400000012624151155312200021617
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:2622:"<div
class="item-page" itemscope
itemtype="https://schema.org/Article">
	<meta itemprop="inLanguage" content="fa-IR" />
	
		
			<div class="page-header">
		<h2 itemprop="headline">
			abc		</h2>
							</div>
							
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-1"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-1">
											<li class="print-icon"> <a
href="/farhad/2-uncategorised/1-0?tmpl=component&amp;print=1"
title="چاپ مقاله < abc >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>
			
		1
						<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a href="/farhad/2-uncategorised"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-03-04T15:50:15+00:00"
itemprop="datePublished">
					منتشر شده در 14 اسفند 1399				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:1038232" />
					بازدید: 1038232			</dd>						</dl>
	
	
		
								<div itemprop="articleBody">
		 	</div>

	
	<ul class="pager pagenav">
	<li class="previous">
		<a class="hasTooltip" title="4tere"
aria-label="مطلب قبلی: 4tere" href="/farhad"
rel="prev">
			<span class="icon-chevron-right"
aria-hidden="true"></span> <span
aria-hidden="true">قبلی</span>		</a>
	</li>
	<li class="next">
		<a class="hasTooltip" title="abb"
aria-label="مطلب بعدی: abb"
href="/farhad/2-uncategorised/2-0-2" rel="next">
			<span aria-hidden="true">بعدی</span> <span
class="icon-chevron-left"
aria-hidden="true"></span>		</a>
	</li>
</ul>
							</div>
";s:4:"head";a:12:{s:5:"title";s:3:"abc";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:3:{s:8:"keywords";N;s:6:"rights";N;s:6:"author";s:6:"farhad";}}s:5:"links";a:0:{}s:11:"styleSheets";a:4:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:6:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:30:"/media/jui/js/bootstrap.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";s:1:"0";s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:322:"jQuery(function($){
initTooltips(); $("body").on("subform-row-add",
initTooltips); function initTooltips (event, container) { container =
container ||
document;$(container).find(".hasTooltip").tooltip({"html":
true,"container": "body"});}
});
jQuery(window).on('load',  function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:3:{i:0;O:8:"stdClass":2:{s:4:"name";s:6:"farhad";s:4:"link";s:58:"index.php?option=com_content&view=article&id=5&Itemid=3025";}i:1;O:8:"stdClass":2:{s:4:"name";s:13:"Uncategorised";s:4:"link";s:47:"index.php?option=com_content&view=category&id=2";}i:2;O:8:"stdClass":2:{s:4:"name";s:3:"abc";s:4:"link";s:0:"";}}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-eba551c826e499c4acd8b32ddeb6e390.php000064400000012726151155312200021653
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:2887:"<div
class="item-page" itemscope
itemtype="https://schema.org/Article">
	<meta itemprop="inLanguage" content="fa-IR" />
	
		
			<div class="page-header">
		<h2 itemprop="headline">
			abc		</h2>
							</div>
							
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-1"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-1">
											<li class="print-icon"> <a
href="/index.php?option=com_content&amp;view=article&amp;id=1&amp;catid=2&amp;tmpl=component&amp;print=1&amp;layout=default&amp;Itemid=101"
title="چاپ مقاله < abc >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>
			
		1
						<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a
href="/index.php?option=com_content&amp;view=category&amp;id=2&amp;Itemid=101"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-03-04T15:50:15+00:00"
itemprop="datePublished">
					منتشر شده در 14 اسفند 1399				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:1029074" />
					بازدید: 1029074			</dd>						</dl>
	
	
		
								<div itemprop="articleBody">
		 	</div>

	
	<ul class="pager pagenav">
	<li class="previous">
		<a class="hasTooltip" title="4tere"
aria-label="مطلب قبلی: 4tere"
href="/index.php?option=com_content&amp;view=article&amp;id=5:4tere&amp;catid=2&amp;Itemid=3025"
rel="prev">
			<span class="icon-chevron-right"
aria-hidden="true"></span> <span
aria-hidden="true">قبلی</span>		</a>
	</li>
	<li class="next">
		<a class="hasTooltip" title="abb"
aria-label="مطلب بعدی: abb"
href="/index.php?option=com_content&amp;view=article&amp;id=2:0-2&amp;catid=2&amp;Itemid=101"
rel="next">
			<span aria-hidden="true">بعدی</span> <span
class="icon-chevron-left"
aria-hidden="true"></span>		</a>
	</li>
</ul>
							</div>
";s:4:"head";a:12:{s:5:"title";s:8:"lmsyaran";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:3:{s:8:"keywords";N;s:6:"rights";N;s:6:"author";s:6:"farhad";}}s:5:"links";a:0:{}s:11:"styleSheets";a:5:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:43:"/media/com_hikashop/css/safari_hikashop.css";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:6:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:30:"/media/jui/js/bootstrap.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";s:1:"0";s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:322:"jQuery(function($){
initTooltips(); $("body").on("subform-row-add",
initTooltips); function initTooltips (event, container) { container =
container ||
document;$(container).find(".hasTooltip").tooltip({"html":
true,"container": "body"});}
});
jQuery(window).on('load',  function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:0:{}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-dee3535441f59518a64b078c44f6c6b0.php000064400000012726151155312200021275
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:2887:"<div
class="item-page" itemscope
itemtype="https://schema.org/Article">
	<meta itemprop="inLanguage" content="fa-IR" />
	
		
			<div class="page-header">
		<h2 itemprop="headline">
			abc		</h2>
							</div>
							
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-1"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-1">
											<li class="print-icon"> <a
href="/index.php?option=com_content&amp;view=article&amp;id=1&amp;catid=2&amp;tmpl=component&amp;print=1&amp;layout=default&amp;Itemid=101"
title="چاپ مقاله < abc >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>
			
		1
						<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a
href="/index.php?option=com_content&amp;view=category&amp;id=2&amp;Itemid=101"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-03-04T15:50:15+00:00"
itemprop="datePublished">
					منتشر شده در 14 اسفند 1399				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:1029140" />
					بازدید: 1029140			</dd>						</dl>
	
	
		
								<div itemprop="articleBody">
		 	</div>

	
	<ul class="pager pagenav">
	<li class="previous">
		<a class="hasTooltip" title="4tere"
aria-label="مطلب قبلی: 4tere"
href="/index.php?option=com_content&amp;view=article&amp;id=5:4tere&amp;catid=2&amp;Itemid=3025"
rel="prev">
			<span class="icon-chevron-right"
aria-hidden="true"></span> <span
aria-hidden="true">قبلی</span>		</a>
	</li>
	<li class="next">
		<a class="hasTooltip" title="abb"
aria-label="مطلب بعدی: abb"
href="/index.php?option=com_content&amp;view=article&amp;id=2:0-2&amp;catid=2&amp;Itemid=101"
rel="next">
			<span aria-hidden="true">بعدی</span> <span
class="icon-chevron-left"
aria-hidden="true"></span>		</a>
	</li>
</ul>
							</div>
";s:4:"head";a:12:{s:5:"title";s:8:"lmsyaran";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:3:{s:8:"keywords";N;s:6:"rights";N;s:6:"author";s:6:"farhad";}}s:5:"links";a:0:{}s:11:"styleSheets";a:5:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:43:"/media/com_hikashop/css/safari_hikashop.css";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:6:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:30:"/media/jui/js/bootstrap.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";s:1:"0";s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:322:"jQuery(function($){
initTooltips(); $("body").on("subform-row-add",
initTooltips); function initTooltips (event, container) { container =
container ||
document;$(container).find(".hasTooltip").tooltip({"html":
true,"container": "body"});}
});
jQuery(window).on('load',  function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:0:{}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-101455b413f1b6dc97bf5ba31b6e0931.php000064400000010466151155312200021323
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:653:"<div
class="categories-list">
	
												<div  class="first" >
					<h3 class="page-header item-title">
				<a href="/2-uncategorised">
				Uncategorised</a>
									<span class="badge badge-info tip hasTooltip"
title="تعدات مقالات">
						تعداد مقالات:&nbsp;
						3					</span>
											</h3>
													
					</div>
							<div  class="last" >
					<h3 class="page-header item-title">
				<a href="/12-blog">
				blog</a>
									<span class="badge badge-info tip hasTooltip"
title="تعدات مقالات">
						تعداد مقالات:&nbsp;
						1					</span>
											</h3>
													
					</div>
			</div>
";s:4:"head";a:12:{s:5:"title";s:8:"lmsyaran";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:2:{s:8:"keywords";N;s:6:"rights";N;}}s:5:"links";a:0:{}s:11:"styleSheets";a:4:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:7:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:24:"/media/system/js/core.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:30:"/media/jui/js/bootstrap.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";s:1:"0";s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:833:"jQuery(window).on('load',
 function() {
				new JCaption('img.caption');
			});
jQuery(function($) {
	$('.categories-list').find('[id^=category-btn-]').each(function(index,
btn) {
		var btn = $(btn);
		btn.on('click', function() {
			btn.find('span').toggleClass('icon-plus');
			btn.find('span').toggleClass('icon-minus');
			if (btn.attr('aria-label') ===
Joomla.JText._('JGLOBAL_EXPAND_CATEGORIES'))
			{
				btn.attr('aria-label',
Joomla.JText._('JGLOBAL_COLLAPSE_CATEGORIES'));
			} else {
				btn.attr('aria-label',
Joomla.JText._('JGLOBAL_EXPAND_CATEGORIES'));
			}		
		});
	});
});
jQuery(function($){ initTooltips();
$("body").on("subform-row-add", initTooltips); function
initTooltips (event, container) { container = container ||
document;$(container).find(".hasTooltip").tooltip({"html":
true,"container": "body"});}
});";}s:6:"custom";a:0:{}s:10:"scriptText";a:2:{s:25:"JGLOBAL_EXPAND_CATEGORIES";s:34:"نمایش
مجموعه
بیشتر";s:27:"JGLOBAL_COLLAPSE_CATEGORIES";s:32:"نمایش
مجموعه
کمتر";}s:13:"scriptOptions";a:3:{s:10:"csrf.token";s:32:"4e02b31e2a96441785c0398c6bac282d";s:12:"system.paths";a:2:{s:4:"root";s:0:"";s:4:"base";s:0:"";}s:12:"joomla.jtext";a:2:{s:25:"JGLOBAL_EXPAND_CATEGORIES";s:34:"نمایش
مجموعه
بیشتر";s:27:"JGLOBAL_COLLAPSE_CATEGORIES";s:32:"نمایش
مجموعه
کمتر";}}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:0:{}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-b23bb0a9e26bfa1d3e6e68bdec7e5935.php000064400000011046151155312200021721
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:2101:"<div
class="item-page" itemscope
itemtype="https://schema.org/Article">
	<meta itemprop="inLanguage" content="fa-IR" />
	
		
			<div class="page-header">
		<h2 itemprop="headline">
			سلبسلی		</h2>
							</div>
							
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-4"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-4">
											<li class="print-icon"> <a
href="/12-blog/4-2021-06-27-11-47-33?tmpl=component&amp;print=1"
title="چاپ مقاله < سلبسلی >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>
			
		1
						<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a href="/12-blog"
itemprop="genre">blog</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-06-27T11:47:33+00:00"
itemprop="datePublished">
					منتشر شده در 06 تیر 1400				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:56" />
					بازدید: 56			</dd>						</dl>
	
	
		
								<div itemprop="articleBody">
		<p>لبیسلبیسلیس</p> 	</div>

	
							</div>
";s:4:"head";a:12:{s:5:"title";s:12:"سلبسلی";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:3:{s:8:"keywords";N;s:6:"rights";N;s:6:"author";s:6:"farhad";}}s:5:"links";a:0:{}s:11:"styleSheets";a:4:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:6:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:30:"/media/jui/js/bootstrap.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";s:1:"0";s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:79:"jQuery(window).on('load',
 function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:2:{i:0;O:8:"stdClass":2:{s:4:"name";s:4:"blog";s:4:"link";s:48:"index.php?option=com_content&view=category&id=12";}i:1;O:8:"stdClass":2:{s:4:"name";s:12:"سلبسلی";s:4:"link";s:0:"";}}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-e95b1fe3302c83974490920007f1d1bc.php000064400000012726151155312200021201
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:2887:"<div
class="item-page" itemscope
itemtype="https://schema.org/Article">
	<meta itemprop="inLanguage" content="fa-IR" />
	
		
			<div class="page-header">
		<h2 itemprop="headline">
			abc		</h2>
							</div>
							
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-1"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-1">
											<li class="print-icon"> <a
href="/index.php?option=com_content&amp;view=article&amp;id=1&amp;catid=2&amp;tmpl=component&amp;print=1&amp;layout=default&amp;Itemid=101"
title="چاپ مقاله < abc >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>
			
		1
						<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a
href="/index.php?option=com_content&amp;view=category&amp;id=2&amp;Itemid=101"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-03-04T15:50:15+00:00"
itemprop="datePublished">
					منتشر شده در 14 اسفند 1399				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:1029136" />
					بازدید: 1029136			</dd>						</dl>
	
	
		
								<div itemprop="articleBody">
		 	</div>

	
	<ul class="pager pagenav">
	<li class="previous">
		<a class="hasTooltip" title="4tere"
aria-label="مطلب قبلی: 4tere"
href="/index.php?option=com_content&amp;view=article&amp;id=5:4tere&amp;catid=2&amp;Itemid=3025"
rel="prev">
			<span class="icon-chevron-right"
aria-hidden="true"></span> <span
aria-hidden="true">قبلی</span>		</a>
	</li>
	<li class="next">
		<a class="hasTooltip" title="abb"
aria-label="مطلب بعدی: abb"
href="/index.php?option=com_content&amp;view=article&amp;id=2:0-2&amp;catid=2&amp;Itemid=101"
rel="next">
			<span aria-hidden="true">بعدی</span> <span
class="icon-chevron-left"
aria-hidden="true"></span>		</a>
	</li>
</ul>
							</div>
";s:4:"head";a:12:{s:5:"title";s:8:"lmsyaran";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:3:{s:8:"keywords";N;s:6:"rights";N;s:6:"author";s:6:"farhad";}}s:5:"links";a:0:{}s:11:"styleSheets";a:5:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:43:"/media/com_hikashop/css/safari_hikashop.css";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:6:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:30:"/media/jui/js/bootstrap.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";s:1:"0";s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:322:"jQuery(function($){
initTooltips(); $("body").on("subform-row-add",
initTooltips); function initTooltips (event, container) { container =
container ||
document;$(container).find(".hasTooltip").tooltip({"html":
true,"container": "body"});}
});
jQuery(window).on('load',  function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:0:{}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-91ea56c05c0e2100e9ce47d5b2a2b425.php000064400000007174151155312200021403
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:1369:"<div
class="item-page" itemscope
itemtype="https://schema.org/Article">
	<meta itemprop="inLanguage" content="fa-IR" />
	
		
			<div class="page-header">
		<h2 itemprop="headline">
			abc		</h2>
							</div>
							<div id="pop-print" class="btn
hidden-print">
				<a href="#" onclick="window.print();return
false;">			<span class="icon-print"
aria-hidden="true"></span>
		چاپ	</a>			</div>
			
		1
						<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a href="/2-uncategorised"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-03-04T15:50:15+00:00"
itemprop="datePublished">
					منتشر شده در 14 اسفند 1399				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:1037809" />
					بازدید: 1037809			</dd>						</dl>
	
	
		
								<div itemprop="articleBody">
		 	</div>

	
							</div>
";s:4:"head";a:12:{s:5:"title";s:3:"abc";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:4:{s:8:"keywords";N;s:6:"rights";N;s:6:"author";s:6:"farhad";s:6:"robots";s:17:"noindex,
nofollow";}}s:5:"links";a:0:{}s:11:"styleSheets";a:4:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:5:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:79:"jQuery(window).on('load',
 function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:2:{i:0;O:8:"stdClass":2:{s:4:"name";s:13:"Uncategorised";s:4:"link";s:47:"index.php?option=com_content&view=category&id=2";}i:1;O:8:"stdClass":2:{s:4:"name";s:3:"abc";s:4:"link";s:0:"";}}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-d989d8ec67a682a5db1471b9cb59f429.php000064400000011741151155312200021456
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:2367:"<div
class="item-page" itemscope
itemtype="https://schema.org/Article">
	<meta itemprop="inLanguage" content="fa-IR" />
	
		
			<div class="page-header">
		<h2 itemprop="headline">
			4tere		</h2>
							</div>
							
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-5"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-5">
											<li class="print-icon"> <a
href="/farhad?tmpl=component&amp;print=1" title="چاپ
مقاله < 4tere >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>
			
		1
						<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a href="/farhad/2-uncategorised"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-06-27T11:51:10+00:00"
itemprop="datePublished">
					منتشر شده در 06 تیر 1400				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:156" />
					بازدید: 156			</dd>						</dl>
	
	
		
								<div itemprop="articleBody">
		<p>rtetretrtre</p> 	</div>

	
	<ul class="pager pagenav">
	<li class="next">
		<a class="hasTooltip" title="abc"
aria-label="مطلب بعدی: abc"
href="/farhad/2-uncategorised/1-0" rel="next">
			<span aria-hidden="true">بعدی</span> <span
class="icon-chevron-left"
aria-hidden="true"></span>		</a>
	</li>
</ul>
							</div>
";s:4:"head";a:12:{s:5:"title";s:6:"farhad";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:3:{s:8:"keywords";N;s:6:"rights";N;s:6:"author";s:6:"farhad";}}s:5:"links";a:0:{}s:11:"styleSheets";a:4:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:6:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:30:"/media/jui/js/bootstrap.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";s:1:"0";s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:322:"jQuery(function($){
initTooltips(); $("body").on("subform-row-add",
initTooltips); function initTooltips (event, container) { container =
container ||
document;$(container).find(".hasTooltip").tooltip({"html":
true,"container": "body"});}
});
jQuery(window).on('load',  function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:1:{i:0;O:8:"stdClass":2:{s:4:"name";s:6:"farhad";s:4:"link";s:58:"index.php?option=com_content&view=article&id=5&Itemid=3025";}}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-8630b518a73ea7e5f066b4f1e1db57c5.php000064400000012726151155312200021430
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:2887:"<div
class="item-page" itemscope
itemtype="https://schema.org/Article">
	<meta itemprop="inLanguage" content="fa-IR" />
	
		
			<div class="page-header">
		<h2 itemprop="headline">
			abc		</h2>
							</div>
							
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-1"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-1">
											<li class="print-icon"> <a
href="/index.php?option=com_content&amp;view=article&amp;id=1&amp;catid=2&amp;tmpl=component&amp;print=1&amp;layout=default&amp;Itemid=101"
title="چاپ مقاله < abc >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>
			
		1
						<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a
href="/index.php?option=com_content&amp;view=category&amp;id=2&amp;Itemid=101"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-03-04T15:50:15+00:00"
itemprop="datePublished">
					منتشر شده در 14 اسفند 1399				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:1029146" />
					بازدید: 1029146			</dd>						</dl>
	
	
		
								<div itemprop="articleBody">
		 	</div>

	
	<ul class="pager pagenav">
	<li class="previous">
		<a class="hasTooltip" title="4tere"
aria-label="مطلب قبلی: 4tere"
href="/index.php?option=com_content&amp;view=article&amp;id=5:4tere&amp;catid=2&amp;Itemid=3025"
rel="prev">
			<span class="icon-chevron-right"
aria-hidden="true"></span> <span
aria-hidden="true">قبلی</span>		</a>
	</li>
	<li class="next">
		<a class="hasTooltip" title="abb"
aria-label="مطلب بعدی: abb"
href="/index.php?option=com_content&amp;view=article&amp;id=2:0-2&amp;catid=2&amp;Itemid=101"
rel="next">
			<span aria-hidden="true">بعدی</span> <span
class="icon-chevron-left"
aria-hidden="true"></span>		</a>
	</li>
</ul>
							</div>
";s:4:"head";a:12:{s:5:"title";s:8:"lmsyaran";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:3:{s:8:"keywords";N;s:6:"rights";N;s:6:"author";s:6:"farhad";}}s:5:"links";a:0:{}s:11:"styleSheets";a:5:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:43:"/media/com_hikashop/css/safari_hikashop.css";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:6:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:30:"/media/jui/js/bootstrap.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";s:1:"0";s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:322:"jQuery(function($){
initTooltips(); $("body").on("subform-row-add",
initTooltips); function initTooltips (event, container) { container =
container ||
document;$(container).find(".hasTooltip").tooltip({"html":
true,"container": "body"});}
});
jQuery(window).on('load',  function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:0:{}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-352d13d0a87439f99a76dba5c6496125.php000064400000012236151155312200021216
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:2376:"<div
class="item-page" itemscope
itemtype="https://schema.org/Article">
	<meta itemprop="inLanguage" content="fa-IR" />
	
		
			<div class="page-header">
		<h2 itemprop="headline">
			abb		</h2>
							</div>
							
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-2"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-2">
											<li class="print-icon"> <a
href="/farhad/2-uncategorised/2-0-2?tmpl=component&amp;print=1"
title="چاپ مقاله < abb >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>
			
		1
						<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a href="/farhad/2-uncategorised"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-03-04T15:50:15+00:00"
itemprop="datePublished">
					منتشر شده در 14 اسفند 1399				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:390" />
					بازدید: 390			</dd>						</dl>
	
	
		
								<div itemprop="articleBody">
		 	</div>

	
	<ul class="pager pagenav">
	<li class="previous">
		<a class="hasTooltip" title="abc"
aria-label="مطلب قبلی: abc"
href="/farhad/2-uncategorised/1-0" rel="prev">
			<span class="icon-chevron-right"
aria-hidden="true"></span> <span
aria-hidden="true">قبلی</span>		</a>
	</li>
</ul>
							</div>
";s:4:"head";a:12:{s:5:"title";s:3:"abb";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:3:{s:8:"keywords";N;s:6:"rights";N;s:6:"author";s:6:"farhad";}}s:5:"links";a:0:{}s:11:"styleSheets";a:4:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:6:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:30:"/media/jui/js/bootstrap.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";s:1:"0";s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:322:"jQuery(function($){
initTooltips(); $("body").on("subform-row-add",
initTooltips); function initTooltips (event, container) { container =
container ||
document;$(container).find(".hasTooltip").tooltip({"html":
true,"container": "body"});}
});
jQuery(window).on('load',  function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:3:{i:0;O:8:"stdClass":2:{s:4:"name";s:6:"farhad";s:4:"link";s:58:"index.php?option=com_content&view=article&id=5&Itemid=3025";}i:1;O:8:"stdClass":2:{s:4:"name";s:13:"Uncategorised";s:4:"link";s:47:"index.php?option=com_content&view=category&id=2";}i:2;O:8:"stdClass":2:{s:4:"name";s:3:"abb";s:4:"link";s:0:"";}}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-feed09103cf49cd668950022514fedb7.php000064400000012726151155312210021435
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:2887:"<div
class="item-page" itemscope
itemtype="https://schema.org/Article">
	<meta itemprop="inLanguage" content="fa-IR" />
	
		
			<div class="page-header">
		<h2 itemprop="headline">
			abc		</h2>
							</div>
							
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-1"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-1">
											<li class="print-icon"> <a
href="/index.php?option=com_content&amp;view=article&amp;id=1&amp;catid=2&amp;tmpl=component&amp;print=1&amp;layout=default&amp;Itemid=101"
title="چاپ مقاله < abc >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>
			
		1
						<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a
href="/index.php?option=com_content&amp;view=category&amp;id=2&amp;Itemid=101"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-03-04T15:50:15+00:00"
itemprop="datePublished">
					منتشر شده در 14 اسفند 1399				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:1029150" />
					بازدید: 1029150			</dd>						</dl>
	
	
		
								<div itemprop="articleBody">
		 	</div>

	
	<ul class="pager pagenav">
	<li class="previous">
		<a class="hasTooltip" title="4tere"
aria-label="مطلب قبلی: 4tere"
href="/index.php?option=com_content&amp;view=article&amp;id=5:4tere&amp;catid=2&amp;Itemid=3025"
rel="prev">
			<span class="icon-chevron-right"
aria-hidden="true"></span> <span
aria-hidden="true">قبلی</span>		</a>
	</li>
	<li class="next">
		<a class="hasTooltip" title="abb"
aria-label="مطلب بعدی: abb"
href="/index.php?option=com_content&amp;view=article&amp;id=2:0-2&amp;catid=2&amp;Itemid=101"
rel="next">
			<span aria-hidden="true">بعدی</span> <span
class="icon-chevron-left"
aria-hidden="true"></span>		</a>
	</li>
</ul>
							</div>
";s:4:"head";a:12:{s:5:"title";s:8:"lmsyaran";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:3:{s:8:"keywords";N;s:6:"rights";N;s:6:"author";s:6:"farhad";}}s:5:"links";a:0:{}s:11:"styleSheets";a:5:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:43:"/media/com_hikashop/css/safari_hikashop.css";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:6:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:30:"/media/jui/js/bootstrap.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";s:1:"0";s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:322:"jQuery(function($){
initTooltips(); $("body").on("subform-row-add",
initTooltips); function initTooltips (event, container) { container =
container ||
document;$(container).find(".hasTooltip").tooltip({"html":
true,"container": "body"});}
});
jQuery(window).on('load',  function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:0:{}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-af26bd1fc92b39a6d18e3d7b3c9f1698.php000064400000012017151155312210021576
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:2353:"<div
class="item-page" itemscope
itemtype="https://schema.org/Article">
	<meta itemprop="inLanguage" content="fa-IR" />
	
		
			<div class="page-header">
		<h2 itemprop="headline">
			4tere		</h2>
							</div>
							
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-5"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-5">
											<li class="print-icon"> <a
href="/farhad?tmpl=component&amp;print=1" title="چاپ
مقاله < 4tere >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>
			
		1
						<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a href="/2-uncategorised"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-06-27T11:51:10+00:00"
itemprop="datePublished">
					منتشر شده در 06 تیر 1400				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:271" />
					بازدید: 271			</dd>						</dl>
	
	
		
								<div itemprop="articleBody">
		<p>rtetretrtre</p> 	</div>

	
	<ul class="pager pagenav">
	<li class="next">
		<a class="hasTooltip" title="abc"
aria-label="مطلب بعدی: abc"
href="/2-uncategorised/1-0" rel="next">
			<span aria-hidden="true">بعدی</span> <span
class="icon-chevron-left"
aria-hidden="true"></span>		</a>
	</li>
</ul>
							</div>
";s:4:"head";a:12:{s:5:"title";s:5:"4tere";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:3:{s:8:"keywords";N;s:6:"rights";N;s:6:"author";s:6:"farhad";}}s:5:"links";a:0:{}s:11:"styleSheets";a:4:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:6:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:30:"/media/jui/js/bootstrap.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";s:1:"0";s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:322:"jQuery(function($){
initTooltips(); $("body").on("subform-row-add",
initTooltips); function initTooltips (event, container) { container =
container ||
document;$(container).find(".hasTooltip").tooltip({"html":
true,"container": "body"});}
});
jQuery(window).on('load',  function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:2:{i:0;O:8:"stdClass":2:{s:4:"name";s:13:"Uncategorised";s:4:"link";s:47:"index.php?option=com_content&view=category&id=2";}i:1;O:8:"stdClass":2:{s:4:"name";s:5:"4tere";s:4:"link";s:0:"";}}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-3efe7e63b432270d68a00609be04f31f.php000064400000012726151155312210021340
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:2887:"<div
class="item-page" itemscope
itemtype="https://schema.org/Article">
	<meta itemprop="inLanguage" content="fa-IR" />
	
		
			<div class="page-header">
		<h2 itemprop="headline">
			abc		</h2>
							</div>
							
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-1"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-1">
											<li class="print-icon"> <a
href="/index.php?option=com_content&amp;view=article&amp;id=1&amp;catid=2&amp;tmpl=component&amp;print=1&amp;layout=default&amp;Itemid=101"
title="چاپ مقاله < abc >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>
			
		1
						<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a
href="/index.php?option=com_content&amp;view=category&amp;id=2&amp;Itemid=101"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-03-04T15:50:15+00:00"
itemprop="datePublished">
					منتشر شده در 14 اسفند 1399				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:1029072" />
					بازدید: 1029072			</dd>						</dl>
	
	
		
								<div itemprop="articleBody">
		 	</div>

	
	<ul class="pager pagenav">
	<li class="previous">
		<a class="hasTooltip" title="4tere"
aria-label="مطلب قبلی: 4tere"
href="/index.php?option=com_content&amp;view=article&amp;id=5:4tere&amp;catid=2&amp;Itemid=3025"
rel="prev">
			<span class="icon-chevron-right"
aria-hidden="true"></span> <span
aria-hidden="true">قبلی</span>		</a>
	</li>
	<li class="next">
		<a class="hasTooltip" title="abb"
aria-label="مطلب بعدی: abb"
href="/index.php?option=com_content&amp;view=article&amp;id=2:0-2&amp;catid=2&amp;Itemid=101"
rel="next">
			<span aria-hidden="true">بعدی</span> <span
class="icon-chevron-left"
aria-hidden="true"></span>		</a>
	</li>
</ul>
							</div>
";s:4:"head";a:12:{s:5:"title";s:8:"lmsyaran";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:3:{s:8:"keywords";N;s:6:"rights";N;s:6:"author";s:6:"farhad";}}s:5:"links";a:0:{}s:11:"styleSheets";a:5:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:43:"/media/com_hikashop/css/safari_hikashop.css";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:6:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:30:"/media/jui/js/bootstrap.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";s:1:"0";s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:322:"jQuery(function($){
initTooltips(); $("body").on("subform-row-add",
initTooltips); function initTooltips (event, container) { container =
container ||
document;$(container).find(".hasTooltip").tooltip({"html":
true,"container": "body"});}
});
jQuery(window).on('load',  function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:0:{}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-f109742b4adabbe4abfcefaadb5e3b56.php000064400000012121151155312210022173
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:2601:"<div
class="item-page" itemscope
itemtype="https://schema.org/Article">
	<meta itemprop="inLanguage" content="fa-IR" />
	
		
			<div class="page-header">
		<h2 itemprop="headline">
			abc		</h2>
							</div>
							
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-1"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-1">
											<li class="print-icon"> <a
href="/2-uncategorised/1-0?tmpl=component&amp;print=1"
title="چاپ مقاله < abc >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>
			
		1
						<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a href="/2-uncategorised"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-03-04T15:50:15+00:00"
itemprop="datePublished">
					منتشر شده در 14 اسفند 1399				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:1038176" />
					بازدید: 1038176			</dd>						</dl>
	
	
		
								<div itemprop="articleBody">
		 	</div>

	
	<ul class="pager pagenav">
	<li class="previous">
		<a class="hasTooltip" title="4tere"
aria-label="مطلب قبلی: 4tere" href="/farhad"
rel="prev">
			<span class="icon-chevron-right"
aria-hidden="true"></span> <span
aria-hidden="true">قبلی</span>		</a>
	</li>
	<li class="next">
		<a class="hasTooltip" title="abb"
aria-label="مطلب بعدی: abb"
href="/2-uncategorised/2-0-2" rel="next">
			<span aria-hidden="true">بعدی</span> <span
class="icon-chevron-left"
aria-hidden="true"></span>		</a>
	</li>
</ul>
							</div>
";s:4:"head";a:12:{s:5:"title";s:8:"lmsyaran";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:3:{s:8:"keywords";N;s:6:"rights";N;s:6:"author";s:6:"farhad";}}s:5:"links";a:0:{}s:11:"styleSheets";a:4:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:6:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:30:"/media/jui/js/bootstrap.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";s:1:"0";s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:322:"jQuery(function($){
initTooltips(); $("body").on("subform-row-add",
initTooltips); function initTooltips (event, container) { container =
container ||
document;$(container).find(".hasTooltip").tooltip({"html":
true,"container": "body"});}
});
jQuery(window).on('load',  function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:0:{}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-e9ed70e51b8fa8b79f3047acaf4e207a.php000064400000011531151155312210021646
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:2353:"<div
class="item-page" itemscope
itemtype="https://schema.org/Article">
	<meta itemprop="inLanguage" content="fa-IR" />
	
		
			<div class="page-header">
		<h2 itemprop="headline">
			4tere		</h2>
							</div>
							
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-5"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-5">
											<li class="print-icon"> <a
href="/farhad?tmpl=component&amp;print=1" title="چاپ
مقاله < 4tere >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>
			
		1
						<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a href="/2-uncategorised"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-06-27T11:51:10+00:00"
itemprop="datePublished">
					منتشر شده در 06 تیر 1400				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:297" />
					بازدید: 297			</dd>						</dl>
	
	
		
								<div itemprop="articleBody">
		<p>rtetretrtre</p> 	</div>

	
	<ul class="pager pagenav">
	<li class="next">
		<a class="hasTooltip" title="abc"
aria-label="مطلب بعدی: abc"
href="/2-uncategorised/1-0" rel="next">
			<span aria-hidden="true">بعدی</span> <span
class="icon-chevron-left"
aria-hidden="true"></span>		</a>
	</li>
</ul>
							</div>
";s:4:"head";a:12:{s:5:"title";s:8:"lmsyaran";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:3:{s:8:"keywords";N;s:6:"rights";N;s:6:"author";s:6:"farhad";}}s:5:"links";a:0:{}s:11:"styleSheets";a:4:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:6:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:30:"/media/jui/js/bootstrap.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";s:1:"0";s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:322:"jQuery(function($){
initTooltips(); $("body").on("subform-row-add",
initTooltips); function initTooltips (event, container) { container =
container ||
document;$(container).find(".hasTooltip").tooltip({"html":
true,"container": "body"});}
});
jQuery(window).on('load',  function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:0:{}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-b30c0e8236279de890d94570f46f2a73.php000064400000012726151155312210021223
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:2887:"<div
class="item-page" itemscope
itemtype="https://schema.org/Article">
	<meta itemprop="inLanguage" content="fa-IR" />
	
		
			<div class="page-header">
		<h2 itemprop="headline">
			abc		</h2>
							</div>
							
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-1"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-1">
											<li class="print-icon"> <a
href="/index.php?option=com_content&amp;view=article&amp;id=1&amp;catid=2&amp;tmpl=component&amp;print=1&amp;layout=default&amp;Itemid=101"
title="چاپ مقاله < abc >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>
			
		1
						<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a
href="/index.php?option=com_content&amp;view=category&amp;id=2&amp;Itemid=101"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-03-04T15:50:15+00:00"
itemprop="datePublished">
					منتشر شده در 14 اسفند 1399				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:1029262" />
					بازدید: 1029262			</dd>						</dl>
	
	
		
								<div itemprop="articleBody">
		 	</div>

	
	<ul class="pager pagenav">
	<li class="previous">
		<a class="hasTooltip" title="4tere"
aria-label="مطلب قبلی: 4tere"
href="/index.php?option=com_content&amp;view=article&amp;id=5:4tere&amp;catid=2&amp;Itemid=3025"
rel="prev">
			<span class="icon-chevron-right"
aria-hidden="true"></span> <span
aria-hidden="true">قبلی</span>		</a>
	</li>
	<li class="next">
		<a class="hasTooltip" title="abb"
aria-label="مطلب بعدی: abb"
href="/index.php?option=com_content&amp;view=article&amp;id=2:0-2&amp;catid=2&amp;Itemid=101"
rel="next">
			<span aria-hidden="true">بعدی</span> <span
class="icon-chevron-left"
aria-hidden="true"></span>		</a>
	</li>
</ul>
							</div>
";s:4:"head";a:12:{s:5:"title";s:8:"lmsyaran";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:3:{s:8:"keywords";N;s:6:"rights";N;s:6:"author";s:6:"farhad";}}s:5:"links";a:0:{}s:11:"styleSheets";a:5:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:43:"/media/com_hikashop/css/safari_hikashop.css";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:6:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:30:"/media/jui/js/bootstrap.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";s:1:"0";s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:322:"jQuery(function($){
initTooltips(); $("body").on("subform-row-add",
initTooltips); function initTooltips (event, container) { container =
container ||
document;$(container).find(".hasTooltip").tooltip({"html":
true,"container": "body"});}
});
jQuery(window).on('load',  function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:0:{}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-0436b14998f4245682e688a4e1452a99.php000064400000012121151155312210021003
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:2601:"<div
class="item-page" itemscope
itemtype="https://schema.org/Article">
	<meta itemprop="inLanguage" content="fa-IR" />
	
		
			<div class="page-header">
		<h2 itemprop="headline">
			abc		</h2>
							</div>
							
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-1"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-1">
											<li class="print-icon"> <a
href="/2-uncategorised/1-0?tmpl=component&amp;print=1"
title="چاپ مقاله < abc >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>
			
		1
						<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a href="/2-uncategorised"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-03-04T15:50:15+00:00"
itemprop="datePublished">
					منتشر شده در 14 اسفند 1399				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:1037065" />
					بازدید: 1037065			</dd>						</dl>
	
	
		
								<div itemprop="articleBody">
		 	</div>

	
	<ul class="pager pagenav">
	<li class="previous">
		<a class="hasTooltip" title="4tere"
aria-label="مطلب قبلی: 4tere" href="/farhad"
rel="prev">
			<span class="icon-chevron-right"
aria-hidden="true"></span> <span
aria-hidden="true">قبلی</span>		</a>
	</li>
	<li class="next">
		<a class="hasTooltip" title="abb"
aria-label="مطلب بعدی: abb"
href="/2-uncategorised/2-0-2" rel="next">
			<span aria-hidden="true">بعدی</span> <span
class="icon-chevron-left"
aria-hidden="true"></span>		</a>
	</li>
</ul>
							</div>
";s:4:"head";a:12:{s:5:"title";s:8:"lmsyaran";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:3:{s:8:"keywords";N;s:6:"rights";N;s:6:"author";s:6:"farhad";}}s:5:"links";a:0:{}s:11:"styleSheets";a:4:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:6:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:30:"/media/jui/js/bootstrap.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";s:1:"0";s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:322:"jQuery(function($){
initTooltips(); $("body").on("subform-row-add",
initTooltips); function initTooltips (event, container) { container =
container ||
document;$(container).find(".hasTooltip").tooltip({"html":
true,"container": "body"});}
});
jQuery(window).on('load',  function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:0:{}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-6098f0ce6b333883dc7713a53f0807dd.php000064400000012726151155312210021277
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:2887:"<div
class="item-page" itemscope
itemtype="https://schema.org/Article">
	<meta itemprop="inLanguage" content="fa-IR" />
	
		
			<div class="page-header">
		<h2 itemprop="headline">
			abc		</h2>
							</div>
							
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-1"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-1">
											<li class="print-icon"> <a
href="/index.php?option=com_content&amp;view=article&amp;id=1&amp;catid=2&amp;tmpl=component&amp;print=1&amp;layout=default&amp;Itemid=101"
title="چاپ مقاله < abc >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>
			
		1
						<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a
href="/index.php?option=com_content&amp;view=category&amp;id=2&amp;Itemid=101"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-03-04T15:50:15+00:00"
itemprop="datePublished">
					منتشر شده در 14 اسفند 1399				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:1029077" />
					بازدید: 1029077			</dd>						</dl>
	
	
		
								<div itemprop="articleBody">
		 	</div>

	
	<ul class="pager pagenav">
	<li class="previous">
		<a class="hasTooltip" title="4tere"
aria-label="مطلب قبلی: 4tere"
href="/index.php?option=com_content&amp;view=article&amp;id=5:4tere&amp;catid=2&amp;Itemid=3025"
rel="prev">
			<span class="icon-chevron-right"
aria-hidden="true"></span> <span
aria-hidden="true">قبلی</span>		</a>
	</li>
	<li class="next">
		<a class="hasTooltip" title="abb"
aria-label="مطلب بعدی: abb"
href="/index.php?option=com_content&amp;view=article&amp;id=2:0-2&amp;catid=2&amp;Itemid=101"
rel="next">
			<span aria-hidden="true">بعدی</span> <span
class="icon-chevron-left"
aria-hidden="true"></span>		</a>
	</li>
</ul>
							</div>
";s:4:"head";a:12:{s:5:"title";s:8:"lmsyaran";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:3:{s:8:"keywords";N;s:6:"rights";N;s:6:"author";s:6:"farhad";}}s:5:"links";a:0:{}s:11:"styleSheets";a:5:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:43:"/media/com_hikashop/css/safari_hikashop.css";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:6:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:30:"/media/jui/js/bootstrap.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";s:1:"0";s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:322:"jQuery(function($){
initTooltips(); $("body").on("subform-row-add",
initTooltips); function initTooltips (event, container) { container =
container ||
document;$(container).find(".hasTooltip").tooltip({"html":
true,"container": "body"});}
});
jQuery(window).on('load',  function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:0:{}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-b1080598935b4b9b71b3cc2cfac8553b.php000064400000012240151155312210021414
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:2577:"<div
class="item-page" itemscope
itemtype="https://schema.org/Article">
	<meta itemprop="inLanguage" content="fa-IR" />
	
		
			<div class="page-header">
		<h2 itemprop="headline">
			4tere		</h2>
							</div>
							
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-5"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-5">
											<li class="print-icon"> <a
href="/index.php?option=com_content&amp;view=article&amp;id=5:4tere&amp;catid=2&amp;tmpl=component&amp;print=1&amp;layout=default&amp;Itemid=3025"
title="چاپ مقاله < 4tere >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>
			
		1
						<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a
href="/index.php?option=com_content&amp;view=category&amp;id=2&amp;Itemid=101"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-06-27T11:51:10+00:00"
itemprop="datePublished">
					منتشر شده در 06 تیر 1400				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:124" />
					بازدید: 124			</dd>						</dl>
	
	
		
								<div itemprop="articleBody">
		<p>rtetretrtre</p> 	</div>

	
	<ul class="pager pagenav">
	<li class="next">
		<a class="hasTooltip" title="abc"
aria-label="مطلب بعدی: abc"
href="/index.php?option=com_content&amp;view=article&amp;id=1:0&amp;catid=2&amp;Itemid=101"
rel="next">
			<span aria-hidden="true">بعدی</span> <span
class="icon-chevron-left"
aria-hidden="true"></span>		</a>
	</li>
</ul>
							</div>
";s:4:"head";a:12:{s:5:"title";s:8:"lmsyaran";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:3:{s:8:"keywords";N;s:6:"rights";N;s:6:"author";s:6:"farhad";}}s:5:"links";a:0:{}s:11:"styleSheets";a:5:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:43:"/media/com_hikashop/css/safari_hikashop.css";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:6:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:30:"/media/jui/js/bootstrap.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";s:1:"0";s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:322:"jQuery(function($){
initTooltips(); $("body").on("subform-row-add",
initTooltips); function initTooltips (event, container) { container =
container ||
document;$(container).find(".hasTooltip").tooltip({"html":
true,"container": "body"});}
});
jQuery(window).on('load',  function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:0:{}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-ee6e36ab1ee0e024ec780e8dd80988e6.php000064400000012726151155312210021606
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:2887:"<div
class="item-page" itemscope
itemtype="https://schema.org/Article">
	<meta itemprop="inLanguage" content="fa-IR" />
	
		
			<div class="page-header">
		<h2 itemprop="headline">
			abc		</h2>
							</div>
							
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-1"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-1">
											<li class="print-icon"> <a
href="/index.php?option=com_content&amp;view=article&amp;id=1&amp;catid=2&amp;tmpl=component&amp;print=1&amp;layout=default&amp;Itemid=101"
title="چاپ مقاله < abc >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>
			
		1
						<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a
href="/index.php?option=com_content&amp;view=category&amp;id=2&amp;Itemid=101"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-03-04T15:50:15+00:00"
itemprop="datePublished">
					منتشر شده در 14 اسفند 1399				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:1029086" />
					بازدید: 1029086			</dd>						</dl>
	
	
		
								<div itemprop="articleBody">
		 	</div>

	
	<ul class="pager pagenav">
	<li class="previous">
		<a class="hasTooltip" title="4tere"
aria-label="مطلب قبلی: 4tere"
href="/index.php?option=com_content&amp;view=article&amp;id=5:4tere&amp;catid=2&amp;Itemid=3025"
rel="prev">
			<span class="icon-chevron-right"
aria-hidden="true"></span> <span
aria-hidden="true">قبلی</span>		</a>
	</li>
	<li class="next">
		<a class="hasTooltip" title="abb"
aria-label="مطلب بعدی: abb"
href="/index.php?option=com_content&amp;view=article&amp;id=2:0-2&amp;catid=2&amp;Itemid=101"
rel="next">
			<span aria-hidden="true">بعدی</span> <span
class="icon-chevron-left"
aria-hidden="true"></span>		</a>
	</li>
</ul>
							</div>
";s:4:"head";a:12:{s:5:"title";s:8:"lmsyaran";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:3:{s:8:"keywords";N;s:6:"rights";N;s:6:"author";s:6:"farhad";}}s:5:"links";a:0:{}s:11:"styleSheets";a:5:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:43:"/media/com_hikashop/css/safari_hikashop.css";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:6:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:30:"/media/jui/js/bootstrap.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";s:1:"0";s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:322:"jQuery(function($){
initTooltips(); $("body").on("subform-row-add",
initTooltips); function initTooltips (event, container) { container =
container ||
document;$(container).find(".hasTooltip").tooltip({"html":
true,"container": "body"});}
});
jQuery(window).on('load',  function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:0:{}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-265938acfbbff4f56f41a10c67efe0fd.php000064400000012726151155312210021736
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:2887:"<div
class="item-page" itemscope
itemtype="https://schema.org/Article">
	<meta itemprop="inLanguage" content="fa-IR" />
	
		
			<div class="page-header">
		<h2 itemprop="headline">
			abc		</h2>
							</div>
							
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-1"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-1">
											<li class="print-icon"> <a
href="/index.php?option=com_content&amp;view=article&amp;id=1&amp;catid=2&amp;tmpl=component&amp;print=1&amp;layout=default&amp;Itemid=101"
title="چاپ مقاله < abc >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>
			
		1
						<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a
href="/index.php?option=com_content&amp;view=category&amp;id=2&amp;Itemid=101"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-03-04T15:50:15+00:00"
itemprop="datePublished">
					منتشر شده در 14 اسفند 1399				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:1029266" />
					بازدید: 1029266			</dd>						</dl>
	
	
		
								<div itemprop="articleBody">
		 	</div>

	
	<ul class="pager pagenav">
	<li class="previous">
		<a class="hasTooltip" title="4tere"
aria-label="مطلب قبلی: 4tere"
href="/index.php?option=com_content&amp;view=article&amp;id=5:4tere&amp;catid=2&amp;Itemid=3025"
rel="prev">
			<span class="icon-chevron-right"
aria-hidden="true"></span> <span
aria-hidden="true">قبلی</span>		</a>
	</li>
	<li class="next">
		<a class="hasTooltip" title="abb"
aria-label="مطلب بعدی: abb"
href="/index.php?option=com_content&amp;view=article&amp;id=2:0-2&amp;catid=2&amp;Itemid=101"
rel="next">
			<span aria-hidden="true">بعدی</span> <span
class="icon-chevron-left"
aria-hidden="true"></span>		</a>
	</li>
</ul>
							</div>
";s:4:"head";a:12:{s:5:"title";s:8:"lmsyaran";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:3:{s:8:"keywords";N;s:6:"rights";N;s:6:"author";s:6:"farhad";}}s:5:"links";a:0:{}s:11:"styleSheets";a:5:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:43:"/media/com_hikashop/css/safari_hikashop.css";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:6:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:30:"/media/jui/js/bootstrap.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";s:1:"0";s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:322:"jQuery(function($){
initTooltips(); $("body").on("subform-row-add",
initTooltips); function initTooltips (event, container) { container =
container ||
document;$(container).find(".hasTooltip").tooltip({"html":
true,"container": "body"});}
});
jQuery(window).on('load',  function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:0:{}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-4e3777ae050fc5b63b7329219f367296.php000064400000012726151155312210021146
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:2887:"<div
class="item-page" itemscope
itemtype="https://schema.org/Article">
	<meta itemprop="inLanguage" content="fa-IR" />
	
		
			<div class="page-header">
		<h2 itemprop="headline">
			abc		</h2>
							</div>
							
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-1"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-1">
											<li class="print-icon"> <a
href="/index.php?option=com_content&amp;view=article&amp;id=1&amp;catid=2&amp;tmpl=component&amp;print=1&amp;layout=default&amp;Itemid=101"
title="چاپ مقاله < abc >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>
			
		1
						<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a
href="/index.php?option=com_content&amp;view=category&amp;id=2&amp;Itemid=101"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-03-04T15:50:15+00:00"
itemprop="datePublished">
					منتشر شده در 14 اسفند 1399				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:1029277" />
					بازدید: 1029277			</dd>						</dl>
	
	
		
								<div itemprop="articleBody">
		 	</div>

	
	<ul class="pager pagenav">
	<li class="previous">
		<a class="hasTooltip" title="4tere"
aria-label="مطلب قبلی: 4tere"
href="/index.php?option=com_content&amp;view=article&amp;id=5:4tere&amp;catid=2&amp;Itemid=3025"
rel="prev">
			<span class="icon-chevron-right"
aria-hidden="true"></span> <span
aria-hidden="true">قبلی</span>		</a>
	</li>
	<li class="next">
		<a class="hasTooltip" title="abb"
aria-label="مطلب بعدی: abb"
href="/index.php?option=com_content&amp;view=article&amp;id=2:0-2&amp;catid=2&amp;Itemid=101"
rel="next">
			<span aria-hidden="true">بعدی</span> <span
class="icon-chevron-left"
aria-hidden="true"></span>		</a>
	</li>
</ul>
							</div>
";s:4:"head";a:12:{s:5:"title";s:8:"lmsyaran";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:3:{s:8:"keywords";N;s:6:"rights";N;s:6:"author";s:6:"farhad";}}s:5:"links";a:0:{}s:11:"styleSheets";a:5:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:43:"/media/com_hikashop/css/safari_hikashop.css";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:6:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:30:"/media/jui/js/bootstrap.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";s:1:"0";s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:322:"jQuery(function($){
initTooltips(); $("body").on("subform-row-add",
initTooltips); function initTooltips (event, container) { container =
container ||
document;$(container).find(".hasTooltip").tooltip({"html":
true,"container": "body"});}
});
jQuery(window).on('load',  function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:0:{}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-4184eb9103e7789276f5fa9f243ccee7.php000064400000007174151155312210021401
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:1369:"<div
class="item-page" itemscope
itemtype="https://schema.org/Article">
	<meta itemprop="inLanguage" content="fa-IR" />
	
		
			<div class="page-header">
		<h2 itemprop="headline">
			abc		</h2>
							</div>
							<div id="pop-print" class="btn
hidden-print">
				<a href="#" onclick="window.print();return
false;">			<span class="icon-print"
aria-hidden="true"></span>
		چاپ	</a>			</div>
			
		1
						<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a href="/2-uncategorised"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-03-04T15:50:15+00:00"
itemprop="datePublished">
					منتشر شده در 14 اسفند 1399				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:1038173" />
					بازدید: 1038173			</dd>						</dl>
	
	
		
								<div itemprop="articleBody">
		 	</div>

	
							</div>
";s:4:"head";a:12:{s:5:"title";s:3:"abc";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:4:{s:8:"keywords";N;s:6:"rights";N;s:6:"author";s:6:"farhad";s:6:"robots";s:17:"noindex,
nofollow";}}s:5:"links";a:0:{}s:11:"styleSheets";a:4:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:5:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:79:"jQuery(window).on('load',
 function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:2:{i:0;O:8:"stdClass":2:{s:4:"name";s:13:"Uncategorised";s:4:"link";s:47:"index.php?option=com_content&view=category&id=2";}i:1;O:8:"stdClass":2:{s:4:"name";s:3:"abc";s:4:"link";s:0:"";}}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-f5a53e2ba677b22cb5db94907df83cb6.php000064400000022646151155312210021576
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:6700:"<div
class="blog" itemscope
itemtype="https://schema.org/Blog">
	
		1
	
	
	
				<div class="items-leading clearfix">
							<div class="leading-0"
					itemprop="blogPost" itemscope
itemtype="https://schema.org/BlogPosting">
					
	<div class="page-header">
					<h2 itemprop="name">
									<a href="/farhad" itemprop="url">
						4tere					</a>
							</h2>
		
		
		
			</div>

	
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-5"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-5">
											<li class="print-icon"> <a
href="/farhad?tmpl=component&amp;print=1" title="چاپ
مقاله < 4tere >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>


			<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a href="/farhad/2-uncategorised"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-06-27T11:51:10+00:00"
itemprop="datePublished">
					منتشر شده در 06 تیر 1400				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:334" />
					بازدید: 334			</dd>						</dl>




<p>rtetretrtre</p>



				</div>
									</div><!-- end items-leading -->
	
	
																	<div class="items-row cols-2 row-0 row-fluid
clearfix">
						<div class="span6">
				<div class="item column-1"
					itemprop="blogPost" itemscope
itemtype="https://schema.org/BlogPosting">
					
	<div class="page-header">
					<h2 itemprop="name">
									<a href="/farhad/2-uncategorised/1-0"
itemprop="url">
						abc					</a>
							</h2>
		
		
		
			</div>

	
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-1"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-1">
											<li class="print-icon"> <a
href="/farhad/2-uncategorised/1-0?tmpl=component&amp;print=1"
title="چاپ مقاله < abc >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>


			<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a href="/farhad/2-uncategorised"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-03-04T15:50:15+00:00"
itemprop="datePublished">
					منتشر شده در 14 اسفند 1399				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:1038200" />
					بازدید: 1038200			</dd>						</dl>








				</div>
				<!-- end item -->
							</div><!-- end span -->
														<div class="span6">
				<div class="item column-2"
					itemprop="blogPost" itemscope
itemtype="https://schema.org/BlogPosting">
					
	<div class="page-header">
					<h2 itemprop="name">
									<a href="/farhad/2-uncategorised/2-0-2"
itemprop="url">
						abb					</a>
							</h2>
		
		
		
			</div>

	
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-2"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-2">
											<li class="print-icon"> <a
href="/farhad/2-uncategorised/2-0-2?tmpl=component&amp;print=1"
title="چاپ مقاله < abb >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>


			<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a href="/farhad/2-uncategorised"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-03-04T15:50:15+00:00"
itemprop="datePublished">
					منتشر شده در 14 اسفند 1399				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:389" />
					بازدید: 389			</dd>						</dl>








				</div>
				<!-- end item -->
							</div><!-- end span -->
							</div><!-- end row -->
						
	
		</div>
";s:4:"head";a:12:{s:5:"title";s:13:"Uncategorised";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:2:{s:8:"keywords";N;s:6:"rights";N;}}s:5:"links";a:2:{s:48:"/farhad/2-uncategorised?format=feed&amp;type=rss";a:3:{s:8:"relation";s:9:"alternate";s:7:"relType";s:3:"rel";s:7:"attribs";a:2:{s:4:"type";s:19:"application/rss+xml";s:5:"title";s:7:"RSS
2.0";}}s:49:"/farhad/2-uncategorised?format=feed&amp;type=atom";a:3:{s:8:"relation";s:9:"alternate";s:7:"relType";s:3:"rel";s:7:"attribs";a:2:{s:4:"type";s:20:"application/atom+xml";s:5:"title";s:8:"Atom
1.0";}}}s:11:"styleSheets";a:4:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:6:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:30:"/media/jui/js/bootstrap.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";s:1:"0";s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:79:"jQuery(window).on('load',
 function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:2:{i:0;O:8:"stdClass":2:{s:4:"name";s:6:"farhad";s:4:"link";s:58:"index.php?option=com_content&view=article&id=5&Itemid=3025";}i:1;O:8:"stdClass":2:{s:4:"name";s:13:"Uncategorised";s:4:"link";s:0:"";}}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-1d996fe27c834f3c7c5458d76b79ad74.php000064400000011741151155312210021405
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:2367:"<div
class="item-page" itemscope
itemtype="https://schema.org/Article">
	<meta itemprop="inLanguage" content="fa-IR" />
	
		
			<div class="page-header">
		<h2 itemprop="headline">
			4tere		</h2>
							</div>
							
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-5"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-5">
											<li class="print-icon"> <a
href="/farhad?tmpl=component&amp;print=1" title="چاپ
مقاله < 4tere >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>
			
		1
						<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a href="/farhad/2-uncategorised"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-06-27T11:51:10+00:00"
itemprop="datePublished">
					منتشر شده در 06 تیر 1400				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:337" />
					بازدید: 337			</dd>						</dl>
	
	
		
								<div itemprop="articleBody">
		<p>rtetretrtre</p> 	</div>

	
	<ul class="pager pagenav">
	<li class="next">
		<a class="hasTooltip" title="abc"
aria-label="مطلب بعدی: abc"
href="/farhad/2-uncategorised/1-0" rel="next">
			<span aria-hidden="true">بعدی</span> <span
class="icon-chevron-left"
aria-hidden="true"></span>		</a>
	</li>
</ul>
							</div>
";s:4:"head";a:12:{s:5:"title";s:6:"farhad";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:3:{s:8:"keywords";N;s:6:"rights";N;s:6:"author";s:6:"farhad";}}s:5:"links";a:0:{}s:11:"styleSheets";a:4:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:6:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:30:"/media/jui/js/bootstrap.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";s:1:"0";s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:322:"jQuery(function($){
initTooltips(); $("body").on("subform-row-add",
initTooltips); function initTooltips (event, container) { container =
container ||
document;$(container).find(".hasTooltip").tooltip({"html":
true,"container": "body"});}
});
jQuery(window).on('load',  function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:1:{i:0;O:8:"stdClass":2:{s:4:"name";s:6:"farhad";s:4:"link";s:58:"index.php?option=com_content&view=article&id=5&Itemid=3025";}}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-4349d6c43e535929b97d40bf02c0dfbf.php000064400000007123151155312210021431
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:1384:"<div
class="item-page" itemscope
itemtype="https://schema.org/Article">
	<meta itemprop="inLanguage" content="fa-IR" />
	
		
			<div class="page-header">
		<h2 itemprop="headline">
			4tere		</h2>
							</div>
							<div id="pop-print" class="btn
hidden-print">
				<a href="#" onclick="window.print();return
false;">			<span class="icon-print"
aria-hidden="true"></span>
		چاپ	</a>			</div>
			
		1
						<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a href="/farhad/2-uncategorised"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-06-27T11:51:10+00:00"
itemprop="datePublished">
					منتشر شده در 06 تیر 1400				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:327" />
					بازدید: 327			</dd>						</dl>
	
	
		
								<div itemprop="articleBody">
		<p>rtetretrtre</p> 	</div>

	
							</div>
";s:4:"head";a:12:{s:5:"title";s:6:"farhad";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:4:{s:8:"keywords";N;s:6:"rights";N;s:6:"author";s:6:"farhad";s:6:"robots";s:17:"noindex,
nofollow";}}s:5:"links";a:0:{}s:11:"styleSheets";a:4:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:5:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:79:"jQuery(window).on('load',
 function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:1:{i:0;O:8:"stdClass":2:{s:4:"name";s:6:"farhad";s:4:"link";s:58:"index.php?option=com_content&view=article&id=5&Itemid=3025";}}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-74d1f4a6e258e12db90c92402d2f270d.php000064400000007367151155312210021345
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:1368:"<div
class="item-page" itemscope
itemtype="https://schema.org/Article">
	<meta itemprop="inLanguage" content="fa-IR" />
	
		
			<div class="page-header">
		<h2 itemprop="headline">
			abb		</h2>
							</div>
							<div id="pop-print" class="btn
hidden-print">
				<a href="#" onclick="window.print();return
false;">			<span class="icon-print"
aria-hidden="true"></span>
		چاپ	</a>			</div>
			
		1
						<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a href="/farhad/2-uncategorised"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-03-04T15:50:15+00:00"
itemprop="datePublished">
					منتشر شده در 14 اسفند 1399				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:380" />
					بازدید: 380			</dd>						</dl>
	
	
		
								<div itemprop="articleBody">
		 	</div>

	
							</div>
";s:4:"head";a:12:{s:5:"title";s:3:"abb";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:4:{s:8:"keywords";N;s:6:"rights";N;s:6:"author";s:6:"farhad";s:6:"robots";s:17:"noindex,
nofollow";}}s:5:"links";a:0:{}s:11:"styleSheets";a:4:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:5:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:79:"jQuery(window).on('load',
 function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:3:{i:0;O:8:"stdClass":2:{s:4:"name";s:6:"farhad";s:4:"link";s:58:"index.php?option=com_content&view=article&id=5&Itemid=3025";}i:1;O:8:"stdClass":2:{s:4:"name";s:13:"Uncategorised";s:4:"link";s:47:"index.php?option=com_content&view=category&id=2";}i:2;O:8:"stdClass":2:{s:4:"name";s:3:"abb";s:4:"link";s:0:"";}}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-728ccac3f07ffbbfce127b442469be50.php000064400000012017151155312210021636
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:2353:"<div
class="item-page" itemscope
itemtype="https://schema.org/Article">
	<meta itemprop="inLanguage" content="fa-IR" />
	
		
			<div class="page-header">
		<h2 itemprop="headline">
			4tere		</h2>
							</div>
							
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-5"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-5">
											<li class="print-icon"> <a
href="/farhad?tmpl=component&amp;print=1" title="چاپ
مقاله < 4tere >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>
			
		1
						<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a href="/2-uncategorised"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-06-27T11:51:10+00:00"
itemprop="datePublished">
					منتشر شده در 06 تیر 1400				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:338" />
					بازدید: 338			</dd>						</dl>
	
	
		
								<div itemprop="articleBody">
		<p>rtetretrtre</p> 	</div>

	
	<ul class="pager pagenav">
	<li class="next">
		<a class="hasTooltip" title="abc"
aria-label="مطلب بعدی: abc"
href="/2-uncategorised/1-0" rel="next">
			<span aria-hidden="true">بعدی</span> <span
class="icon-chevron-left"
aria-hidden="true"></span>		</a>
	</li>
</ul>
							</div>
";s:4:"head";a:12:{s:5:"title";s:5:"4tere";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:3:{s:8:"keywords";N;s:6:"rights";N;s:6:"author";s:6:"farhad";}}s:5:"links";a:0:{}s:11:"styleSheets";a:4:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:6:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:30:"/media/jui/js/bootstrap.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";s:1:"0";s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:322:"jQuery(function($){
initTooltips(); $("body").on("subform-row-add",
initTooltips); function initTooltips (event, container) { container =
container ||
document;$(container).find(".hasTooltip").tooltip({"html":
true,"container": "body"});}
});
jQuery(window).on('load',  function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:2:{i:0;O:8:"stdClass":2:{s:4:"name";s:13:"Uncategorised";s:4:"link";s:47:"index.php?option=com_content&view=category&id=2";}i:1;O:8:"stdClass":2:{s:4:"name";s:5:"4tere";s:4:"link";s:0:"";}}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-a7824095fa3b3e5a233737a6afae0c5d.php000064400000011046151155312210021470
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:2101:"<div
class="item-page" itemscope
itemtype="https://schema.org/Article">
	<meta itemprop="inLanguage" content="fa-IR" />
	
		
			<div class="page-header">
		<h2 itemprop="headline">
			سلبسلی		</h2>
							</div>
							
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-4"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-4">
											<li class="print-icon"> <a
href="/12-blog/4-2021-06-27-11-47-33?tmpl=component&amp;print=1"
title="چاپ مقاله < سلبسلی >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>
			
		1
						<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a href="/12-blog"
itemprop="genre">blog</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-06-27T11:47:33+00:00"
itemprop="datePublished">
					منتشر شده در 06 تیر 1400				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:60" />
					بازدید: 60			</dd>						</dl>
	
	
		
								<div itemprop="articleBody">
		<p>لبیسلبیسلیس</p> 	</div>

	
							</div>
";s:4:"head";a:12:{s:5:"title";s:12:"سلبسلی";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:3:{s:8:"keywords";N;s:6:"rights";N;s:6:"author";s:6:"farhad";}}s:5:"links";a:0:{}s:11:"styleSheets";a:4:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:6:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:30:"/media/jui/js/bootstrap.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";s:1:"0";s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:79:"jQuery(window).on('load',
 function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:2:{i:0;O:8:"stdClass":2:{s:4:"name";s:4:"blog";s:4:"link";s:48:"index.php?option=com_content&view=category&id=12";}i:1;O:8:"stdClass":2:{s:4:"name";s:12:"سلبسلی";s:4:"link";s:0:"";}}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-f97e7301d55730df28bdc58d7ae57ec2.php000064400000012015151155312210021515
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:2355:"<div
class="item-page" itemscope
itemtype="https://schema.org/Article">
	<meta itemprop="inLanguage" content="fa-IR" />
	
		
			<div class="page-header">
		<h2 itemprop="headline">
			abb		</h2>
							</div>
							
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-2"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-2">
											<li class="print-icon"> <a
href="/2-uncategorised/2-0-2?tmpl=component&amp;print=1"
title="چاپ مقاله < abb >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>
			
		1
						<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a href="/2-uncategorised"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-03-04T15:50:15+00:00"
itemprop="datePublished">
					منتشر شده در 14 اسفند 1399				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:399" />
					بازدید: 399			</dd>						</dl>
	
	
		
								<div itemprop="articleBody">
		 	</div>

	
	<ul class="pager pagenav">
	<li class="previous">
		<a class="hasTooltip" title="abc"
aria-label="مطلب قبلی: abc"
href="/2-uncategorised/1-0" rel="prev">
			<span class="icon-chevron-right"
aria-hidden="true"></span> <span
aria-hidden="true">قبلی</span>		</a>
	</li>
</ul>
							</div>
";s:4:"head";a:12:{s:5:"title";s:3:"abb";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:3:{s:8:"keywords";N;s:6:"rights";N;s:6:"author";s:6:"farhad";}}s:5:"links";a:0:{}s:11:"styleSheets";a:4:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:6:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:30:"/media/jui/js/bootstrap.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";s:1:"0";s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:322:"jQuery(function($){
initTooltips(); $("body").on("subform-row-add",
initTooltips); function initTooltips (event, container) { container =
container ||
document;$(container).find(".hasTooltip").tooltip({"html":
true,"container": "body"});}
});
jQuery(window).on('load',  function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:2:{i:0;O:8:"stdClass":2:{s:4:"name";s:13:"Uncategorised";s:4:"link";s:47:"index.php?option=com_content&view=category&id=2";}i:1;O:8:"stdClass":2:{s:4:"name";s:3:"abb";s:4:"link";s:0:"";}}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-37d9bc185adfef650e77ab8b3b4044f6.php000064400000005152151155312210021572
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:83:"<div
class="blog-featured" itemscope
itemtype="https://schema.org/Blog">



</div>
";s:4:"head";a:12:{s:5:"title";s:8:"خانه";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:2:{s:8:"keywords";N;s:6:"rights";N;}}s:5:"links";a:2:{s:38:"/?lang=en&amp;format=feed&amp;type=rss";a:3:{s:8:"relation";s:9:"alternate";s:7:"relType";s:3:"rel";s:7:"attribs";a:2:{s:4:"type";s:19:"application/rss+xml";s:5:"title";s:7:"RSS
2.0";}}s:39:"/?lang=en&amp;format=feed&amp;type=atom";a:3:{s:8:"relation";s:9:"alternate";s:7:"relType";s:3:"rel";s:7:"attribs";a:2:{s:4:"type";s:20:"application/atom+xml";s:5:"title";s:8:"Atom
1.0";}}}s:11:"styleSheets";a:5:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:43:"/media/com_hikashop/css/safari_hikashop.css";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:5:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:79:"jQuery(window).on('load',
 function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:0:{}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-b78eb956c6109d84f65ab145e38d529d.php000064400000012403151155312210021364
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:2601:"<div
class="item-page" itemscope
itemtype="https://schema.org/Article">
	<meta itemprop="inLanguage" content="fa-IR" />
	
		
			<div class="page-header">
		<h2 itemprop="headline">
			abc		</h2>
							</div>
							
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-1"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-1">
											<li class="print-icon"> <a
href="/2-uncategorised/1-0?tmpl=component&amp;print=1"
title="چاپ مقاله < abc >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>
			
		1
						<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a href="/2-uncategorised"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-03-04T15:50:15+00:00"
itemprop="datePublished">
					منتشر شده در 14 اسفند 1399				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:1038363" />
					بازدید: 1038363			</dd>						</dl>
	
	
		
								<div itemprop="articleBody">
		 	</div>

	
	<ul class="pager pagenav">
	<li class="previous">
		<a class="hasTooltip" title="4tere"
aria-label="مطلب قبلی: 4tere" href="/farhad"
rel="prev">
			<span class="icon-chevron-right"
aria-hidden="true"></span> <span
aria-hidden="true">قبلی</span>		</a>
	</li>
	<li class="next">
		<a class="hasTooltip" title="abb"
aria-label="مطلب بعدی: abb"
href="/2-uncategorised/2-0-2" rel="next">
			<span aria-hidden="true">بعدی</span> <span
class="icon-chevron-left"
aria-hidden="true"></span>		</a>
	</li>
</ul>
							</div>
";s:4:"head";a:12:{s:5:"title";s:3:"abc";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:3:{s:8:"keywords";N;s:6:"rights";N;s:6:"author";s:6:"farhad";}}s:5:"links";a:0:{}s:11:"styleSheets";a:4:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:6:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:30:"/media/jui/js/bootstrap.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";s:1:"0";s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:322:"jQuery(function($){
initTooltips(); $("body").on("subform-row-add",
initTooltips); function initTooltips (event, container) { container =
container ||
document;$(container).find(".hasTooltip").tooltip({"html":
true,"container": "body"});}
});
jQuery(window).on('load',  function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:2:{i:0;O:8:"stdClass":2:{s:4:"name";s:13:"Uncategorised";s:4:"link";s:47:"index.php?option=com_content&view=category&id=2";}i:1;O:8:"stdClass":2:{s:4:"name";s:3:"abc";s:4:"link";s:0:"";}}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-7a8abc8aceae862fc39278cbfc726410.php000064400000012121151155312210021641
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:2601:"<div
class="item-page" itemscope
itemtype="https://schema.org/Article">
	<meta itemprop="inLanguage" content="fa-IR" />
	
		
			<div class="page-header">
		<h2 itemprop="headline">
			abc		</h2>
							</div>
							
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-1"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-1">
											<li class="print-icon"> <a
href="/2-uncategorised/1-0?tmpl=component&amp;print=1"
title="چاپ مقاله < abc >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>
			
		1
						<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a href="/2-uncategorised"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-03-04T15:50:15+00:00"
itemprop="datePublished">
					منتشر شده در 14 اسفند 1399				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:1032319" />
					بازدید: 1032319			</dd>						</dl>
	
	
		
								<div itemprop="articleBody">
		 	</div>

	
	<ul class="pager pagenav">
	<li class="previous">
		<a class="hasTooltip" title="4tere"
aria-label="مطلب قبلی: 4tere" href="/farhad"
rel="prev">
			<span class="icon-chevron-right"
aria-hidden="true"></span> <span
aria-hidden="true">قبلی</span>		</a>
	</li>
	<li class="next">
		<a class="hasTooltip" title="abb"
aria-label="مطلب بعدی: abb"
href="/2-uncategorised/2-0-2" rel="next">
			<span aria-hidden="true">بعدی</span> <span
class="icon-chevron-left"
aria-hidden="true"></span>		</a>
	</li>
</ul>
							</div>
";s:4:"head";a:12:{s:5:"title";s:8:"lmsyaran";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:3:{s:8:"keywords";N;s:6:"rights";N;s:6:"author";s:6:"farhad";}}s:5:"links";a:0:{}s:11:"styleSheets";a:4:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:6:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:30:"/media/jui/js/bootstrap.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";s:1:"0";s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:322:"jQuery(function($){
initTooltips(); $("body").on("subform-row-add",
initTooltips); function initTooltips (event, container) { container =
container ||
document;$(container).find(".hasTooltip").tooltip({"html":
true,"container": "body"});}
});
jQuery(window).on('load',  function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:0:{}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-e04be8ba9e3eb890c2a9416f6b412639.php000064400000007164151155312210021434
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:1361:"<div
class="item-page" itemscope
itemtype="https://schema.org/Article">
	<meta itemprop="inLanguage" content="fa-IR" />
	
		
			<div class="page-header">
		<h2 itemprop="headline">
			abb		</h2>
							</div>
							<div id="pop-print" class="btn
hidden-print">
				<a href="#" onclick="window.print();return
false;">			<span class="icon-print"
aria-hidden="true"></span>
		چاپ	</a>			</div>
			
		1
						<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a href="/2-uncategorised"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-03-04T15:50:15+00:00"
itemprop="datePublished">
					منتشر شده در 14 اسفند 1399				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:384" />
					بازدید: 384			</dd>						</dl>
	
	
		
								<div itemprop="articleBody">
		 	</div>

	
							</div>
";s:4:"head";a:12:{s:5:"title";s:3:"abb";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:4:{s:8:"keywords";N;s:6:"rights";N;s:6:"author";s:6:"farhad";s:6:"robots";s:17:"noindex,
nofollow";}}s:5:"links";a:0:{}s:11:"styleSheets";a:4:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:5:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:79:"jQuery(window).on('load',
 function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:2:{i:0;O:8:"stdClass":2:{s:4:"name";s:13:"Uncategorised";s:4:"link";s:47:"index.php?option=com_content&view=category&id=2";}i:1;O:8:"stdClass":2:{s:4:"name";s:3:"abb";s:4:"link";s:0:"";}}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-5f8680747d02173195f9c79203fc1ae8.php000064400000012015151155312210021140
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:2355:"<div
class="item-page" itemscope
itemtype="https://schema.org/Article">
	<meta itemprop="inLanguage" content="fa-IR" />
	
		
			<div class="page-header">
		<h2 itemprop="headline">
			abb		</h2>
							</div>
							
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-2"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-2">
											<li class="print-icon"> <a
href="/2-uncategorised/2-0-2?tmpl=component&amp;print=1"
title="چاپ مقاله < abb >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>
			
		1
						<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a href="/2-uncategorised"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-03-04T15:50:15+00:00"
itemprop="datePublished">
					منتشر شده در 14 اسفند 1399				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:396" />
					بازدید: 396			</dd>						</dl>
	
	
		
								<div itemprop="articleBody">
		 	</div>

	
	<ul class="pager pagenav">
	<li class="previous">
		<a class="hasTooltip" title="abc"
aria-label="مطلب قبلی: abc"
href="/2-uncategorised/1-0" rel="prev">
			<span class="icon-chevron-right"
aria-hidden="true"></span> <span
aria-hidden="true">قبلی</span>		</a>
	</li>
</ul>
							</div>
";s:4:"head";a:12:{s:5:"title";s:3:"abb";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:3:{s:8:"keywords";N;s:6:"rights";N;s:6:"author";s:6:"farhad";}}s:5:"links";a:0:{}s:11:"styleSheets";a:4:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:6:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:30:"/media/jui/js/bootstrap.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";s:1:"0";s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:322:"jQuery(function($){
initTooltips(); $("body").on("subform-row-add",
initTooltips); function initTooltips (event, container) { container =
container ||
document;$(container).find(".hasTooltip").tooltip({"html":
true,"container": "body"});}
});
jQuery(window).on('load',  function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:2:{i:0;O:8:"stdClass":2:{s:4:"name";s:13:"Uncategorised";s:4:"link";s:47:"index.php?option=com_content&view=category&id=2";}i:1;O:8:"stdClass":2:{s:4:"name";s:3:"abb";s:4:"link";s:0:"";}}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-70f46f2a1d623f3101fbf8dd03af8e7b.php000064400000012403151155312210021550
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:2601:"<div
class="item-page" itemscope
itemtype="https://schema.org/Article">
	<meta itemprop="inLanguage" content="fa-IR" />
	
		
			<div class="page-header">
		<h2 itemprop="headline">
			abc		</h2>
							</div>
							
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-1"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-1">
											<li class="print-icon"> <a
href="/2-uncategorised/1-0?tmpl=component&amp;print=1"
title="چاپ مقاله < abc >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>
			
		1
						<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a href="/2-uncategorised"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-03-04T15:50:15+00:00"
itemprop="datePublished">
					منتشر شده در 14 اسفند 1399				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:1038385" />
					بازدید: 1038385			</dd>						</dl>
	
	
		
								<div itemprop="articleBody">
		 	</div>

	
	<ul class="pager pagenav">
	<li class="previous">
		<a class="hasTooltip" title="4tere"
aria-label="مطلب قبلی: 4tere" href="/farhad"
rel="prev">
			<span class="icon-chevron-right"
aria-hidden="true"></span> <span
aria-hidden="true">قبلی</span>		</a>
	</li>
	<li class="next">
		<a class="hasTooltip" title="abb"
aria-label="مطلب بعدی: abb"
href="/2-uncategorised/2-0-2" rel="next">
			<span aria-hidden="true">بعدی</span> <span
class="icon-chevron-left"
aria-hidden="true"></span>		</a>
	</li>
</ul>
							</div>
";s:4:"head";a:12:{s:5:"title";s:3:"abc";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:3:{s:8:"keywords";N;s:6:"rights";N;s:6:"author";s:6:"farhad";}}s:5:"links";a:0:{}s:11:"styleSheets";a:4:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:6:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:30:"/media/jui/js/bootstrap.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";s:1:"0";s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:322:"jQuery(function($){
initTooltips(); $("body").on("subform-row-add",
initTooltips); function initTooltips (event, container) { container =
container ||
document;$(container).find(".hasTooltip").tooltip({"html":
true,"container": "body"});}
});
jQuery(window).on('load',  function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:2:{i:0;O:8:"stdClass":2:{s:4:"name";s:13:"Uncategorised";s:4:"link";s:47:"index.php?option=com_content&view=category&id=2";}i:1;O:8:"stdClass":2:{s:4:"name";s:3:"abc";s:4:"link";s:0:"";}}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-2703818a0c2248c545391df806779ad6.php000064400000022552151155312210021056
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:6651:"<div
class="blog" itemscope
itemtype="https://schema.org/Blog">
	
		1
	
	
	
				<div class="items-leading clearfix">
							<div class="leading-0"
					itemprop="blogPost" itemscope
itemtype="https://schema.org/BlogPosting">
					
	<div class="page-header">
					<h2 itemprop="name">
									<a href="/farhad" itemprop="url">
						4tere					</a>
							</h2>
		
		
		
			</div>

	
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-5"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-5">
											<li class="print-icon"> <a
href="/farhad?tmpl=component&amp;print=1" title="چاپ
مقاله < 4tere >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>


			<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a href="/2-uncategorised"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-06-27T11:51:10+00:00"
itemprop="datePublished">
					منتشر شده در 06 تیر 1400				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:306" />
					بازدید: 306			</dd>						</dl>




<p>rtetretrtre</p>



				</div>
									</div><!-- end items-leading -->
	
	
																	<div class="items-row cols-3 row-0 row-fluid
clearfix">
						<div class="span4">
				<div class="item column-1"
					itemprop="blogPost" itemscope
itemtype="https://schema.org/BlogPosting">
					
	<div class="page-header">
					<h2 itemprop="name">
									<a href="/2-uncategorised/1-0"
itemprop="url">
						abc					</a>
							</h2>
		
		
		
			</div>

	
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-1"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-1">
											<li class="print-icon"> <a
href="/2-uncategorised/1-0?tmpl=component&amp;print=1"
title="چاپ مقاله < abc >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>


			<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a href="/2-uncategorised"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-03-04T15:50:15+00:00"
itemprop="datePublished">
					منتشر شده در 14 اسفند 1399				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:1037075" />
					بازدید: 1037075			</dd>						</dl>








				</div>
				<!-- end item -->
							</div><!-- end span -->
														<div class="span4">
				<div class="item column-2"
					itemprop="blogPost" itemscope
itemtype="https://schema.org/BlogPosting">
					
	<div class="page-header">
					<h2 itemprop="name">
									<a href="/2-uncategorised/2-0-2"
itemprop="url">
						abb					</a>
							</h2>
		
		
		
			</div>

	
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-2"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-2">
											<li class="print-icon"> <a
href="/2-uncategorised/2-0-2?tmpl=component&amp;print=1"
title="چاپ مقاله < abb >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>


			<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a href="/2-uncategorised"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-03-04T15:50:15+00:00"
itemprop="datePublished">
					منتشر شده در 14 اسفند 1399				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:344" />
					بازدید: 344			</dd>						</dl>








				</div>
				<!-- end item -->
							</div><!-- end span -->
							</div><!-- end row -->
						
	
		</div>
";s:4:"head";a:12:{s:5:"title";s:13:"Uncategorised";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:2:{s:8:"keywords";N;s:6:"rights";N;}}s:5:"links";a:2:{s:53:"/2-uncategorised?lang=en&amp;format=feed&amp;type=rss";a:3:{s:8:"relation";s:9:"alternate";s:7:"relType";s:3:"rel";s:7:"attribs";a:2:{s:4:"type";s:19:"application/rss+xml";s:5:"title";s:7:"RSS
2.0";}}s:54:"/2-uncategorised?lang=en&amp;format=feed&amp;type=atom";a:3:{s:8:"relation";s:9:"alternate";s:7:"relType";s:3:"rel";s:7:"attribs";a:2:{s:4:"type";s:20:"application/atom+xml";s:5:"title";s:8:"Atom
1.0";}}}s:11:"styleSheets";a:5:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:43:"/media/com_hikashop/css/safari_hikashop.css";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:6:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:30:"/media/jui/js/bootstrap.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";s:1:"0";s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:79:"jQuery(window).on('load',
 function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:1:{i:0;O:8:"stdClass":2:{s:4:"name";s:13:"Uncategorised";s:4:"link";s:0:"";}}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-c84b16f894c5d9a35537fb79a6c9f352.php000064400000007377151155312210021410
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:1376:"<div
class="item-page" itemscope
itemtype="https://schema.org/Article">
	<meta itemprop="inLanguage" content="fa-IR" />
	
		
			<div class="page-header">
		<h2 itemprop="headline">
			abc		</h2>
							</div>
							<div id="pop-print" class="btn
hidden-print">
				<a href="#" onclick="window.print();return
false;">			<span class="icon-print"
aria-hidden="true"></span>
		چاپ	</a>			</div>
			
		1
						<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a href="/farhad/2-uncategorised"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-03-04T15:50:15+00:00"
itemprop="datePublished">
					منتشر شده در 14 اسفند 1399				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:1038084" />
					بازدید: 1038084			</dd>						</dl>
	
	
		
								<div itemprop="articleBody">
		 	</div>

	
							</div>
";s:4:"head";a:12:{s:5:"title";s:3:"abc";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:4:{s:8:"keywords";N;s:6:"rights";N;s:6:"author";s:6:"farhad";s:6:"robots";s:17:"noindex,
nofollow";}}s:5:"links";a:0:{}s:11:"styleSheets";a:4:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:5:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:79:"jQuery(window).on('load',
 function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:3:{i:0;O:8:"stdClass":2:{s:4:"name";s:6:"farhad";s:4:"link";s:58:"index.php?option=com_content&view=article&id=5&Itemid=3025";}i:1;O:8:"stdClass":2:{s:4:"name";s:13:"Uncategorised";s:4:"link";s:47:"index.php?option=com_content&view=category&id=2";}i:2;O:8:"stdClass":2:{s:4:"name";s:3:"abc";s:4:"link";s:0:"";}}s:6:"module";a:0:{}}9ca401dc5c83ea71321893da14a56979-cache-com_content-570fc00b9e719c1058c657c120c40b3e.php000064400000012015151155312210021241
0ustar00<?php die("Access Denied");
?>#x#a:5:{s:4:"body";s:2355:"<div
class="item-page" itemscope
itemtype="https://schema.org/Article">
	<meta itemprop="inLanguage" content="fa-IR" />
	
		
			<div class="page-header">
		<h2 itemprop="headline">
			abb		</h2>
							</div>
							
<div class="icons">
	
					<div class="btn-group pull-right">
				<button class="btn dropdown-toggle"
type="button" id="dropdownMenuButton-2"
aria-label="ابزار کاربر"
				data-toggle="dropdown" aria-haspopup="true"
aria-expanded="false">
					<span class="icon-cog"
aria-hidden="true"></span>
					<span class="caret"
aria-hidden="true"></span>
				</button>
								<ul class="dropdown-menu"
aria-labelledby="dropdownMenuButton-2">
											<li class="print-icon"> <a
href="/2-uncategorised/2-0-2?tmpl=component&amp;print=1"
title="چاپ مقاله < abb >"
onclick="window.open(this.href,'win2','status=no,toolbar=no,scrollbars=yes,titlebar=no,menubar=no,resizable=yes,width=640,height=480,directories=no,location=no');
return false;" rel="nofollow">			<span
class="icon-print" aria-hidden="true"></span>
		چاپ	</a> </li>
																			</ul>
			</div>
		
	</div>
			
		1
						<dl class="article-info muted">

		
			<dt class="article-info-term">
									توضیحات							</dt>

							<dd class="createdby" itemprop="author"
itemscope itemtype="https://schema.org/Person">
					نوشته شده توسط  <span
itemprop="name">farhad</span>	</dd>
			
			
										<dd class="category-name">
																		دسته: <a href="/2-uncategorised"
itemprop="genre">Uncategorised</a>							</dd>			
			
										<dd class="published">
				<span class="icon-calendar"
aria-hidden="true"></span>
				<time datetime="2021-03-04T15:50:15+00:00"
itemprop="datePublished">
					منتشر شده در 14 اسفند 1399				</time>
			</dd>			
		
					
			
										<dd class="hits">
					<span class="icon-eye-open"
aria-hidden="true"></span>
					<meta itemprop="interactionCount"
content="UserPageVisits:391" />
					بازدید: 391			</dd>						</dl>
	
	
		
								<div itemprop="articleBody">
		 	</div>

	
	<ul class="pager pagenav">
	<li class="previous">
		<a class="hasTooltip" title="abc"
aria-label="مطلب قبلی: abc"
href="/2-uncategorised/1-0" rel="prev">
			<span class="icon-chevron-right"
aria-hidden="true"></span> <span
aria-hidden="true">قبلی</span>		</a>
	</li>
</ul>
							</div>
";s:4:"head";a:12:{s:5:"title";s:3:"abb";s:11:"description";N;s:4:"link";s:0:"";s:8:"metaTags";a:2:{s:10:"http-equiv";a:1:{s:12:"content-type";s:24:"text/html;
charset=utf-8";}s:4:"name";a:3:{s:8:"keywords";N;s:6:"rights";N;s:6:"author";s:6:"farhad";}}s:5:"links";a:0:{}s:11:"styleSheets";a:4:{s:42:"/media/com_hikashop/css/hikashop.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:57:"/media/com_hikashop/css/frontend_default.css?t=1614338644";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:37:"/media/com_hikashop/css/rtl.css?v=441";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}s:48:"/media/com_hikashop/css/font-awesome.css?v=5.2.0";a:2:{s:4:"type";s:8:"text/css";s:7:"options";a:0:{}}}s:5:"style";a:0:{}s:7:"scripts";a:6:{s:40:"/media/com_hikashop/js/hikashop.js?v=441";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:0:{}}s:27:"/media/jui/js/jquery.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:34:"/media/jui/js/jquery-noconflict.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}s:35:"/media/jui/js/jquery-migrate.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";b:0;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:30:"/media/jui/js/bootstrap.min.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:11:"detectDebug";s:1:"0";s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;}}s:27:"/media/system/js/caption.js";a:2:{s:4:"type";s:15:"text/javascript";s:7:"options";a:6:{s:7:"version";s:4:"auto";s:8:"relative";b:1;s:9:"framework";b:0;s:8:"pathOnly";b:0;s:13:"detectBrowser";b:1;s:11:"detectDebug";b:1;}}}s:6:"script";a:1:{s:15:"text/javascript";s:322:"jQuery(function($){
initTooltips(); $("body").on("subform-row-add",
initTooltips); function initTooltips (event, container) { container =
container ||
document;$(container).find(".hasTooltip").tooltip({"html":
true,"container": "body"});}
});
jQuery(window).on('load',  function() {
				new JCaption('img.caption');
			});";}s:6:"custom";a:0:{}s:10:"scriptText";a:0:{}s:13:"scriptOptions";a:0:{}}s:13:"mime_encoding";s:9:"text/html";s:7:"pathway";a:2:{i:0;O:8:"stdClass":2:{s:4:"name";s:13:"Uncategorised";s:4:"link";s:47:"index.php?option=com_content&view=category&id=2";}i:1;O:8:"stdClass":2:{s:4:"name";s:3:"abb";s:4:"link";s:0:"";}}s:6:"module";a:0:{}}archive/default.php000064400000003664151163610670010341
0ustar00<?php
/**
 * @package     Joomla.Site
 * @subpackage  Template.beez5
 *
 * @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;

$app = JFactory::getApplication();
$templateparams = $app->getTemplate(true)->params;

if (!$templateparams->get('html5', 0))
{
	require
JPATH_BASE.'/components/com_content/views/archive/tmpl/default.php';
	// possibly replace with JPATH_COMPONENT.'/views/...'
} else {
JHtml::addIncludePath(JPATH_COMPONENT . '/helpers');

JHtml::_('behavior.caption');
?><div class="archive<?php echo
$this->pageclass_sfx;?>">
<?php if ($this->params->get('show_page_heading')) :
?>
<h1>
	<?php echo
$this->escape($this->params->get('page_heading')); ?>
</h1>
<?php endif; ?>
<form id="adminForm" action="<?php echo
JRoute::_('index.php')?>" method="post">
	<fieldset class="filters">
	<legend class="hidelabeltxt"><?php echo
JText::_('JGLOBAL_FILTER_LABEL'); ?></legend>
	<div class="filter-search">
		<?php if ($this->params->get('filter_field') !==
'hide') : ?>
		<label class="filter-search-lbl"
for="filter-search"><?php echo
JText::_('COM_CONTENT_'.$this->params->get('filter_field').'_FILTER_LABEL').'&#160;';
?></label>
		<input type="text" name="filter-search"
id="filter-search" value="<?php echo
$this->escape($this->filter); ?>" class="inputbox"
onchange="document.getElementById('adminForm').submit();"
/>
		<?php endif; ?>

		<?php echo $this->form->monthField; ?>
		<?php echo $this->form->yearField; ?>
		<?php echo $this->form->limitField; ?>
		<button type="submit" class="button"><?php
echo JText::_('JGLOBAL_FILTER_BUTTON'); ?></button>
	</div>
	<input type="hidden" name="view"
value="archive" />
	<input type="hidden" name="option"
value="com_content" />
	<input type="hidden" name="limitstart"
value="0" />
	</fieldset>

	<?php echo $this->loadTemplate('items'); ?>
</form>
</div>
<?php } ?>
archive/default_items.php000064400000010507151163610670011534
0ustar00<?php
/**
 * @package     Joomla.Site
 * @subpackage  Template.beez5
 *
 * @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;

$app = JFactory::getApplication();
$templateparams = $app->getTemplate(true)->params;

if (!$templateparams->get('html5', 0))
{
	require
JPATH_BASE.'/components/com_content/views/archive/tmpl/default_items.php';
	// possibly replace with JPATH_COMPONENT.'/views/...'
} else {
JHtml::addIncludePath(JPATH_COMPONENT . '/helpers');
$params = &$this->params;
?>
<ul id="archive-items">
<?php foreach ($this->items as $i => $item) : ?>
	<li class="row<?php echo $i % 2; ?>">

		<h2>
		<?php if ($params->get('link_titles')) : ?>
			<a href="<?php echo
JRoute::_(ContentHelperRoute::getArticleRoute($item->slug,
$item->catid, $item->language)); ?>">
				<?php echo $this->escape($item->title); ?></a>
		<?php else: ?>
				<?php echo $this->escape($item->title); ?>
		<?php endif; ?>
		</h2>


<?php if ($params->get('show_author') or
$params->get('show_parent_category') or
$params->get('show_category') or
$params->get('show_create_date') or
$params->get('show_modify_date') or
$params->get('show_publish_date') or
$params->get('show_hits')) : ?>
 <dl class="article-info">
 <dt class="article-info-term"><?php echo
JText::_('COM_CONTENT_ARTICLE_INFO'); ?></dt>
<?php endif; ?>
<?php if ($params->get('show_parent_category')) : ?>
		<dd class="parent-category-name">
			<?php	$title = $this->escape($item->parent_title);
					$url = '<a
href="'.JRoute::_(ContentHelperRoute::getCategoryRoute($item->parent_slug)).'">'.$title.'</a>';?>
			<?php if ($item->parent_slug &&
$params->get('link_parent_category')) : ?>
				<?php echo JText::sprintf('COM_CONTENT_PARENT', $url);
?>
				<?php else : ?>
				<?php echo JText::sprintf('COM_CONTENT_PARENT', $title);
?>
			<?php endif; ?>
		</dd>
<?php endif; ?>

<?php if ($params->get('show_category')) : ?>
		<dd class="category-name">
			<?php	$title = $this->escape($item->category_title);
					$url = '<a href="' .
JRoute::_(ContentHelperRoute::getCategoryRoute($item->catslug)) .
'">' . $title . '</a>'; ?>
			<?php if ($item->catslug &&
$params->get('link_category')) : ?>
				<?php echo JText::sprintf('COM_CONTENT_CATEGORY', $url);
?>
				<?php else : ?>
				<?php echo JText::sprintf('COM_CONTENT_CATEGORY', $title);
?>
			<?php endif; ?>
		</dd>
<?php endif; ?>
<?php if ($params->get('show_create_date')) : ?>
		<dd class="create">
		<?php echo JText::sprintf('COM_CONTENT_CREATED_DATE_ON',
JHtml::_('date', $item->created,
JText::_('DATE_FORMAT_LC2'))); ?>
		</dd>
<?php endif; ?>
<?php if ($params->get('show_modify_date')) : ?>
		<dd class="modified">
		<?php echo JText::sprintf('COM_CONTENT_LAST_UPDATED',
JHtml::_('date', $item->modified,
JText::_('DATE_FORMAT_LC2'))); ?>
		</dd>
<?php endif; ?>
<?php if ($params->get('show_publish_date')) : ?>
		<dd class="published">
		<?php echo JText::sprintf('COM_CONTENT_PUBLISHED_DATE_ON',
JHtml::_('date', $item->publish_up,
JText::_('DATE_FORMAT_LC2'))); ?>
		</dd>
<?php endif; ?>
<?php if (!empty($item->author) &&
$params->get('show_author')) : ?>
	<dd class="createdby">
		<?php $author = $item->created_by_alias ?: $item->author; ?>
			<?php if (!empty($item->contact_link ) && 
$params->get('link_author') == true):?>
				<?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY',
JHtml::_('link', $item->contact_link, $author)); ?>
			<?php else :?>
				<?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY',
$author); ?>
			<?php endif; ?>
	</dd>
<?php endif; ?>
<?php if ($params->get('show_hits')) : ?>
		<dd class="hits">
		<?php echo JText::sprintf('COM_CONTENT_ARTICLE_HITS',
$item->hits); ?>
		</dd>
<?php endif; ?>
<?php if ($params->get('show_author') or
$params->get('show_category') or
$params->get('show_create_date') or
$params->get('show_modify_date') or
$params->get('show_publish_date') or
$params->get('show_hits')) :?>
	 </dl>
<?php endif; ?>

<?php  if ($params->get('show_intro')) :?>
		<div class="intro">
			<?php echo JHtml::_('string.truncate', $item->introtext,
$params->get('introtext_limit')); ?>
		</div>

		<?php endif; ?>
	</li>
<?php endforeach; ?>
</ul>
<div id="pagination">
	<span><?php echo $this->pagination->getPagesLinks();
?></span>
	<span><?php echo $this->pagination->getPagesCounter();
?></span>
</div>
<?php } ?>
article/default.php000064400000022576151163610670010346 0ustar00<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.beez3
 *
 * @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;

$app            = JFactory::getApplication();
$templateparams = $app->getTemplate(true)->params;
$images         = json_decode($this->item->images);
$urls           = json_decode($this->item->urls);
$user           = JFactory::getUser();

JHtml::addIncludePath(JPATH_COMPONENT . '/helpers');
JHtml::_('behavior.caption');

// Create shortcut to parameters.
$params = $this->item->params;

$accessEdit    = $params->get('access-edit');
$showPrintIcon = $params->get('show_print_icon');
$showEmailIcon = $params->get('show_email_icon');

?>
<article class="item-page<?php echo
$this->pageclass_sfx?>">
<?php if ($showPageHeading =
$this->params->get('show_page_heading')) : ?>

<?php if ($showPageHeading and $params->get('show_title'))
:?>
<hgroup>
<?php endif; ?>
<h1>
	<?php echo
$this->escape($this->params->get('page_heading')); ?>
</h1>
<?php endif; ?>
<?php
if (!empty($this->item->pagination) &&
$this->item->pagination &&
!$this->item->paginationposition &&
$this->item->paginationrelative)
{
	echo $this->item->pagination;
}

if ($params->get('show_title')) : ?>
		<h2>
			<?php echo $this->escape($this->item->title); ?>
		</h2>
<?php endif; ?>
<?php if ($showPageHeading and $params->get('show_title'))
:?>
</hgroup>
<?php endif; ?>

<?php // Content is generated by content plugin event
"onContentAfterTitle" ?>
<div class="pull-left"><?php echo
$this->item->event->afterDisplayTitle; ?></div>

<?php

if ($accessEdit || $showPrintIcon || $showEmailIcon) : ?>
		<ul class="actions">
		<?php if (!$this->print) : ?>
				<?php if ($showPrintIcon) : ?>
				<li class="print-icon">
						<?php echo JHtml::_('icon.print_popup', $this->item,
$params, array(), true); ?>
				</li>
				<?php endif; ?>

				<?php if ($showEmailIcon) : ?>
				<li class="email-icon">
						<?php echo JHtml::_('icon.email', $this->item,
$params, array(), true); ?>
				</li>
				<?php endif; ?>
				<?php if ($this->user->authorise('core.edit',
'com_content.article.' . $this->item->id)) : ?>
						<li class="edit-icon">
							<?php echo JHtml::_('icon.edit', $this->item,
$params, array(), true); ?>
						</li>
					<?php endif; ?>
		<?php else : ?>
				<li>
						<?php echo JHtml::_('icon.print_screen', $this->item,
$params, array(), true); ?>
				</li>
		<?php endif; ?>
		</ul>
<?php endif; ?>

	<?php echo $this->item->event->beforeDisplayContent; ?>

<?php $useDefList = ($params->get('show_author') or
$params->get('show_category') or
$params->get('show_parent_category')
	or $params->get('show_create_date') or
$params->get('show_modify_date') or
$params->get('show_publish_date')
	or $params->get('show_hits')); ?>

<?php if ($useDefList) : ?>
 <dl class="article-info">
 <dt class="article-info-term"><?php  echo
JText::_('COM_CONTENT_ARTICLE_INFO'); ?></dt>
<?php endif; ?>
<?php if ($this->item->parent_slug !== '1:root'
&& $params->get('show_parent_category')) : ?>
		<dd class="parent-category-name">
			<?php 	$title = $this->escape($this->item->parent_title);
					$url = '<a href="' .
JRoute::_(ContentHelperRoute::getCategoryRoute($this->item->parent_slug))
. '">' . $title . '</a>';?>
			<?php if ($params->get('link_parent_category') and
$this->item->parent_slug) : ?>
				<?php echo JText::sprintf('COM_CONTENT_PARENT', $url);
?>
				<?php else : ?>
				<?php echo JText::sprintf('COM_CONTENT_PARENT', $title);
?>
			<?php endif; ?>
		</dd>
<?php endif; ?>
<?php if ($params->get('show_category')) : ?>
		<dd class="category-name">
			<?php 	$title = $this->escape($this->item->category_title);
					$url = '<a href="' .
JRoute::_(ContentHelperRoute::getCategoryRoute($this->item->catslug))
. '">' . $title . '</a>';?>
			<?php if ($params->get('link_category') and
$this->item->catslug) : ?>
				<?php echo JText::sprintf('COM_CONTENT_CATEGORY', $url);
?>
				<?php else : ?>
				<?php echo JText::sprintf('COM_CONTENT_CATEGORY', $title);
?>
			<?php endif; ?>
		</dd>
<?php endif; ?>
<?php if ($params->get('show_create_date')) : ?>
		<dd class="create">
		<?php echo JText::sprintf('COM_CONTENT_CREATED_DATE_ON',
JHtml::_('date', $this->item->created,
JText::_('DATE_FORMAT_LC2'))); ?>
		</dd>
<?php endif; ?>
<?php if ($params->get('show_modify_date')) : ?>
		<dd class="modified">
		<?php echo JText::sprintf('COM_CONTENT_LAST_UPDATED',
JHtml::_('date', $this->item->modified,
JText::_('DATE_FORMAT_LC2'))); ?>
		</dd>
<?php endif; ?>
<?php if ($params->get('show_publish_date')) : ?>
		<dd class="published">
		<?php echo JText::sprintf('COM_CONTENT_PUBLISHED_DATE_ON',
JHtml::_('date', $this->item->publish_up,
JText::_('DATE_FORMAT_LC2'))); ?>
		</dd>
<?php endif; ?>
<?php if (!empty($this->item->author) &&
$params->get('show_author')) : ?>
	<dd class="createdby">
		<?php $author = $this->item->created_by_alias ?:
$this->item->author; ?>
		<?php if (!empty($this->item->contact_link) &&
$params->get('link_author') == true) : ?>
			<?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY',
JHtml::_('link', $this->item->contact_link, $author));
?>
		<?php else : ?>
			<?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY',
$author); ?>
		<?php endif; ?>
	</dd>
<?php endif; ?>
<?php if ($params->get('show_hits')) : ?>
		<dd class="hits">
		<?php echo JText::sprintf('COM_CONTENT_ARTICLE_HITS',
$this->item->hits); ?>
		</dd>
<?php endif; ?>
<?php if ($useDefList) : ?>
 </dl>
<?php endif; ?>

	<?php if (isset ($this->item->toc)) : ?>
		<?php echo $this->item->toc; ?>
	<?php endif; ?>

<?php if (isset($urls) AND ((!empty($urls->urls_position) AND
($urls->urls_position == '0')) OR
($params->get('urls_position') == '0' AND
empty($urls->urls_position)))
		OR (empty($urls->urls_position) AND
(!$params->get('urls_position')))) : ?>

	<?php echo $this->loadTemplate('links'); ?>
<?php endif; ?>
	<?php  if (isset($images->image_fulltext) and
!empty($images->image_fulltext)) : ?>
	<?php $imgfloat = empty($images->float_fulltext) ?
$params->get('float_fulltext') : $images->float_fulltext;
?>

	<div class="img-fulltext-<?php echo htmlspecialchars($imgfloat,
ENT_COMPAT, 'UTF-8'); ?>">
	<img
		<?php if ($images->image_fulltext_caption):
			echo 'class="caption"'.' title="'
.htmlspecialchars($images->image_fulltext_caption, ENT_COMPAT,
'UTF-8') .'"';
		endif; ?>
		src="<?php echo htmlspecialchars($images->image_fulltext,
ENT_COMPAT, 'UTF-8'); ?>" alt="<?php echo
htmlspecialchars($images->image_fulltext_alt, ENT_COMPAT,
'UTF-8'); ?>"/>
	</div>
	<?php endif; ?>
<?php
if (!empty($this->item->pagination) AND $this->item->pagination
AND !$this->item->paginationposition AND
!$this->item->paginationrelative):
	echo $this->item->pagination;
endif;
?>
<?php if ($params->get('access-view')):?>
	<?php echo $this->item->text; ?>
	<?php // Optional teaser intro text for guests ?>
	<?php elseif ($params->get('show_noauth') == true
&& $user->get('guest')) : ?>
		<?php echo
JLayoutHelper::render('joomla.content.intro_image',
$this->item); ?>
	<?php echo JHtml::_('content.prepare',
$this->item->introtext); ?>
	<?php // Optional link to let them register to see the whole article.
?>
	<?php if ($this->item->fulltext != null &&
$params->get('show_readmore')) : ?>
		<?php $menu = JFactory::getApplication()->getMenu(); ?>
		<?php $active = $menu->getActive(); ?>
		<?php $itemId = $active->id; ?>
		<?php $link = new
JUri(JRoute::_('index.php?option=com_users&view=login&Itemid='
. $itemId, false)); ?>
		<?php $link->setVar('return',
base64_encode(ContentHelperRoute::getArticleRoute($this->item->slug,
$this->item->catid, $this->item->language))); ?>
		<p class="readmore">
			<a href="<?php echo $link; ?>"
class="register">
			<?php $attribs = json_decode($this->item->attribs); ?>
			<?php if ($attribs->alternative_readmore == null) : ?>
				<?php echo JText::_('COM_CONTENT_REGISTER_TO_READ_MORE');
?>
			<?php elseif ($readmore = $attribs->alternative_readmore) : ?>
				<?php echo $readmore; ?>
				<?php if ($params->get('show_readmore_title', 0) != 0)
: ?>
					<?php echo JHtml::_('string.truncate',
$this->item->title, $params->get('readmore_limit'));
?>
				<?php endif; ?>
			<?php elseif ($params->get('show_readmore_title', 0) ==
0) : ?>
				<?php echo JText::sprintf('COM_CONTENT_READ_MORE_TITLE');
?>
			<?php else : ?>
				<?php echo JText::_('COM_CONTENT_READ_MORE'); ?>
				<?php echo JHtml::_('string.truncate',
$this->item->title, $params->get('readmore_limit'));
?>
			<?php endif; ?>
			</a>
		</p>
	<?php endif; ?>
<?php endif; ?>
<?php // TAGS ?>
<?php if (!empty($this->item->tags->itemTags) &&
$params->get('show_tags', 1)) : ?>
	<?php $this->item->tagLayout = new
JLayoutFile('joomla.content.tags'); ?>
	<?php echo
$this->item->tagLayout->render($this->item->tags->itemTags);
?>
<?php endif; ?>
<?php if (!empty($this->item->pagination) AND
$this->item->pagination AND $this->item->paginationposition
AND!$this->item->paginationrelative) : ?>
	<?php echo $this->item->pagination; ?>
<?php endif; ?>
	<?php if (isset($urls) AND ((!empty($urls->urls_position) AND
($urls->urls_position == '1')) OR (
$params->get('urls_position') == '1'))) : ?>
		<?php echo $this->loadTemplate('links'); ?>
	<?php endif; ?>
<?php if (!empty($this->item->pagination) AND
$this->item->pagination AND $this->item->paginationposition AND
$this->item->paginationrelative) : ?>
	<?php echo $this->item->pagination; ?>
<?php endif; ?>
	<?php echo $this->item->event->afterDisplayContent; ?>
</article>
article/default_links.php000064400000005005151163610670011532
0ustar00<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.beez3
 *
 * @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;

// Create shortcut
$urls = json_decode($this->item->urls);

// Create shortcuts to some parameters.
$params = $this->item->params;
if ($urls && (!empty($urls->urla) || !empty($urls->urlb) ||
!empty($urls->urlc))) :
?>
<div class="content-links">
	<ul class="nav nav-tabs nav-stacked">
		<?php
			$urlarray = array(
			array($urls->urla, $urls->urlatext, $urls->targeta,
'a'),
			array($urls->urlb, $urls->urlbtext, $urls->targetb,
'b'),
			array($urls->urlc, $urls->urlctext, $urls->targetc,
'c')
			);
			foreach ($urlarray as $url) :
				$link = $url[0];
				$label = $url[1];
				$target = $url[2];
				$id = $url[3];

				if (!$link) :
					continue;
				endif;

				// If no label is present, take the link
				$label = $label ?: $link;

				// If no target is present, use the default
				$target = $target ?: $params->get('target'.$id);
				?>
			<li class="content-links-<?php echo $id; ?>">
				<?php
					// Compute the correct link

					switch ($target)
					{
						case 1:
							// open in a new window
							echo '<a href="' . htmlspecialchars($link,
ENT_COMPAT, 'UTF-8') . '" target="_blank" 
rel="nofollow noopener noreferrer">' .
								htmlspecialchars($label, ENT_COMPAT, 'UTF-8')
.'</a>';
							break;

						case 2:
							// open in a popup window
							$attribs =
'toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=600,height=600';
							echo "<a href=\"" . htmlspecialchars($link,
ENT_COMPAT, 'UTF-8') . "\"
onclick=\"window.open(this.href, 'targetWindow',
'".$attribs."'); return false;\"
rel=\"noopener noreferrer\">".
								htmlspecialchars($label, ENT_COMPAT,
'UTF-8').'</a>';
							break;
						case 3:
							// open in a modal window
							JHtml::_('behavior.modal', 'a.modal');
							echo '<a class="modal" href="' .
htmlspecialchars($link, ENT_COMPAT, 'UTF-8') . '" 
rel="{handler: \'iframe\', size: {x:600, y:600}} noopener
noreferrer">'.
								htmlspecialchars($label, ENT_COMPAT, 'UTF-8') . '
</a>';
							break;

						default:
							// open in parent window
							echo '<a href="' .  htmlspecialchars($link,
ENT_COMPAT, 'UTF-8') . '"
rel="nofollow">'.
								htmlspecialchars($label, ENT_COMPAT, 'UTF-8') . '
</a>';
							break;
					}
				?>
				</li>
		<?php endforeach; ?>
	</ul>
</div>
<?php endif; ?>
categories/default.php000064400000002435151163610670011040 0ustar00<?php
/**
 * @package     Joomla.Site
 * @subpackage  Template.beez5
 *
 * @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;

$app = JFactory::getApplication();
JHtml::addIncludePath(JPATH_COMPONENT.'/helpers');

JHtml::_('behavior.caption');
?>
<div class="categories-list<?php echo
$this->pageclass_sfx;?>">
<?php if ($this->params->get('show_page_heading')) :
?>
<h1>
	<?php echo
$this->escape($this->params->get('page_heading')); ?>
</h1>
<?php endif; ?>
<?php if ($this->params->get('show_base_description')) :
?>
	<?php 	//If there is a description in the menu parameters use that;
?>
		<?php if
($this->params->get('categories_description')) : ?>
			<?php echo  JHtml::_('content.prepare',
$this->params->get('categories_description'), '',
'com_content.categories'); ?>
		<?php  else: ?>
			<?php //Otherwise get one from the database if it exists. ?>
			<?php  if ($this->parent->description) : ?>
				<div class="category-desc">
					<?php  echo JHtml::_('content.prepare',
$this->parent->description, '',
'com_content.categories'); ?>
				</div>
			<?php  endif; ?>
		<?php  endif; ?>
<?php endif; ?>
<?php
echo $this->loadTemplate('items');
?>
</div>

categories/default_items.php000064400000003246151163610670012242
0ustar00<?php

/**
 * @package     Joomla.Site
 * @subpackage  com_content
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

// no direct access
defined('_JEXEC') or die;
$class = ' class="first"';
if ($this->maxLevelcat != 0 &&
count($this->items[$this->parent->id]) > 0) :
?>
<ul>
<?php foreach ($this->items[$this->parent->id] as $id =>
$item) : ?>
	<?php
	if ($item->numitems ||
$this->params->get('show_empty_categories_cat') ||
count($item->getChildren())) :
	if (!isset($this->items[$this->parent->id][$id + 1]))
	{
		$class = ' class="last"';
	}
	?>
	<li<?php echo $class; ?>>
	<?php $class = ''; ?>
		<h3 class="item-title"><a href="<?php echo
JRoute::_(ContentHelperRoute::getCategoryRoute($item->id));?>">
			<?php echo $this->escape($item->title); ?></a>
		</h3>

		<?php if ($this->params->get('show_subcat_desc_cat')
== 1) :?>
		<?php if ($item->description) : ?>
			<div class="category-desc">
				<?php echo JHtml::_('content.prepare',
$item->description); ?>
			</div>
		<?php endif; ?>
		<?php endif; ?>
		<?php if
($this->params->get('show_cat_num_articles_cat') == 1)
:?>
			<dl class="article-count"><dt>
				<?php echo JText::_('COM_CONTENT_NUM_ITEMS');
?></dt>
				<dd><?php echo $item->numitems; ?></dd>
			</dl>
		<?php endif; ?>

		<?php if (count($item->getChildren()) > 0) :
			$this->items[$item->id] = $item->getChildren();
			$this->parent = $item;
			$this->maxLevelcat--;
			echo $this->loadTemplate('items');
			$this->parent = $item->getParent();
			$this->maxLevelcat++;
		endif; ?>

	</li>
	<?php endif; ?>
<?php endforeach; ?>
</ul>
<?php endif; ?>
category/blog.php000064400000010041151163610670010017 0ustar00<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.beez3
 *
 * @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;

$app = JFactory::getApplication();
$templateparams = $app->getTemplate(true)->params;

JHtml::addIncludePath(JPATH_COMPONENT . '/helpers');
JHtml::_('behavior.caption');

$cparams = JComponentHelper::getParams('com_media');

// If the page class is defined, add to class as suffix.
// It will be a separate class if the user starts it with a space
?>
<section class="blog<?php echo
$this->pageclass_sfx;?>">
<?php if ($this->params->get('show_page_heading') != 0)
: ?>
<h1>
	<?php echo
$this->escape($this->params->get('page_heading')); ?>
</h1>
<?php endif; ?>

<?php if ($this->params->get('show_category_title')) :
?>
<h2 class="subheading-category">
	<?php echo JHtml::_('content.prepare',
$this->category->title, '',
'com_content.category.title'); ?>
</h2>
<?php endif; ?>

<?php if ($this->params->get('show_description', 1) ||
$this->params->def('show_description_image', 1)) : ?>
	<div class="category-desc">
	<?php if ($this->params->get('show_description_image')
&& $this->category->getParams()->get('image')) :
?>
		<img src="<?php echo
$this->category->getParams()->get('image');
?>"/>
	<?php endif; ?>
	<?php if ($this->category->description &&
$this->params->get('show_description')) : ?>
		<?php echo JHtml::_('content.prepare',
$this->category->description, '',
'com_content.category'); ?>
	<?php endif; ?>
	<div class="clr"></div>
	</div>
<?php endif; ?>

<?php if (empty($this->lead_items) &&
empty($this->link_items) && empty($this->intro_items)) :
?>
	<?php if ($this->params->get('show_no_articles', 1)) :
?>
		<p><?php echo JText::_('COM_CONTENT_NO_ARTICLES');
?></p>
	<?php endif; ?>
<?php endif; ?>

<?php $leadingcount = 0; ?>
<?php if (!empty($this->lead_items)) : ?>
<div class="items-leading">
	<?php foreach ($this->lead_items as &$item) : ?>
		<article class="leading-<?php echo $leadingcount;
?><?php echo $item->state == 0 ? 'system-unpublished' :
null; ?>">
			<?php
				$this->item = &$item;
				echo $this->loadTemplate('item');
			?>
		</article>
		<?php $leadingcount++; ?>
	<?php endforeach; ?>
</div>
<?php endif; ?>
<?php if (!empty($this->intro_items)) : ?>
	<?php $introcount = count($this->intro_items); ?>
	<?php $counter = 0; ?>
	<?php foreach ($this->intro_items as $key => &$item) : ?>
		<?php $rowcount = ((int) $key % (int) $this->columns) + 1; ?>
		<?php if ($rowcount === 1) : ?>
			<?php $row = $counter / $this->columns; ?>
			<div class="items-row cols-<?php echo (int)
$this->columns;?> <?php echo 'row-'.$row;
?>">
		<?php endif; ?>
		<article class="item column-<?php echo $rowcount;?><?php
echo $item->state == 0 ? ' system-unpublished' : null;
?>">
		<?php
			$this->item = &$item;
			echo $this->loadTemplate('item');
		?>
		</article>
		<?php $counter++; ?>
		<?php if ($rowcount === (int) $this->columns or $counter ===
$introcount) : ?>
			<span class="row-separator"></span>
			</div>
		<?php endif; ?>
	<?php endforeach; ?>

<?php endif; ?>

<?php if (!empty($this->link_items)) : ?>
	<?php echo $this->loadTemplate('links'); ?>
<?php endif; ?>

<?php if ($this->params->get('maxLevel') != 0 &&
is_array($this->children[$this->category->id]) &&
count($this->children[$this->category->id]) > 0) : ?>
	<div class="cat-children">

	<?php if
($this->params->get('show_category_heading_title_text', 1)
== 1) : ?>
		<h3>
			<?php echo JText::_('JGLOBAL_SUBCATEGORIES'); ?>
		</h3>
	<?php endif; ?>
	<?php echo $this->loadTemplate('children'); ?>
	</div>
<?php endif; ?>

<?php if ($this->pagination->pagesTotal > 1 &&
($this->params->def('show_pagination', 1) == 1 ||
$this->params->get('show_pagination') == 2)) : ?>
	<div class="pagination">
	<?php if ($this->params->def('show_pagination_results',
1)) : ?>
		<p class="counter">
		<?php echo $this->pagination->getPagesCounter(); ?>
		</p>
	<?php endif; ?>
	<?php echo $this->pagination->getPagesLinks(); ?>
	</div>
<?php endif; ?>

</section>
category/blog_children.php000064400000004255151163610670011701
0ustar00<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.beez3
 *
 * @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;

$app = JFactory::getApplication();
$templateparams = $app->getTemplate(true)->params;

$class  = ' class="first"';
$user   = JFactory::getUser();
$groups = $user->getAuthorisedViewLevels();
?>

<?php if (count($this->children[$this->category->id]) > 0) :
?>

	<ul>
	<?php foreach ($this->children[$this->category->id] as $id
=> $child) : ?>
		<?php // Check whether category access level allows access to
subcategories. ?>
		<?php if (in_array($child->access, $groups)) : ?>
			<?php
			if ($child->numitems ||
$this->params->get('show_empty_categories') ||
count($child->getChildren())) :
				if (!isset($this->children[$this->category->id][$id + 1])) :
					$class = ' class="last"';
				endif;
			?>
				<li<?php echo $class; ?>>
				<?php $class = ''; ?>
					<span class="item-title"><a href="<?php
echo
JRoute::_(ContentHelperRoute::getCategoryRoute($child->id));?>">
						<?php echo $this->escape($child->title); ?></a>
					</span>

					<?php if ($this->params->get('show_subcat_desc') ==
1) :?>
						<?php if ($child->description) : ?>
							<div class="category-desc">
								<?php echo JHtml::_('content.prepare',
$child->description, '', 'com_content.category');
?>
							</div>
						<?php endif; ?>
					<?php endif; ?>

					<?php if (
$this->params->get('show_cat_num_articles', 1)) : ?>
						<dl>
							<dt>
								<?php echo JText::_('COM_CONTENT_NUM_ITEMS'); ?>
							</dt>
							<dd>
								<?php echo $child->getNumItems(true); ?>
							</dd>
						</dl>
					<?php endif; ?>

					<?php if (count($child->getChildren()) > 0):
						$this->children[$child->id] = $child->getChildren();
						$this->category = $child;
						$this->maxLevel--;
						if ($this->maxLevel !== 0) :
							echo $this->loadTemplate('children');
						endif;
						$this->category = $child->getParent();
						$this->maxLevel++;
					endif; ?>
				</li>
			<?php endif; ?>
		<?php endif; ?>
	<?php endforeach; ?>
	</ul>

<?php endif; ?>
category/blog_item.php000064400000016356151163610670011054 0ustar00<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.beez3
 *
 * @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;

$params = &$this->item->params;
$images = json_decode($this->item->images);
$app = JFactory::getApplication();
$canEdit = $this->item->params->get('access-edit');

JHtml::addIncludePath(JPATH_COMPONENT . '/helpers');

$currentDate   = JFactory::getDate()->format('Y-m-d H:i:s');
$isUnpublished = ($this->item->state == 0 ||
$this->item->publish_up > $currentDate)
	|| ($this->item->publish_down < $currentDate &&
$this->item->publish_down !== JFactory::getDbo()->getNullDate());

?>
<?php if ($isUnpublished) : ?>
	<div class="system-unpublished">
<?php endif; ?>
<?php if ($params->get('show_title')) : ?>
	<h2>
		<?php if ($params->get('link_titles') &&
$params->get('access-view')) : ?>
			<a href="<?php echo
JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug,
$this->item->catid, $this->item->language)); ?>">
			<?php echo $this->escape($this->item->title);
?></a>
		<?php else : ?>
			<?php echo $this->escape($this->item->title); ?>
		<?php endif; ?>
	</h2>
<?php endif; ?>

<?php // Content is generated by content plugin event
"onContentAfterTitle" ?>
<div class="pull-left"><?php echo
$this->item->event->afterDisplayTitle; ?></div>

<?php if ($canEdit || $params->get('show_print_icon') ||
$params->get('show_email_icon')) : ?>
	<ul class="actions">
		<?php if ($params->get('show_print_icon')) : ?>
		<li class="print-icon">
			<?php echo JHtml::_('icon.print_popup', $this->item,
$params, array(), true); ?>
		</li>
		<?php endif; ?>
		<?php if ($params->get('show_email_icon')) : ?>
		<li class="email-icon">
			<?php echo JHtml::_('icon.email', $this->item, $params,
array(), true); ?>
		</li>
		<?php endif; ?>
		<?php if ($canEdit) : ?>
		<li class="edit-icon">
			<?php echo JHtml::_('icon.edit', $this->item, $params,
array(), true); ?>
		</li>
		<?php endif; ?>
	</ul>
<?php endif; ?>

<?php echo $this->item->event->beforeDisplayContent; ?>

<?php // to do not that elegant would be nice to group the params ?>

<?php if ($params->get('show_author') ||
$params->get('show_category') ||
$params->get('show_create_date') ||
$params->get('show_modify_date') ||
$params->get('show_publish_date') ||
$params->get('show_parent_category') ||
$params->get('show_hits')) : ?>
	<dl class="article-info">
	<dt class="article-info-term"><?php echo
JText::_('COM_CONTENT_ARTICLE_INFO'); ?></dt>
<?php endif; ?>
<?php if ($params->get('show_parent_category') &&
$this->item->parent_id != 1) : ?>
		<dd class="parent-category-name">
			<?php $title = $this->escape($this->item->parent_title);
				$url = '<a href="' .
JRoute::_(ContentHelperRoute::getCategoryRoute($this->item->parent_id))
. '">' . $title . '</a>'; ?>
			<?php if ($params->get('link_parent_category')) : ?>
				<?php echo JText::sprintf('COM_CONTENT_PARENT', $url);
?>
				<?php else : ?>
				<?php echo JText::sprintf('COM_CONTENT_PARENT', $title);
?>
			<?php endif; ?>
		</dd>
<?php endif; ?>
<?php if ($params->get('show_category')) : ?>
		<dd class="category-name">
			<?php $title = $this->escape($this->item->category_title);
					$url = '<a href="' .
JRoute::_(ContentHelperRoute::getCategoryRoute($this->item->catid)) .
'">' . $title . '</a>'; ?>
			<?php if ($params->get('link_category')) : ?>
				<?php echo JText::sprintf('COM_CONTENT_CATEGORY', $url);
?>
				<?php else : ?>
				<?php echo JText::sprintf('COM_CONTENT_CATEGORY', $title);
?>
			<?php endif; ?>
		</dd>
<?php endif; ?>
<?php if ($params->get('show_create_date')) : ?>
		<dd class="create">
		<?php echo JText::sprintf('COM_CONTENT_CREATED_DATE_ON',
JHtml::_('date', $this->item->created,
JText::_('DATE_FORMAT_LC2'))); ?>
		</dd>
<?php endif; ?>
<?php if ($params->get('show_modify_date')) : ?>
		<dd class="modified">
		<?php echo JText::sprintf('COM_CONTENT_LAST_UPDATED',
JHtml::_('date', $this->item->modified,
JText::_('DATE_FORMAT_LC2'))); ?>
		</dd>
<?php endif; ?>
<?php if ($params->get('show_publish_date')) : ?>
		<dd class="published">
		<?php echo JText::sprintf('COM_CONTENT_PUBLISHED_DATE_ON',
JHtml::_('date', $this->item->publish_up,
JText::_('DATE_FORMAT_LC2'))); ?>
		</dd>
<?php endif; ?>
<?php if ($params->get('show_author') &&
!empty($this->item->author )) : ?>
	<dd class="createdby">
		<?php $author = $this->item->created_by_alias ?:
$this->item->author; ?>
		<?php if (!empty($this->item->contact_link) &&
$params->get('link_author') == true) : ?>
			<?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY',
JHtml::_('link', $this->item->contact_link, $author));
?>
		<?php else :?>
			<?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY',
$author); ?>
		<?php endif; ?>
	</dd>
<?php endif; ?>
<?php if ($params->get('show_hits')) : ?>
		<dd class="hits">
		<?php echo JText::sprintf('COM_CONTENT_ARTICLE_HITS',
$this->item->hits); ?>
		</dd>
<?php endif; ?>
<?php if ($params->get('show_author') ||
$params->get('show_category') ||
$params->get('show_create_date') ||
$params->get('show_modify_date') ||
$params->get('show_publish_date') ||
$params->get('show_parent_category') ||
$params->get('show_hits')) :?>
	</dl>
<?php endif; ?>
<?php if (isset($images->image_intro) &&
!empty($images->image_intro)) : ?>
	<?php $imgfloat = empty($images->float_intro) ?
$params->get('float_intro') : $images->float_intro; ?>
	<div class="img-intro-<?php echo htmlspecialchars($imgfloat);
?>">
	<img
		<?php if ($images->image_intro_caption):
			echo 'class="caption"'.' title="' .
htmlspecialchars($images->image_intro_caption, ENT_COMPAT,
'UTF-8') . '"';
		endif; ?>
		src="<?php echo htmlspecialchars($images->image_intro,
ENT_COMPAT, 'UTF-8'); ?>" alt="<?php echo
htmlspecialchars($images->image_intro_alt, ENT_COMPAT,
'UTF-8'); ?>"/>
	</div>
<?php endif; ?>
<?php echo $this->item->introtext; ?>

<?php if ($params->get('show_readmore') &&
$this->item->readmore) :
	if ($params->get('access-view')) :
		$link =
JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug,
$this->item->catid, $this->item->language));
	else :
		$menu = JFactory::getApplication()->getMenu();
		$active = $menu->getActive();
		$itemId = $active->id;
		$link = new
JUri(JRoute::_('index.php?option=com_users&view=login&Itemid='
. $itemId, false));
		$link->setVar('return',
base64_encode(ContentHelperRoute::getArticleRoute($this->item->slug,
$this->item->catid, $this->item->language)));
	endif;
?>
		<p class="readmore">
				<a href="<?php echo $link; ?>">
					<?php if (!$params->get('access-view')) :
						echo JText::_('COM_CONTENT_REGISTER_TO_READ_MORE');
					elseif ($readmore = $this->item->alternative_readmore) :
						echo $readmore;
						if ($params->get('show_readmore_title', 0) != 0) :
							echo JHtml::_('string.truncate', $this->item->title,
$params->get('readmore_limit'));
						endif;
					elseif ($params->get('show_readmore_title', 0) == 0) :
						echo JText::sprintf('COM_CONTENT_READ_MORE_TITLE');
					else :
						echo JText::_('COM_CONTENT_READ_MORE');
						echo JHtml::_('string.truncate', $this->item->title,
$params->get('readmore_limit'));
					endif; ?></a>
		</p>
<?php endif; ?>

<?php if ($isUnpublished) : ?>
	</div>
<?php endif; ?>

<div class="item-separator"></div>
<?php echo $this->item->event->afterDisplayContent; ?>
category/blog_links.php000064400000001251151163610670011222
0ustar00<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.beez3
 *
 * @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::addIncludePath(JPATH_COMPONENT . '/helpers');

?>

<div class="items-more">
	<h3><?php echo JText::_('COM_CONTENT_MORE_ARTICLES');
?></h3>
	<ol>
	<?php foreach ($this->link_items as &$item) : ?>
		<li>
			<a href="<?php echo
JRoute::_(ContentHelperRoute::getArticleRoute($item->slug,
$item->catid, $item->language)); ?>">
			<?php echo $item->title; ?></a>
		</li>
	<?php endforeach; ?>
	</ol>
</div>
category/default.php000064400000005533151163610670010532 0ustar00<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.beez3
 *
 * @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;

$app            = JFactory::getApplication();
$templateparams = $app->getTemplate(true)->params;


JHtml::addIncludePath(JPATH_COMPONENT . '/helpers');
JHtml::_('behavior.caption');

$showCategoryTitle            =
$this->params->get('show_category_title') == 1;
$showCategoryHeadingTitleText =
$this->params->get('show_category_heading_title_text', 1)
== 1;
$pageSubHeading               =
$this->params->get('page_subheading');
?>
<section class="category-list<?php echo
$this->pageclass_sfx;?>">
<?php
if ($showPageHeading =
$this->params->get('show_page_heading')) : ?>
<?php if ($showPageHeading and ($showCategoryTitle === true or
$pageSubHeading)) : ?>
<hgroup>
<?php endif; ?>
<h1>
	<?php echo
$this->escape($this->params->get('page_heading')); ?>
</h1>
<?php endif; ?>

<?php if ($showCategoryTitle === true or $pageSubHeading) : ?>
<h2>
	<?php echo $this->escape($pageSubHeading); ?>
	<?php if ($showCategoryTitle === true)
	{
		echo '<span
class="subheading-category">'.JHtml::_('content.prepare',
$this->category->title, '',
'com_content.category.title').'</span>';
	}
	?>
</h2>
<?php if ($this->params->get('show_page_heading') and
($this->params->get('show_category_title', 1) or
$pageSubHeading)) : ?>
</hgroup>
<?php endif; ?>
<?php endif; ?>

<?php if ($this->params->get('show_description', 1) ||
$this->params->def('show_description_image', 1)) : ?>
	<div class="category-desc">
	<?php if ($this->params->get('show_description_image')
&& $this->category->getParams()->get('image')) :
?>
		<img src="<?php echo
$this->category->getParams()->get('image');
?>"/>
	<?php endif; ?>
	<?php if ($this->category->description &&
$this->params->get('show_description')) : ?>
		<?php echo JHtml::_('content.prepare',
$this->category->description, '',
'com_content.category'); ?>
	<?php endif; ?>
	<div class="clr"></div>
	</div>
<?php endif; ?>

<?php if ($this->params->get('maxLevel') != 0 &&
is_array($this->children[$this->category->id]) &&
count($this->children[$this->category->id]) > 0) : ?>
	<div class="cat-children">

	<?php if ($showCategoryTitle === true or $pageSubHeading)
	{
		echo '<h3>';
	}
	elseif ($showCategoryHeadingTitleText === true)
	{
		echo '<h2>';
	} ?>
	<?php if ($showCategoryHeadingTitleText === true) : ?>
		<?php echo JText::_('JGLOBAL_SUBCATEGORIES'); ?>
	<?php endif; ?>
	<?php if ($showCategoryTitle === true or $pageSubHeading)
	{
		echo '</h3>';
	}
	elseif ($showCategoryHeadingTitleText === true)
	{
		echo '</h2>';
	} ?>
	</div>
	<?php endif; ?>
	<?php echo $this->loadTemplate('children'); ?>
	<div class="cat-items">
		<?php echo $this->loadTemplate('articles'); ?>
	</div>
</section>
category/default_articles.php000064400000021343151163610670012415
0ustar00<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.beez3
 *
 * @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;

$app = JFactory::getApplication();

JHtml::addIncludePath(JPATH_COMPONENT.'/helpers/html');
JHtml::_('behavior.framework');

$n         = count($this->items);
$listOrder =
$this->escape($this->state->get('list.ordering'));
$listDirn  =
$this->escape($this->state->get('list.direction'));

// Check for at least one editable article
$isEditable = false;

if (!empty($this->items))
{
	foreach ($this->items as $article)
	{
		if ($article->params->get('access-edit'))
		{
			$isEditable = true;
			break;
		}
	}
}
?>

<?php if (empty($this->items)) : ?>

	<?php if ($this->params->get('show_no_articles', 1)) :
?>
		<p><?php echo JText::_('COM_CONTENT_NO_ARTICLES');
?></p>
	<?php endif; ?>

<?php else : ?>

<form action="<?php echo
htmlspecialchars(JUri::getInstance()->toString()); ?>"
method="post" name="adminForm"
id="adminForm">
	<?php if ($this->params->get('filter_field') !==
'hide') : ?>
	<fieldset class="filters">
		<legend class="hidelabeltxt">
			<?php echo JText::_('JGLOBAL_FILTER_LABEL'); ?>
		</legend>
		<div class="filter-search">
			<?php if ($this->params->get('filter_field') ===
'tag') :?>
			<select name="filter_tag" id="filter_tag"
onchange="document.adminForm.submit();">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_TAG'); ?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('tag.options', true, true), 'value',
'text', $this->state->get('filter.tag')); ?>
			</select>
			<?php elseif ($this->params->get('filter_field') ===
'month') : ?>
			<select name="filter-search" id="filter-search"
onchange="document.adminForm.submit();">
				<option value=""><?php echo
JText::_('JOPTION_SELECT_MONTH'); ?></option>
				<?php echo JHtml::_('select.options',
JHtml::_('content.months', $this->state), 'value',
'text', $this->state->get('list.filter')); ?>
			</select>
			<?php else : ?>		
			<label class="filter-search-lbl element-invisible"
for="filter-search">
				<?php echo
JText::_('COM_CONTENT_'.$this->params->get('filter_field').'_FILTER_LABEL').'&#160;';
?>
			</label>
			<input type="text" name="filter-search"
id="filter-search" value="<?php echo
$this->escape($this->state->get('list.filter'));
?>" class="inputbox"
onchange="document.adminForm.submit();" title="<?php echo
JText::_('COM_CONTENT_FILTER_SEARCH_DESC'); ?>"
placeholder="<?php echo
JText::_('COM_CONTENT_'.$this->params->get('filter_field').'_FILTER_LABEL');
?>" />
			<?php endif; ?>
		</div>
	<?php endif; ?>

	<?php if ($this->params->get('show_pagination_limit'))
: ?>
		<div class="display-limit">
			<?php echo JText::_('JGLOBAL_DISPLAY_NUM'); ?>&#160;
			<?php echo $this->pagination->getLimitBox(); ?>
		</div>
	<?php endif; ?>

	<?php if ($this->params->get('filter_field') !==
'hide') :?>
	</fieldset>
	<?php endif; ?>

	<div class="clr"></div>

	<table class="category">
		<?php if ($this->params->get('show_headings')) : ?>
		<thead>
			<tr>
				<th class="list-title" id="tableOrdering">
					<?php echo JHtml::_('grid.sort',
'COM_CONTENT_HEADING_TITLE', 'a.title', $listDirn,
$listOrder); ?>
				</th>

				<?php if ($date =
$this->params->get('list_show_date')) : ?>
				<th class="list-date" id="tableOrdering2">
					<?php if ($date === 'created') : ?>
						<?php echo JHtml::_('grid.sort',
'COM_CONTENT_'.$date.'_DATE', 'a.created',
$listDirn, $listOrder); ?>
					<?php elseif ($date === 'modified') : ?>
						<?php echo JHtml::_('grid.sort',
'COM_CONTENT_'.$date.'_DATE', 'a.modified',
$listDirn, $listOrder); ?>
					<?php elseif ($date === 'published') : ?>
						<?php echo JHtml::_('grid.sort',
'COM_CONTENT_'.$date.'_DATE', 'a.publish_up',
$listDirn, $listOrder); ?>
					<?php endif; ?>
				</th>
				<?php endif; ?>

				<?php if ($this->params->get('list_show_author', 1))
: ?>
				<th class="list-author" id="tableOrdering3">
					<?php echo JHtml::_('grid.sort', 'JAUTHOR',
'author', $listDirn, $listOrder); ?>
				</th>
				<?php endif; ?>

				<?php if ($this->params->get('list_show_hits', 1)) :
?>
				<th class="list-hits" id="tableOrdering4">
					<?php echo JHtml::_('grid.sort',
'JGLOBAL_HITS', 'a.hits', $listDirn, $listOrder); ?>
				</th>
				<?php endif; ?>
				<?php if ($this->params->get('list_show_votes', 0)
&& $this->vote) : ?>
					<th id="categorylist_header_votes">
						<?php echo JHtml::_('grid.sort',
'COM_CONTENT_VOTES', 'rating_count', $listDirn,
$listOrder); ?>
					</th>
				<?php endif; ?>
				<?php if ($this->params->get('list_show_ratings', 0)
&& $this->vote) : ?>
					<th id="categorylist_header_ratings">
						<?php echo JHtml::_('grid.sort',
'COM_CONTENT_RATINGS', 'rating', $listDirn,
$listOrder); ?>
					</th>
				<?php endif; ?>
				<?php if ($isEditable) : ?>
					<th id="categorylist_header_edit"><?php echo
JText::_('COM_CONTENT_EDIT_ITEM'); ?></th>
				<?php endif; ?>
			</tr>
		</thead>
		<?php endif; ?>

		<tbody>

			<?php foreach ($this->items as $i => &$article) : ?>
			<tr class="cat-list-row<?php echo $i % 2; ?>">

				<?php if (in_array($article->access,
$this->user->getAuthorisedViewLevels())) : ?>

					<td class="list-title">
						<a href="<?php echo
JRoute::_(ContentHelperRoute::getArticleRoute($article->slug,
$article->catid, $article->language)); ?>">
							<?php echo $this->escape($article->title); ?></a>
					</td>

					<?php if ($this->params->get('list_show_date')) :
?>
					<td class="list-date">
						<?php
							echo JHtml::_(
									'date', $article->displayDate, $this->escape(
											$this->params->get('date_format',
JText::_('DATE_FORMAT_LC3'))
									)
							);
						?>
					</td>
					<?php endif; ?>

					<?php if ($this->params->get('list_show_author',
1)) : ?>
					<td class="list-author">
						<?php if (!empty($article->author) ||
!empty($article->created_by_alias)) : ?>
							<?php $author = $article->created_by_alias ?:
$article->author; ?>
							<?php if (!empty($article->contact_link) &&
$this->params->get('link_author') == true):?>
								<?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY',
JHtml::_('link', $article->contact_link, $author)); ?>
							<?php else :?>
								<?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY',
$author); ?>
							<?php endif; ?>
						<?php endif; ?>
					</td>
					<?php endif; ?>

					<?php if ($this->params->get('list_show_hits', 1))
: ?>
					<td class="list-hits">
						<?php echo $article->hits; ?>
					</td>
					<?php endif; ?>

					<?php if ($this->params->get('list_show_votes', 0)
&& $this->vote) : ?>
						<td class="list-votes">
							<?php echo $article->rating_count; ?>
						</td>
					<?php endif; ?>
					<?php if ($this->params->get('list_show_ratings',
0) && $this->vote) : ?>
						<td class="list-ratings">
							<?php echo $article->rating; ?>
						</td>
					<?php endif; ?>
					<?php if ($isEditable) : ?>
						<td class="list-edit">
							<?php if ($article->params->get('access-edit')) :
?>
								<?php echo JHtml::_('icon.edit', $article,
$article->params, array(), true); ?>
							<?php endif; ?>
						</td>
					<?php endif; ?>
				<?php else : ?>
				<td>
					<?php
						echo $this->escape($article->title).' : ';
						$menu = JFactory::getApplication()->getMenu();
						$active = $menu->getActive();
						$itemId = $active->id;
						$link   = new
JUri(JRoute::_('index.php?option=com_users&view=login&Itemid='
. $itemId, false));
						$link->setVar('return',
base64_encode(ContentHelperRoute::getArticleRoute($article->slug,
$article->catid, $article->language)));
					?>
					<a href="<?php echo $link; ?>"
class="register">
					<?php echo JText::_('COM_CONTENT_REGISTER_TO_READ_MORE');
?></a>
				</td>
				<?php endif; ?>

			</tr>
			<?php endforeach; ?>
		</tbody>
	</table>
<?php endif; ?>

<?php // Code to add a link to submit an article. ?>
<?php if
($this->category->getParams()->get('access-create')) :
?>
	<?php echo JHtml::_('icon.create', $this->category,
$this->category->params, array(), true); ?>
<?php  endif; ?>

<?php // Add pagination links ?>
<?php if (!empty($this->items)) : ?>
	<?php if (($this->params->def('show_pagination', 2) ==
1  || ($this->params->get('show_pagination') == 2))
&& ($this->pagination->pagesTotal > 1)) : ?>
	<div class="pagination">

		<?php if
($this->params->def('show_pagination_results', 1)) : ?>
			 <p class="counter">
				<?php echo $this->pagination->getPagesCounter(); ?>
			</p>
		<?php  endif; ?>

		<?php echo $this->pagination->getPagesLinks(); ?>
	</div>
	<?php endif; ?>

	<div>
		<input type="hidden" name="task"
value="" />
		<input type="hidden" name="filter_order"
value="" />
		<input type="hidden" name="filter_order_Dir"
value="" />
		<input type="hidden" name="limitstart"
value="" />
	</div>
</form>
<?php endif; ?>
category/default_children.php000064400000004454151163610670012403
0ustar00<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.beez3
 *
 * @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;

$app = JFactory::getApplication();
$templateparams = $app->getTemplate(true)->params;

$class  = ' class="first"';
$user   = JFactory::getUser();
$groups = $user->getAuthorisedViewLevels();
?>

<?php if (count($this->children[$this->category->id]) > 0)
:?>

	<ul>
	<?php foreach ($this->children[$this->category->id] as $id
=> $child) : ?>
		<?php // Check whether category access level allows access to
subcategories. ?>
		<?php if (in_array($child->access, $groups)) : ?>
			<?php
			if ($this->params->get('show_empty_categories') ||
$child->getNumItems(true) || count($child->getChildren())) :
				if (!isset($this->children[$this->category->id][$id + 1])) :
					$class = ' class="last"';
				endif;
			?>
				<li<?php echo $class; ?>>
				<?php $class = ''; ?>
					<h3 class="item-title"><a href="<?php echo
JRoute::_(ContentHelperRoute::getCategoryRoute($child->id));?>">
						<?php echo $this->escape($child->title); ?></a>
					</h3>
					<?php if ($this->params->get('show_subcat_desc') ==
1) :?>
						<?php if ($child->description and
$this->params->get('show_description') != 0 ) : ?>
							<div class="category-desc">
								<?php echo JHtml::_('content.prepare',
$child->description, '', 'com_content.category');
?>
							</div>
						<?php endif; ?>
					<?php endif; ?>

					<?php if
($this->params->get('show_cat_num_articles', 1)) : ?>
						<?php if ($child->getNumItems() == true) : ?>
						<dl>
							<dt>
								<?php echo JText::_('COM_CONTENT_NUM_ITEMS'); ?>
							</dt>
							<dd>
								<?php echo $child->getNumItems(true); ?>
							</dd>
						</dl>
						<?php endif; ?>
					<?php endif; ?>

					<?php if (count($child->getChildren()) > 0 ) :
						$this->children[$child->id] = $child->getChildren();
						$this->category = $child;
						$this->maxLevel--;
						if ($this->maxLevel !== 0) :
							echo $this->loadTemplate('children');
						endif;
						$this->category = $child->getParent();
						$this->maxLevel++;
					endif; ?>
				</li>
			<?php endif; ?>
		<?php endif; ?>
	<?php endforeach; ?>
	</ul>

<?php endif; ?>
featured/default.php000064400000004654151163610670010517 0ustar00<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.beez3
 *
 * @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::addIncludePath(JPATH_COMPONENT . '/helpers');

JHtml::_('behavior.caption');

?>

<section class="blog-featured<?php echo
$this->pageclass_sfx;?>">
<?php if ( $this->params->get('show_page_heading') != 0)
: ?>
	<h1>
	<?php echo
$this->escape($this->params->get('page_heading')); ?>
	</h1>
<?php endif; ?>
<?php $leadingcount = 0; ?>
<?php if (!empty($this->lead_items)) : ?>
<div class="items-leading">
	<?php foreach ($this->lead_items as &$item) : ?>
		<article class="leading-<?php echo $leadingcount;
?><?php echo $item->state == 0 ? ' system-unpublished' :
null; ?>">
			<?php
				$this->item = &$item;
				echo $this->loadTemplate('item');
			?>
		</article>
		<?php
			$leadingcount++;
		?>
	<?php endforeach; ?>
</div>
<?php endif; ?>
<?php
	$introcount = count($this->intro_items);
	$counter = 0;
?>
<?php if (!empty($this->intro_items)) : ?>
	<?php foreach ($this->intro_items as $key => &$item) : ?>

	<?php
		$key = ($key - $leadingcount) + 1;
		$rowcount = (((int) $key - 1) % (int) $this->columns) + 1;
		$row = $counter / $this->columns;

		if ($rowcount === 1) : ?>

			<div class="items-row cols-<?php echo (int)
$this->columns;?> <?php echo 'row-'.$row;
?>">
		<?php endif; ?>
		<article class="item column-<?php echo $rowcount;?><?php
echo $item->state == 0 ? ' system-unpublished"' : null;
?>">
			<?php
					$this->item = &$item;
					echo $this->loadTemplate('item');
			?>
		</article>
		<?php $counter++; ?>
			<?php if (($rowcount == $this->columns) or ($counter ==
$introcount)) : ?>
				<span class="row-separator"></span>
				</div>

			<?php endif; ?>
	<?php endforeach; ?>
<?php endif; ?>

<?php if (!empty($this->link_items)) : ?>
	<div class="items-more">
	<?php echo $this->loadTemplate('links'); ?>
	</div>
<?php endif; ?>

<?php if ($this->params->def('show_pagination', 2) == 1 
|| ($this->params->get('show_pagination') == 2 &&
$this->pagination->pagesTotal > 1)) : ?>
	<div class="pagination">

		<?php if
($this->params->def('show_pagination_results', 1)) : ?>
			<p class="counter">
				<?php echo $this->pagination->getPagesCounter(); ?>
			</p>
		<?php  endif; ?>
				<?php echo $this->pagination->getPagesLinks(); ?>
	</div>
<?php endif; ?>
</section>


featured/default_item.php000064400000017006151163610670011530
0ustar00<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.beez3
 *
 * @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;

// Create a shortcut for params.
$canEdit = $this->item->params->get('access-edit');
$params  = &$this->item->params;

$showPrintIcon = $params->get('show_print_icon');
$showEmailIcon = $params->get('show_email_icon');

$images         = json_decode($this->item->images);
$app            = JFactory::getApplication();
$templateparams = $app->getTemplate(true)->params;

$currentDate   = JFactory::getDate()->format('Y-m-d H:i:s');
$isUnpublished = ($this->item->state == 0 ||
$this->item->publish_up > $currentDate)
	|| ($this->item->publish_down < $currentDate &&
$this->item->publish_down !== JFactory::getDbo()->getNullDate());

?>
<?php if ($isUnpublished) : ?>
	<div class="system-unpublished">
<?php endif; ?>
<?php if ($params->get('show_title')) : ?>
	<h2>
		<?php if ($params->get('link_titles') &&
$params->get('access-view')) : ?>
			<a href="<?php echo
JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug,
$this->item->catid, $this->item->language)); ?>">
			<?php echo $this->escape($this->item->title);
?></a>
		<?php else : ?>
			<?php echo $this->escape($this->item->title); ?>
		<?php endif; ?>
	</h2>
<?php endif; ?>

<?php // Content is generated by content plugin event
"onContentAfterTitle" ?>
<div class="pull-left"><?php echo
$this->item->event->afterDisplayTitle; ?></div>

<?php if ($canEdit || $showPrintIcon || $showEmailIcon) : ?>
	<ul class="actions">
		<?php if ($showPrintIcon) : ?>
		<li class="print-icon">
			<?php echo JHtml::_('icon.print_popup', $this->item,
$params, array(), true); ?>
		</li>
		<?php endif; ?>
		<?php if ($showEmailIcon) : ?>
		<li class="email-icon">
			<?php echo JHtml::_('icon.email', $this->item, $params,
array(), true); ?>
		</li>
		<?php endif; ?>

		<?php if ($canEdit) : ?>
		<li class="edit-icon">
			<?php echo JHtml::_('icon.edit', $this->item, $params,
array(), true); ?>
		</li>
		<?php endif; ?>
	</ul>
<?php endif; ?>

<?php echo $this->item->event->beforeDisplayContent; ?>

<?php // to do not that elegant would be nice to group the params ?>

<?php if ($params->get('show_author') or
$params->get('show_category') or
$params->get('show_create_date') or
$params->get('show_modify_date') or
$params->get('show_publish_date') or
$params->get('show_parent_category') or
$params->get('show_hits')) : ?>
 <dl class="article-info">
 <dt class="article-info-term"><?php  echo
JText::_('COM_CONTENT_ARTICLE_INFO'); ?></dt>
<?php endif; ?>
<?php if ($this->item->parent_id != 1 &&
$params->get('show_parent_category')) : ?>
		<dd class="parent-category-name">
			<?php $title = $this->escape($this->item->parent_title);
				$title = $title ?: JText::_('JGLOBAL_UNCATEGORISED');
				$url = '<a href="' .
JRoute::_(ContentHelperRoute::getCategoryRoute($this->item->parent_slug))
. '">' . $title . '</a>'; ?>
			<?php if ($params->get('link_parent_category') and
$this->item->parent_slug) : ?>
				<?php echo JText::sprintf('COM_CONTENT_PARENT', $url);
?>
				<?php else : ?>
				<?php echo JText::sprintf('COM_CONTENT_PARENT', $title);
?>
			<?php endif; ?>
		</dd>
<?php endif; ?>
<?php if ($params->get('show_category')) : ?>
		<dd class="category-name">
			<?php 	$title = $this->escape($this->item->category_title);
					$title = $title ?: JText::_('JGLOBAL_UNCATEGORISED');
					$url = '<a
href="'.JRoute::_(ContentHelperRoute::getCategoryRoute($this->item->catslug)).'">'.$title.'</a>';?>
			<?php if ($params->get('link_category') and
$this->item->catslug) : ?>
				<?php echo JText::sprintf('COM_CONTENT_CATEGORY', $url);
?>
				<?php else : ?>
				<?php echo JText::sprintf('COM_CONTENT_CATEGORY', $title);
?>
			<?php endif; ?>
		</dd>
<?php endif; ?>
<?php if ($params->get('show_create_date')) : ?>
		<dd class="create">
		<?php echo JText::sprintf('COM_CONTENT_CREATED_DATE_ON',
JHtml::_('date', $this->item->created,
JText::_('DATE_FORMAT_LC2'))); ?>
		</dd>
<?php endif; ?>
<?php if ($params->get('show_modify_date')) : ?>
		<dd class="modified">
		<?php echo JText::sprintf('COM_CONTENT_LAST_UPDATED',
JHtml::_('date', $this->item->modified,
JText::_('DATE_FORMAT_LC2'))); ?>
		</dd>
<?php endif; ?>
<?php if ($params->get('show_publish_date')) : ?>
		<dd class="published">
		<?php echo JText::sprintf('COM_CONTENT_PUBLISHED_DATE_ON',
JHtml::_('date', $this->item->publish_up,
JText::_('DATE_FORMAT_LC2'))); ?>
		</dd>
<?php endif; ?>
<?php if (!empty($this->item->author) &&
$params->get('show_author')) : ?>
	<dd class="createdby">
		<?php $author = $this->item->created_by_alias ?:
$this->item->author; ?>
		<?php if (!empty($this->item->contact_link ) && 
$params->get('link_author') == true) : ?>
			<?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY',
JHtml::_('link', $this->item->contact_link, $author));
?>
		<?php else :?>
			<?php echo JText::sprintf('COM_CONTENT_WRITTEN_BY',
$author); ?>
		<?php endif; ?>
	</dd>
<?php endif; ?>
<?php if ($params->get('show_hits')) : ?>
		<dd class="hits">
		<?php echo JText::sprintf('COM_CONTENT_ARTICLE_HITS',
$this->item->hits); ?>
		</dd>
<?php endif; ?>
<?php if ($params->get('show_author') or
$params->get('show_category') or
$params->get('show_create_date') or
$params->get('show_modify_date') or
$params->get('show_publish_date') or
$params->get('show_parent_category') or
$params->get('show_hits')) : ?>
 </dl>
<?php endif; ?>

<?php  if (isset($images->image_intro) and
!empty($images->image_intro)) : ?>
	<?php $imgfloat = empty($images->float_intro) ?
$params->get('float_intro') : $images->float_intro; ?>
	<div class="img-intro-<?php echo htmlspecialchars($imgfloat,
ENT_COMPAT, 'UTF-8'); ?>">
	<img
		<?php if ($images->image_intro_caption):
			echo 'class="caption"'.' title="' .
htmlspecialchars($images->image_intro_caption, ENT_COMPAT,
'UTF-8') .'"';
		endif; ?>
		src="<?php echo htmlspecialchars($images->image_intro,
ENT_COMPAT, 'UTF-8'); ?>" alt="<?php echo
htmlspecialchars($images->image_intro_alt, ENT_COMPAT,
'UTF-8'); ?>"/>
	</div>
<?php endif; ?>

<?php echo $this->item->introtext; ?>

<?php if ($this->item->readmore &&
$params->get('show_readmore')) :
	if ($params->get('access-view')) :
		$link =
JRoute::_(ContentHelperRoute::getArticleRoute($this->item->slug,
$this->item->catid, $this->item->language));
	else :
		$menu = JFactory::getApplication()->getMenu();
		$active = $menu->getActive();
		$itemId = $active->id;
		$link = new
JUri(JRoute::_('index.php?option=com_users&view=login&Itemid='
. $itemId, false));
		$link->setVar('return',
base64_encode(ContentHelperRoute::getArticleRoute($this->item->slug,
$this->item->catid, $this->item->language)));
	endif;
?>
		<p class="readmore">
				<a href="<?php echo $link; ?>">
					<?php if (!$params->get('access-view')) :
						echo JText::_('COM_CONTENT_REGISTER_TO_READ_MORE');
					elseif ($readmore = $this->item->alternative_readmore) :
						echo $readmore;
						if ($params->get('show_readmore_title', 0) != 0) :
							echo JHtml::_('string.truncate', $this->item->title,
$params->get('readmore_limit'));
						endif;
					elseif ($params->get('show_readmore_title', 0) == 0) :
						echo JText::sprintf('COM_CONTENT_READ_MORE_TITLE');
					else :
						echo JText::_('COM_CONTENT_READ_MORE');
						echo JHtml::_('string.truncate', $this->item->title,
$params->get('readmore_limit'));
					endif; ?></a>
		</p>
<?php endif; ?>

<?php if ($isUnpublished) : ?>
	</div>
<?php endif; ?>

<div class="item-separator"></div>
<?php echo $this->item->event->afterDisplayContent; ?>
featured/default_links.php000064400000001133151163610670011704
0ustar00<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.beez3
 *
 * @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;

?>

<h3><?php echo JText::_('COM_CONTENT_MORE_ARTICLES');
?></h3>

<ol class="links">
<?php foreach ($this->link_items as &$item) : ?>
	<li>
		<a href="<?php echo
JRoute::_(ContentHelperRoute::getArticleRoute($item->slug,
$item->catid, $item->language)); ?>">
			<?php echo $item->title; ?></a>
	</li>
<?php endforeach; ?>
</ol>

form/edit.php000064400000026365151163610670007167 0ustar00<?php
/**
 * @package     Joomla.Site
 * @subpackage  Templates.beez3
 *
 * @copyright   Copyright (C) 2005 - 2020 Open Source Matters, Inc. All
rights reserved.
 * @license     GNU General Public License version 2 or later; see
LICENSE.txt
 */

// no direct access
defined('_JEXEC') or die;

JHtml::_('behavior.keepalive');
JHtml::_('behavior.formvalidation');

// Create shortcut to parameters.
$params = $this->state->get('params');
//$images = json_decode($this->item->images);
//$urls = json_decode($this->item->urls);

// This checks if the editor config options have ever been saved. If they
haven't they will fall back to the original settings.
$editoroptions = isset($params->show_publishing_options);
if (!$editoroptions):
	$params->show_urls_images_frontend = '0';
endif;

$ignoredFieldsets = array('image-intro', 'image-full',
'jmetadata', 'item_associations');

?>

<script type="text/javascript">
	Joomla.submitbutton = function(task)
	{
		if (task === 'article.cancel' ||
document.formvalidator.isValid(document.getElementById('adminForm')))
		{
			<?php echo
$this->form->getField('articletext')->save(); ?>
			Joomla.submitform(task);
		}
	}
</script>
<div class="edit item-page<?php echo $this->pageclass_sfx;
?>">
<?php if ($params->get('show_page_heading')) : ?>
<h1>
	<?php echo $this->escape($params->get('page_heading'));
?>
</h1>
<?php endif; ?>

<form action="<?php echo
JRoute::_('index.php?option=com_content&a_id='.(int)
$this->item->id); ?>" method="post"
name="adminForm" id="adminForm"
class="form-validate">
	<fieldset>
		<legend><?php echo
JText::_('COM_CONTENT_ARTICLE_CONTENT'); ?></legend>

			<div class="control-group">
				<div class="control-label">
					<?php echo $this->form->getLabel('title'); ?>
				</div>
				<div class="controls">
					<?php echo $this->form->getInput('title'); ?>
				</div>
			</div>

		<?php if ($this->item->id === null):?>
			<div class="control-group">
				<div class="control-label">
					<?php echo $this->form->getLabel('alias'); ?>
				</div>
				<div class="controls">
					<?php echo $this->form->getInput('alias'); ?>
				</div>
			</div>
		<?php endif; ?>

			<div class="btn-group">
				<button type="button" class="btn btn-primary"
onclick="Joomla.submitbutton('article.save')">
					<?php echo JText::_('JSAVE') ?>
				</button>
				<button type="button" class="btn"
onclick="Joomla.submitbutton('article.cancel')">
					<?php echo JText::_('JCANCEL') ?>
				</button>
			</div>
			<?php if ($this->captchaEnabled) : ?>
				<?php echo $this->form->renderField('captcha');
?>
			<?php endif; ?>
			<?php echo $this->form->getInput('articletext');
?>

	</fieldset>
	<?php if ($params->get('show_urls_images_frontend')  ) :
?>
	<fieldset>
		<legend><?php echo
JText::_('COM_CONTENT_IMAGES_AND_URLS'); ?></legend>
			<div class="control-group">
				<div class="control-label">
					<?php echo $this->form->getLabel('image_intro',
'images'); ?>
					<?php echo $this->form->getInput('image_intro',
'images'); ?>
				</div>
			</div>
			<div class="control-group">
				<div class="control-label">
					<?php echo $this->form->getLabel('image_intro_alt',
'images'); ?>
				</div>
				<div class="controls">
					<?php echo $this->form->getInput('image_intro_alt',
'images'); ?>
				</div>
			</div>
			<div class="control-group">
				<div class="control-label">
					<?php echo
$this->form->getLabel('image_intro_caption',
'images'); ?>
				</div>
				<div class="controls">
					<?php echo
$this->form->getInput('image_intro_caption',
'images'); ?>
				</div>
			</div>
			<div class="control-group">
				<div class="control-label">
					<?php echo $this->form->getLabel('float_intro',
'images'); ?>
				</div>
				<div class="controls">
					<?php echo $this->form->getInput('float_intro',
'images'); ?>
				</div>
			</div>
			<div class="control-group">
				<div class="control-label">
					<?php echo $this->form->getLabel('image_fulltext',
'images'); ?>
				</div>
				<div class="controls">
					<?php echo $this->form->getInput('image_fulltext',
'images'); ?>
				</div>
			</div>
			<div class="control-group">
				<div class="control-label">
					<?php echo
$this->form->getLabel('image_fulltext_alt',
'images'); ?>
				</div>
				<div class="controls">
					<?php echo
$this->form->getInput('image_fulltext_alt',
'images'); ?>
				</div>
			</div>
			<div class="control-group">
				<div class="control-label">
					<?php echo
$this->form->getLabel('image_fulltext_caption',
'images'); ?>
				</div>
				<div class="controls">
					<?php echo
$this->form->getInput('image_fulltext_caption',
'images'); ?>
				</div>
			</div>
			<div class="control-group">
				<div class="control-label">
					<?php echo $this->form->getLabel('float_fulltext',
'images'); ?>
				</div>
				<div class="controls">
					<?php echo $this->form->getInput('float_fulltext',
'images'); ?>
				</div>
			</div>
			<div class="control-group">
				<div class="control-label">
					<?php echo $this->form->getLabel('urla',
'urls'); ?>
				</div>
				<div class="controls">
					<?php echo $this->form->getInput('urla',
'urls'); ?>
				</div>
			</div>
			<div class="control-group">
				<div class="control-label">
					<?php echo $this->form->getLabel('urlatext',
'urls'); ?>
				</div>
				<div class="controls">
					<?php echo $this->form->getInput('urlatext',
'urls'); ?>
				</div>
			</div>
			<div class="control-group">
				<div class="controls">
					<?php echo $this->form->getInput('targeta',
'urls'); ?>
				</div>
			</div>
			<div class="control-group">
				<div class="control-label">
					<?php echo $this->form->getLabel('urlb',
'urls'); ?>
				</div>
				<div class="controls">
					<?php echo $this->form->getInput('urlb',
'urls'); ?>
				</div>
			</div>
			<div class="control-group">
				<div class="control-label">
					<?php echo $this->form->getLabel('urlbtext',
'urls'); ?>
				</div>
				<div class="controls">
					<?php echo $this->form->getInput('urlbtext',
'urls'); ?>
				</div>
			</div>
			<div class="control-group">
				<div class="controls">
					<?php echo $this->form->getInput('targetb',
'urls'); ?>
				</div>
			</div>
			<div class="control-group">
				<div class="control-label">
					<?php echo $this->form->getLabel('urlc',
'urls'); ?>
				</div>
				<div class="controls">
					<?php echo $this->form->getInput('urlc',
'urls'); ?>
				</div>
			</div>
			<div class="control-group">
				<div class="control-label">
					<?php echo $this->form->getLabel('urlctext',
'urls'); ?>
				</div>
				<div class="controls">
					<?php echo $this->form->getInput('urlctext',
'urls'); ?>
				</div>
			</div>
			<div class="control-group">
				<div class="controls">
					<?php echo $this->form->getInput('targetc',
'urls'); ?>
				</div>
			</div>
	</fieldset>
	<?php endif; ?>

	<?php // Render additional fieldsets added by plugins. ?>
	<?php foreach ($this->form->getFieldsets() as $fieldset) : ?>
		<?php if (in_array($fieldset->name, $ignoredFieldsets)) : ?>
			<?php continue; ?>
		<?php endif; ?>
		<fieldset>
			<legend><?php echo JText::_($fieldset->label);
?></legend>
			<?php $this->fieldset = $fieldset->name; ?>
			<?php echo JLayoutHelper::render('joomla.edit.fieldset',
$this); ?>
		</fieldset>
	<?php endforeach; ?>

	<fieldset>
		<legend><?php echo JText::_('COM_CONTENT_PUBLISHING');
?></legend>
			<div class="control-group">
				<div class="control-label">
					<?php echo $this->form->getLabel('catid'); ?>
				</div>
				<div class="controls">
					<?php echo $this->form->getInput('catid'); ?>
				</div>
			</div>
			<div class="control-group">
				<div class="control-label">
					<?php echo $this->form->getLabel('tags'); ?>
				</div>
				<div class="controls">
					<?php echo $this->form->getInput('tags'); ?>
				</div>
			</div>
			<div class="control-group">
				<div class="control-label">
					<?php echo $this->form->getLabel('note'); ?>
				</div>
				<div class="controls">
					<?php echo $this->form->getInput('note'); ?>
				</div>
			</div>
			<?php if ($params->get('save_history', 0)) : ?>
				<div class="control-label">
					<?php echo $this->form->getLabel('version_note');
?>
				</div>
				<div class="controls">
					<?php echo $this->form->getInput('version_note');
?>
				</div>
			<?php endif; ?>
			<?php if ($params->get('show_publishing_options', 1) ==
1) : ?>
			<div class="control-group">
				<div class="control-label">
					<?php echo
$this->form->getLabel('created_by_alias'); ?>
				</div>
				<div class="controls">
					<?php echo
$this->form->getInput('created_by_alias'); ?>
				</div>
			</div>
			<?php endif; ?>
			<?php if
($this->item->params->get('access-change')) : ?>
				<div class="control-group">
					<div class="control-label">
						<?php echo $this->form->getLabel('state'); ?>
					</div>
					<div class="controls">
						<?php echo $this->form->getInput('state'); ?>
					</div>
				</div>
				<div class="control-group">
					<div class="control-label">
						<?php echo $this->form->getLabel('featured');
?>
					</div>
					<div class="controls">
						<?php echo $this->form->getInput('featured');
?>
					</div>
				</div>
				<?php if ($params->get('show_publishing_options', 1) ==
1) : ?>
				<div class="control-group">
					<div class="control-label">
						<?php echo $this->form->getLabel('publish_up');
?>
					</div>
					<div class="controls">
						<?php echo $this->form->getInput('publish_up');
?>
					</div>
				</div>
				<div class="control-group">
					<div class="control-label">
						<?php echo $this->form->getLabel('publish_down');
?>
					</div>
					<div class="controls">
						<?php echo $this->form->getInput('publish_down');
?>
					</div>
				</div>
				<?php endif; ?>
			<?php endif; ?>
			<div class="control-group">
				<div class="control-label">
					<?php echo $this->form->getLabel('access'); ?>
				</div>
				<div class="controls">
					<?php echo $this->form->getInput('access'); ?>
				</div>
			</div>
			<?php if ($this->item->id === null):?>
				<div class="control-group">
					<div class="control-label">
					</div>
					<div class="controls">
						<?php echo JText::_('COM_CONTENT_ORDERING'); ?>
					</div>
				</div>
			<?php endif; ?>
	</fieldset>

	<fieldset>
		<legend><?php echo JText::_('JFIELD_LANGUAGE_LABEL');
?></legend>
			<div class="control-group">
				<div class="control-label">
					<?php echo $this->form->getLabel('language'); ?>
				</div>
				<div class="controls">
					<?php echo $this->form->getInput('language'); ?>
				</div>
			</div>
	</fieldset>

	<?php if ($params->get('show_publishing_options', 1) == 1)
: ?>
	<fieldset>
		<legend><?php echo JText::_('COM_CONTENT_METADATA');
?></legend>
			<div class="control-group">
				<div class="control-label">
					<?php echo $this->form->getLabel('metadesc'); ?>
				</div>
				<div class="controls">
					<?php echo $this->form->getInput('metadesc'); ?>
				</div>
			</div>
			<div class="control-group">
				<div class="control-label">
					<?php echo $this->form->getLabel('metakey'); ?>
				</div>
				<div class="controls">
					<?php echo $this->form->getInput('metakey'); ?>
				</div>
			</div>
	</fieldset>
	<?php endif; ?>
		<input type="hidden" name="task"
value="" />
		<input type="hidden" name="return"
value="<?php echo $this->return_page;?>" />
		<?php if ($this->params->get('enable_category', 0) ==
1) : ?>
			<input type="hidden" name="jform[catid]"
value="<?php echo $this->params->get('catid',
1);?>"/>
		<?php endif;?>
		<?php echo JHtml::_('form.token'); ?>

</form>
</div>
access.xml000064400000006077151163734370006553 0ustar00<?xml
version="1.0" encoding="utf-8" ?>
<access component="com_content">
	<section name="component">
		<action name="core.admin" title="JACTION_ADMIN"
description="JACTION_ADMIN_COMPONENT_DESC" />
		<action name="core.options"
title="JACTION_OPTIONS"
description="JACTION_OPTIONS_COMPONENT_DESC" />
		<action name="core.manage" title="JACTION_MANAGE"
description="JACTION_MANAGE_COMPONENT_DESC" />
		<action name="core.create" title="JACTION_CREATE"
description="JACTION_CREATE_COMPONENT_DESC" />
		<action name="core.delete" title="JACTION_DELETE"
description="JACTION_DELETE_COMPONENT_DESC" />
		<action name="core.edit" title="JACTION_EDIT"
description="JACTION_EDIT_COMPONENT_DESC" />
		<action name="core.edit.state"
title="JACTION_EDITSTATE"
description="JACTION_EDITSTATE_COMPONENT_DESC" />
		<action name="core.edit.own"
title="JACTION_EDITOWN"
description="JACTION_EDITOWN_COMPONENT_DESC" />
		<action name="core.edit.value"
title="JACTION_EDITVALUE"
description="JACTION_EDITVALUE_COMPONENT_DESC" />
	</section>
	<section name="category">
		<action name="core.create" title="JACTION_CREATE"
description="COM_CATEGORIES_ACCESS_CREATE_DESC" />
		<action name="core.delete" title="JACTION_DELETE"
description="COM_CATEGORIES_ACCESS_DELETE_DESC" />
		<action name="core.edit" title="JACTION_EDIT"
description="COM_CATEGORIES_ACCESS_EDIT_DESC" />
		<action name="core.edit.state"
title="JACTION_EDITSTATE"
description="COM_CATEGORIES_ACCESS_EDITSTATE_DESC" />
		<action name="core.edit.own"
title="JACTION_EDITOWN"
description="COM_CATEGORIES_ACCESS_EDITOWN_DESC" />
	</section>
	<section name="article">
		<action name="core.delete" title="JACTION_DELETE"
description="COM_CONTENT_ACCESS_DELETE_DESC" />
		<action name="core.edit" title="JACTION_EDIT"
description="COM_CONTENT_ACCESS_EDIT_DESC" />
		<action name="core.edit.state"
title="JACTION_EDITSTATE"
description="COM_CONTENT_ACCESS_EDITSTATE_DESC" />
	</section>
	<section name="fieldgroup">
		<action name="core.create" title="JACTION_CREATE"
description="COM_FIELDS_GROUP_PERMISSION_CREATE_DESC" />
		<action name="core.delete" title="JACTION_DELETE"
description="COM_FIELDS_GROUP_PERMISSION_DELETE_DESC" />
		<action name="core.edit" title="JACTION_EDIT"
description="COM_FIELDS_GROUP_PERMISSION_EDIT_DESC" />
		<action name="core.edit.state"
title="JACTION_EDITSTATE"
description="COM_FIELDS_GROUP_PERMISSION_EDITSTATE_DESC" />
		<action name="core.edit.own"
title="JACTION_EDITOWN"
description="COM_FIELDS_GROUP_PERMISSION_EDITOWN_DESC" />
		<action name="core.edit.value"
title="JACTION_EDITVALUE"
description="COM_FIELDS_GROUP_PERMISSION_EDITVALUE_DESC" />
	</section>
	<section name="field">
		<action name="core.delete" title="JACTION_DELETE"
description="COM_FIELDS_FIELD_PERMISSION_DELETE_DESC" />
		<action name="core.edit" title="JACTION_EDIT"
description="COM_FIELDS_FIELD_PERMISSION_EDIT_DESC" />
		<action name="core.edit.state"
title="JACTION_EDITSTATE"
description="COM_FIELDS_FIELD_PERMISSION_EDITSTATE_DESC" />
		<action name="core.edit.value"
title="JACTION_EDITVALUE"
description="COM_FIELDS_FIELD_PERMISSION_EDITVALUE_DESC" />
	</section>
</access>
config.xml000064400000067763151163734370006570 0ustar00<?xml
version="1.0" encoding="utf-8"?>
<config>
	<fieldset
		name="articles"
		label="JGLOBAL_ARTICLES"
		description="COM_CONTENT_CONFIG_ARTICLE_SETTINGS_DESC"
	>

		<field
			name="article_layout"
			type="componentlayout"
			label="JGLOBAL_FIELD_LAYOUT_LABEL"
			description="JGLOBAL_FIELD_LAYOUT_DESC"
			menuitems="true"
			extension="com_content"
			view="article"
		/>

		<field
			name="show_title"
			type="radio"
			label="JGLOBAL_SHOW_TITLE_LABEL"
			description="JGLOBAL_SHOW_TITLE_DESC"
			class="btn-group btn-group-yesno"
			default="1"
			>
			<option value="1">JSHOW</option>
			<option value="0">JHIDE</option>
		</field>

		<field
			name="link_titles"
			type="radio"
			label="JGLOBAL_LINKED_TITLES_LABEL"
			description="JGLOBAL_LINKED_TITLES_DESC"
			class="btn-group btn-group-yesno"
			default="1"
			showon="show_title:1"
			>
			<option value="1">JYES</option>
			<option value="0">JNO</option>
		</field>

		<field
			name="show_intro"
			type="radio"
			label="JGLOBAL_SHOW_INTRO_LABEL"
			description="JGLOBAL_SHOW_INTRO_DESC"
			class="btn-group btn-group-yesno"
			default="1"
			>
			<option value="1">JSHOW</option>
			<option value="0">JHIDE</option>
		</field>

		<field
			name="info_block_position"
			type="list"
			label="COM_CONTENT_FIELD_INFOBLOCK_POSITION_LABEL"
			description="COM_CONTENT_FIELD_INFOBLOCK_POSITION_DESC"
			default="0"
			>
			<option
value="0">COM_CONTENT_FIELD_OPTION_ABOVE</option>
			<option
value="1">COM_CONTENT_FIELD_OPTION_BELOW</option>
			<option
value="2">COM_CONTENT_FIELD_OPTION_SPLIT</option>
		</field>

		<field
			name="info_block_show_title"
			type="radio"
			label="COM_CONTENT_FIELD_INFOBLOCK_TITLE_LABEL"
			description="COM_CONTENT_FIELD_INFOBLOCK_TITLE_DESC"
			class="btn-group btn-group-yesno"
			default="1"
			>
			<option value="1">JSHOW</option>
			<option value="0">JHIDE</option>
		</field>

		<field
			name="show_category"
			type="radio"
			label="JGLOBAL_SHOW_CATEGORY_LABEL"
			description="JGLOBAL_SHOW_CATEGORY_DESC"
			class="btn-group btn-group-yesno"
			default="1"
			>
			<option value="1">JSHOW</option>
			<option value="0">JHIDE</option>
		</field>

		<field
			name="link_category"
			type="radio"
			label="JGLOBAL_LINK_CATEGORY_LABEL"
			description="JGLOBAL_LINK_CATEGORY_DESC"
			class="btn-group btn-group-yesno"
			default="1"
			showon="show_category:1"
			>
			<option value="1">JYES</option>
			<option value="0">JNO</option>
		</field>

		<field
			name="show_parent_category"
			type="radio"
			label="JGLOBAL_SHOW_PARENT_CATEGORY_LABEL"
			description="JGLOBAL_SHOW_PARENT_CATEGORY_DESC"
			class="btn-group btn-group-yesno"
			default="1"
			>
			<option value="1">JSHOW</option>
			<option value="0">JHIDE</option>
		</field>

		<field
			name="link_parent_category"
			type="radio"
			label="JGLOBAL_LINK_PARENT_CATEGORY_LABEL"
			description="JGLOBAL_LINK_PARENT_CATEGORY_DESC"
			class="btn-group btn-group-yesno"
			default="1"
			showon="show_parent_category:1"
			>
			<option value="1">JYES</option>
			<option value="0">JNO</option>
		</field>

		<field
			name="spacer1"
			type="spacer"
			hr="true"
		/>

		<field
			name="show_associations"
			type="radio"
			label="JGLOBAL_SHOW_ASSOCIATIONS_LABEL"
			description="JGLOBAL_SHOW_ASSOCIATIONS_DESC"
			class="btn-group btn-group-yesno"
			default="0"
			>
			<option value="1">JSHOW</option>
			<option value="0">JHIDE</option>
		</field>

		<field
			name="flags"
			type="radio"
			label="JGLOBAL_SHOW_FLAG_LABEL"
			description="JGLOBAL_SHOW_FLAG_DESC"
			class="btn-group btn-group-yesno"
			default="1"
			showon="show_associations:1"
			>
			<option value="1">JYES</option>
			<option value="0">JNO</option>
		</field>

		<field
			name="spacer3"
			type="spacer"
			hr="true"
		/>

		<field
			name="show_author"
			type="radio"
			label="JGLOBAL_SHOW_AUTHOR_LABEL"
			description="JGLOBAL_SHOW_AUTHOR_DESC"
			class="btn-group btn-group-yesno"
			default="1"
			>
			<option value="1">JSHOW</option>
			<option value="0">JHIDE</option>
		</field>

		<field
			name="link_author"
			type="radio"
			label="JGLOBAL_LINK_AUTHOR_LABEL"
			description="JGLOBAL_LINK_AUTHOR_DESC"
			class="btn-group btn-group-yesno"
			default="0"
			showon="show_author:1"
			>
			<option value="1">JYES</option>
			<option value="0">JNO</option>
		</field>

		<field
			name="show_create_date"
			type="radio"
			label="JGLOBAL_SHOW_CREATE_DATE_LABEL"
			description="JGLOBAL_SHOW_CREATE_DATE_DESC"
			class="btn-group btn-group-yesno"
			default="1"
			>
			<option value="1">JSHOW</option>
			<option value="0">JHIDE</option>
		</field>

		<field
			name="show_modify_date"
			type="radio"
			label="JGLOBAL_SHOW_MODIFY_DATE_LABEL"
			description="JGLOBAL_SHOW_MODIFY_DATE_DESC"
			class="btn-group btn-group-yesno"
			default="1"
			>
			<option value="1">JSHOW</option>
			<option value="0">JHIDE</option>
		</field>

		<field
			name="show_publish_date"
			type="radio"
			label="JGLOBAL_SHOW_PUBLISH_DATE_LABEL"
			description="JGLOBAL_SHOW_PUBLISH_DATE_DESC"
			class="btn-group btn-group-yesno"
			default="1"
			>
			<option value="1">JSHOW</option>
			<option value="0">JHIDE</option>
		</field>

		<field
			name="show_item_navigation"
			type="radio"
			label="JGLOBAL_SHOW_NAVIGATION_LABEL"
			description="JGLOBAL_SHOW_NAVIGATION_DESC"
			class="btn-group btn-group-yesno"
			default="1"
			>
			<option value="1">JSHOW</option>
			<option value="0">JHIDE</option>
		</field>

		<field
			name="show_vote"
			type="radio"
			label="JGLOBAL_SHOW_VOTE_LABEL"
			description="JGLOBAL_SHOW_VOTE_DESC"
			class="btn-group btn-group-yesno"
			default="0"
			>
			<option value="1">JSHOW</option>
			<option value="0">JHIDE</option>
		</field>

		<field
			name="show_readmore"
			type="radio"
			label="JGLOBAL_SHOW_READMORE_LABEL"
			description="JGLOBAL_SHOW_READMORE_DESC"
			class="btn-group btn-group-yesno"
			default="1"
			>
			<option value="1">JSHOW</option>
			<option value="0">JHIDE</option>
		</field>

		<field
			name="show_readmore_title"
			type="radio"
			label="JGLOBAL_SHOW_READMORE_TITLE_LABEL"
			description="JGLOBAL_SHOW_READMORE_TITLE_DESC"
			class="btn-group btn-group-yesno"
			default="1"
			showon="show_readmore:1"
			>
			<option value="1">JSHOW</option>
			<option value="0">JHIDE</option>
		</field>

		<field
			name="readmore_limit"
			type="number"
			label="JGLOBAL_SHOW_READMORE_LIMIT_LABEL"
			description="JGLOBAL_SHOW_READMORE_LIMIT_DESC"
			default="100"
			showon="show_readmore:1[AND]show_readmore_title:1"
		/>

		<field
			name="show_tags"
			type="radio"
			label="COM_CONTENT_FIELD_SHOW_TAGS_LABEL"
			description="COM_CONTENT_FIELD_SHOW_TAGS_DESC"
			id="show_tags"
			class="btn-group btn-group-yesno"
			default="1"
			>
			<option value="1">JSHOW</option>
			<option value="0">JHIDE</option>
		</field>

		<field
			name="spacer2"
			type="spacer"
			hr="true"
		/>

		<field
			name="show_icons"
			type="radio"
			label="JGLOBAL_SHOW_ICONS_LABEL"
			description="JGLOBAL_SHOW_ICONS_DESC"
			class="btn-group btn-group-yesno"
			default="1"
			>
			<option value="1">JSHOW</option>
			<option value="0">JHIDE</option>
		</field>

		<field
			name="show_print_icon"
			type="radio"
			label="JGLOBAL_SHOW_PRINT_ICON_LABEL"
			description="JGLOBAL_SHOW_PRINT_ICON_DESC"
			class="btn-group btn-group-yesno"
			default="1"
			>
			<option value="1">JSHOW</option>
			<option value="0">JHIDE</option>
		</field>

		<field
			name="show_email_icon"
			type="radio"
			label="JGLOBAL_SHOW_EMAIL_ICON_LABEL"
			description="JGLOBAL_SHOW_EMAIL_ICON_DESC"
			class="btn-group btn-group-yesno"
			default="1"
			>
			<option value="1">JSHOW</option>
			<option value="0">JHIDE</option>
		</field>

		<field
			name="show_hits"
			type="radio"
			label="JGLOBAL_SHOW_HITS_LABEL"
			description="JGLOBAL_SHOW_HITS_DESC"
			class="btn-group btn-group-yesno"
			default="1"
			>
			<option value="1">JSHOW</option>
			<option value="0">JHIDE</option>
		</field>

		<field
			name="record_hits"
			type="radio"
			label="JGLOBAL_RECORD_HITS_LABEL"
			description="JGLOBAL_RECORD_HITS_DESC"
			class="btn-group btn-group-yesno"
			default="1"
			>
			<option value="1">JYES</option>
			<option value="0">JNO</option>
		</field>

		<field
			name="show_noauth"
			type="radio"
			label="JGLOBAL_SHOW_UNAUTH_LINKS_LABEL"
			description="JGLOBAL_SHOW_UNAUTH_LINKS_DESC"
			class="btn-group btn-group-yesno"
			default="0"
			>
			<option value="1">JYES</option>
			<option value="0">JNO</option>
		</field>

		<field
			name="urls_position"
			type="radio"
			label="COM_CONTENT_FIELD_URLSPOSITION_LABEL"
			description="COM_CONTENT_FIELD_URLSPOSITION_DESC"
			class="btn-group btn-group-yesno"
			default="0"
			>
			<option
value="0">COM_CONTENT_FIELD_OPTION_ABOVE</option>
			<option
value="1">COM_CONTENT_FIELD_OPTION_BELOW</option>
		</field>
	</fieldset>

	<fieldset 
		name="editinglayout" 
		label="COM_CONTENT_EDITING_LAYOUT"
		description="COM_CONTENT_CONFIG_EDITOR_LAYOUT"
	>

		<field
			name="captcha"
			type="plugins"
			label="COM_CONTENT_FIELD_CAPTCHA_LABEL"
			description="COM_CONTENT_FIELD_CAPTCHA_DESC"
			folder="captcha"
			filter="cmd"
			useglobal="true"
			>
			<option value="0">JOPTION_DO_NOT_USE</option>
		</field>

		<field
			name="show_publishing_options"
			type="radio"
			label="COM_CONTENT_SHOW_PUBLISHING_OPTIONS_LABEL"
			description="COM_CONTENT_SHOW_PUBLISHING_OPTIONS_DESC"
			class="btn-group btn-group-yesno"
			default="1"
			>
			<option value="1">JSHOW</option>
			<option value="0">JHIDE</option>
		</field>

		<field
			name="show_article_options"
			type="radio"
			label="COM_CONTENT_SHOW_ARTICLE_OPTIONS_LABEL"
			description="COM_CONTENT_SHOW_ARTICLE_OPTIONS_DESC"
			class="btn-group btn-group-yesno"
			default="1"
			>
			<option value="1">JSHOW</option>
			<option value="0">JHIDE</option>
		</field>

		<field
			name="save_history"
			type="radio"
			label="JGLOBAL_SAVE_HISTORY_OPTIONS_LABEL"
			description="JGLOBAL_SAVE_HISTORY_OPTIONS_DESC"
			class="btn-group btn-group-yesno"
			default="0"
			>
			<option value="1">JYES</option>
			<option value="0">JNO</option>
		</field>

		<field
			name="history_limit"
			type="number"
			label="JGLOBAL_HISTORY_LIMIT_OPTIONS_LABEL"
			description="JGLOBAL_HISTORY_LIMIT_OPTIONS_DESC"
			filter="integer"
			default="10"
			showon="save_history:1"
		/>

		<field
			name="show_urls_images_frontend"
			type="radio"
			label="COM_CONTENT_SHOW_IMAGES_URLS_FRONT_LABEL"
			description="COM_CONTENT_SHOW_IMAGES_URLS_FRONT_DESC"
			class="btn-group btn-group-yesno"
			default="0"
			>
			<option value="1">JSHOW</option>
			<option value="0">JHIDE</option>
		</field>

		<field
			name="show_urls_images_backend"
			type="radio"
			label="COM_CONTENT_SHOW_IMAGES_URLS_BACK_LABEL"
			description="COM_CONTENT_SHOW_IMAGES_URLS_BACK_DESC"
			class="btn-group btn-group-yesno"
			default="0"
			>
			<option value="1">JSHOW</option>
			<option value="0">JHIDE</option>
		</field>

		<field
			name="spacer3"
			type="spacer"
			hr="true"
			showon="show_urls_images_backend:1[OR]show_urls_images_frontend:1"
		/>

		<field
			name="targeta"
			type="list"
			label="COM_CONTENT_URL_FIELD_A_BROWSERNAV_LABEL"
			description="COM_CONTENT_URL_FIELD_BROWSERNAV_DESC"
			default="Parent"
			filter="int"
			showon="show_urls_images_backend:1[OR]show_urls_images_frontend:1"
			>
			<option value="0">JBROWSERTARGET_PARENT</option>
			<option value="1">JBROWSERTARGET_NEW</option>
			<option value="2">JBROWSERTARGET_POPUP</option>
			<option value="3">JBROWSERTARGET_MODAL</option>
		</field>

		<field
			name="targetb"
			type="list"
			label="COM_CONTENT_URL_FIELD_B_BROWSERNAV_LABEL"
			description="COM_CONTENT_URL_FIELD_BROWSERNAV_DESC"
			default="Parent"
			filter="int"
			showon="show_urls_images_backend:1[OR]show_urls_images_frontend:1"
			>
			<option value="0">JBROWSERTARGET_PARENT</option>
			<option value="1">JBROWSERTARGET_NEW</option>
			<option value="2">JBROWSERTARGET_POPUP</option>
			<option value="3">JBROWSERTARGET_MODAL</option>
		</field>

		<field
			name="targetc"
			type="list"
			label="COM_CONTENT_URL_FIELD_C_BROWSERNAV_LABEL"
			description="COM_CONTENT_URL_FIELD_BROWSERNAV_DESC"
			default="Parent"
			filter="int"
			showon="show_urls_images_backend:1[OR]show_urls_images_frontend:1"
			>
			<option value="0">JBROWSERTARGET_PARENT</option>
			<option value="1">JBROWSERTARGET_NEW</option>
			<option value="2">JBROWSERTARGET_POPUP</option>
			<option value="3">JBROWSERTARGET_MODAL</option>
		</field>

		<field
			name="spacer4"
			type="spacer"
			hr="true"
			showon="show_urls_images_backend:1[OR]show_urls_images_frontend:1"
		/>

		<field
			name="float_intro"
			type="list"
			label="COM_CONTENT_FLOAT_INTRO_LABEL"
			description="COM_CONTENT_FLOAT_DESC"
			showon="show_urls_images_backend:1[OR]show_urls_images_frontend:1"
			>
			<option value="right">COM_CONTENT_RIGHT</option>
			<option value="left">COM_CONTENT_LEFT</option>
			<option value="none">COM_CONTENT_NONE</option>
		</field>

		<field
			name="float_fulltext"
			type="list"
			label="COM_CONTENT_FLOAT_FULLTEXT_LABEL"
			description="COM_CONTENT_FLOAT_DESC"
			showon="show_urls_images_backend:1[OR]show_urls_images_frontend:1"
			>
			<option value="right">COM_CONTENT_RIGHT</option>
			<option value="left">COM_CONTENT_LEFT</option>
			<option value="none">COM_CONTENT_NONE</option>
		</field>

	</fieldset>

	<fieldset
		name="category"
		label="JCATEGORY"
		description="COM_CONTENT_CONFIG_CATEGORY_SETTINGS_DESC"
	>

		<field
			name="category_layout" 
			type="componentlayout"
			label="JGLOBAL_FIELD_LAYOUT_LABEL"
			description="JGLOBAL_FIELD_LAYOUT_DESC"
			menuitems="true"
			extension="com_content"
			view="category"
		/>

		<field
			name="show_category_heading_title_text"
			type="radio"
			label="JGLOBAL_SHOW_CATEGORY_HEADING_TITLE_TEXT_LABEL"
			description="JGLOBAL_SHOW_CATEGORY_HEADING_TITLE_TEXT_DESC"
			class="btn-group btn-group-yesno"
			default="1"
			>
			<option value="1">JSHOW</option>
			<option value="0">JHIDE</option>
		</field>

		<field 
			name="show_category_title"
			type="radio"
			label="JGLOBAL_SHOW_CATEGORY_TITLE"
			description="JGLOBAL_SHOW_CATEGORY_TITLE_DESC"
			class="btn-group btn-group-yesno"
			default="1"
			>
			<option value="1">JSHOW</option>
			<option value="0">JHIDE</option>
		</field>

		<field 
			name="show_description"
			type="radio"
			label="JGLOBAL_SHOW_CATEGORY_DESCRIPTION_LABEL"
			description="JGLOBAL_SHOW_CATEGORY_DESCRIPTION_DESC"
			class="btn-group btn-group-yesno"
			default="1"
			>
			<option value="1">JSHOW</option>
			<option value="0">JHIDE</option>
		</field>

		<field 
			name="show_description_image"
			type="radio"
			label="JGLOBAL_SHOW_CATEGORY_IMAGE_LABEL"
			description="JGLOBAL_SHOW_CATEGORY_IMAGE_DESC"
			class="btn-group btn-group-yesno"
			default="0"
			>
			<option value="1">JSHOW</option>
			<option value="0">JHIDE</option>
		</field>

		<field 
			name="maxLevel" 
			type="list"
			label="JGLOBAL_MAXIMUM_CATEGORY_LEVELS_LABEL"
			description="JGLOBAL_MAXIMUM_CATEGORY_LEVELS_DESC"
			default="-1"
			>
			<option value="0">JNONE</option>
			<option value="-1">JALL</option>
			<option value="1">J1</option>
			<option value="2">J2</option>
			<option value="3">J3</option>
			<option value="4">J4</option>
			<option value="5">J5</option>
		</field>

		<field 
			name="show_empty_categories"
			type="radio"
			label="JGLOBAL_SHOW_EMPTY_CATEGORIES_LABEL"
			description="COM_CONTENT_SHOW_EMPTY_CATEGORIES_DESC"
			class="btn-group btn-group-yesno"
			default="0"
			>
			<option value="1">JSHOW</option>
			<option value="0">JHIDE</option>
		</field>

		<field 
			name="show_no_articles"
			type="radio"
			label="COM_CONTENT_NO_ARTICLES_LABEL"
			description="COM_CONTENT_NO_ARTICLES_DESC"
			class="btn-group btn-group-yesno"
			default="1"
			>
			<option value="1">JSHOW</option>
			<option value="0">JHIDE</option>
		</field>

		<field 
			name="show_subcat_desc"
			type="radio"
			label="JGLOBAL_SHOW_SUBCATEGORIES_DESCRIPTION_LABEL"
			description="JGLOBAL_SHOW_SUBCATEGORIES_DESCRIPTION_DESC"
			default="1"
			class="btn-group btn-group-yesno"
			>
			<option value="1">JSHOW</option>
			<option value="0">JHIDE</option>
		</field>

		<field 
			name="show_cat_num_articles"
			type="radio"
			label="COM_CONTENT_NUMBER_CATEGORY_ITEMS_LABEL"
			description="COM_CONTENT_NUMBER_CATEGORY_ITEMS_DESC"
			class="btn-group btn-group-yesno"
			default="1"
			>
			<option value="1">JSHOW</option>
			<option value="0">JHIDE</option>
		</field>

		<field 
			name="show_cat_tags" 
			type="radio"
			label="COM_CONTENT_FIELD_SHOW_CAT_TAGS_LABEL"
			description="COM_CONTENT_FIELD_SHOW_CAT_TAGS_DESC"
			class="btn-group btn-group-yesno"
			default="1"
			>
			<option value="1">JSHOW</option>
			<option value="0">JHIDE</option>
		</field>

	</fieldset>

	<fieldset 
		name="categories"
		label="JCATEGORIES"
		description="COM_CONTENT_CONFIG_CATEGORIES_SETTINGS_DESC"
	>
		<field 
			name="show_base_description"
			type="radio"
			label="JGLOBAL_FIELD_SHOW_BASE_DESCRIPTION_LABEL"
			description="JGLOBAL_FIELD_SHOW_BASE_DESCRIPTION_DESC"
			class="btn-group btn-group-yesno"
			default="1"
			>
			<option value="1">JSHOW</option>
			<option value="0">JHIDE</option>
		</field>

		<field 
			name="maxLevelcat" 
			type="list"
			label="JGLOBAL_MAXIMUM_CATEGORY_LEVELS_LABEL"
			description="JGLOBAL_MAXIMUM_CATEGORY_LEVELS_DESC"
			default="-1"
			>
			<option value="0">JNONE</option>
			<option value="-1">JALL</option>
			<option value="1">J1</option>
			<option value="2">J2</option>
			<option value="3">J3</option>
			<option value="4">J4</option>
			<option value="5">J5</option>
		</field>

		<field 
			name="show_empty_categories_cat"
			type="radio"
			label="JGLOBAL_SHOW_EMPTY_CATEGORIES_LABEL"
			description="COM_CONTENT_SHOW_EMPTY_CATEGORIES_DESC"
			class="btn-group btn-group-yesno"
			default="0"
			showon="maxLevelcat:-1,1,2,3,4,5"
			>
			<option value="1">JSHOW</option>
			<option value="0">JHIDE</option>
		</field>

		<field 
			name="show_subcat_desc_cat"
			type="radio"
			label="JGLOBAL_SHOW_SUBCATEGORIES_DESCRIPTION_LABEL"
			description="JGLOBAL_SHOW_SUBCATEGORIES_DESCRIPTION_DESC"
			class="btn-group btn-group-yesno"
			default="1"
			showon="maxLevelcat:-1,1,2,3,4,5"
			>
			<option value="1">JSHOW</option>
			<option value="0">JHIDE</option>
		</field>

		<field 
			name="show_cat_num_articles_cat"
			type="radio"
			label="COM_CONTENT_NUMBER_CATEGORY_ITEMS_LABEL"
			description="COM_CONTENT_NUMBER_CATEGORY_ITEMS_DESC"
			class="btn-group btn-group-yesno"
			default="1"
			>
			<option value="1">JSHOW</option>
			<option value="0">JHIDE</option>
		</field>

	</fieldset>

	<fieldset 
		name="blog_default_parameters"
		label="COM_CONTENT_CONFIG_BLOG_SETTINGS_LABEL"
		description="COM_CONTENT_CONFIG_BLOG_SETTINGS_DESC"
	>

		<field 
			name="num_leading_articles"
			type="number"
			label="JGLOBAL_NUM_LEADING_ARTICLES_LABEL"
			description="JGLOBAL_NUM_LEADING_ARTICLES_DESC"
			default="1"			
		/>

		<field 
			name="num_intro_articles"
			type="number"
			label="JGLOBAL_NUM_INTRO_ARTICLES_LABEL"
			description="JGLOBAL_NUM_INTRO_ARTICLES_DESC"
			default="4"
		/>

		<field 
			name="num_columns"
			type="number"
			label="JGLOBAL_NUM_COLUMNS_LABEL"
			description="JGLOBAL_NUM_COLUMNS_DESC"
			default="2"
		/>

		<field 
			name="num_links"
			type="number"
			label="JGLOBAL_NUM_LINKS_LABEL"
			description="JGLOBAL_NUM_LINKS_DESC"
			default="4"
		/>

		<field 
			name="multi_column_order"
			type="list"
			label="JGLOBAL_MULTI_COLUMN_ORDER_LABEL"
			description="JGLOBAL_MULTI_COLUMN_ORDER_DESC"
			default="0"
			showon="num_columns!:,0,1"
			>
			<option value="0">JGLOBAL_DOWN</option>
			<option value="1">JGLOBAL_ACROSS</option>
		</field>

		<field 
			name="spacer1"
			type="spacer"
			hr="true"
		/>

		<field 
			name="show_subcategory_content" 
			type="list"
			label="JGLOBAL_SHOW_SUBCATEGORY_CONTENT_LABEL"
			description="JGLOBAL_SHOW_SUBCATEGORY_CONTENT_DESC"
			default="0"
			>
			<option value="0">JNONE</option>
			<option value="-1">JALL</option>
			<option value="1">J1</option>
			<option value="2">J2</option>
			<option value="3">J3</option>
			<option value="4">J4</option>
			<option value="5">J5</option>
		</field>
	</fieldset>

	<fieldset 
		name="list_default_parameters"
		label="JGLOBAL_LIST_LAYOUT_OPTIONS"
		description="COM_CONTENT_CONFIG_LIST_SETTINGS_DESC"
		addfieldpath="/administrator/components/com_content/models/fields"
	>

		<field 
			name="show_pagination_limit"
			type="radio"
			label="JGLOBAL_DISPLAY_SELECT_LABEL"
			description="JGLOBAL_DISPLAY_SELECT_DESC"
			class="btn-group btn-group-yesno"
			default="1"
			>
			<option value="1">JSHOW</option>
			<option value="0">JHIDE</option>
		</field>

		<field 
			name="filter_field"
			type="list"
			label="JGLOBAL_FILTER_FIELD_LABEL"
			description="JGLOBAL_FILTER_FIELD_DESC"
			default="hide"
			>
			<option value="hide">JHIDE</option>
			<option value="title">JGLOBAL_TITLE</option>
			<option value="author">JAUTHOR</option>
			<option value="hits">JGLOBAL_HITS</option>
			<option value="tag">JTAG</option>
			<option value="month">JMONTH_PUBLISHED</option>
		</field>

		<field 
			name="show_headings"
			type="radio"
			label="JGLOBAL_SHOW_HEADINGS_LABEL"
			description="JGLOBAL_SHOW_HEADINGS_DESC"
			class="btn-group btn-group-yesno"
			default="1"
			>
			<option value="1">JSHOW</option>
			<option value="0">JHIDE</option>
		</field>

		<field 
			name="list_show_date"
			type="list"
			label="JGLOBAL_SHOW_DATE_LABEL"
			description="JGLOBAL_SHOW_DATE_DESC"
			default="0"
			>
			<option value="0">JHIDE</option>
			<option value="created">JGLOBAL_CREATED</option>
			<option value="modified">JGLOBAL_MODIFIED</option>
			<option value="published">JPUBLISHED</option>
		</field>

		<field 
			name="date_format"
			type="text"
			label="JGLOBAL_DATE_FORMAT_LABEL"
			description="JGLOBAL_DATE_FORMAT_DESC"
			size="15"
			showon="list_show_date:created,modified,published"
		/>

		<field 
			name="list_show_hits"
			type="radio"
			label="JGLOBAL_LIST_HITS_LABEL"
			description="JGLOBAL_LIST_HITS_DESC"
			class="btn-group btn-group-yesno"
			default="1"
			>
			<option value="1">JSHOW</option>
			<option value="0">JHIDE</option>
		</field>

		<field 
			name="list_show_author"
			type="radio"
			label="JGLOBAL_LIST_AUTHOR_LABEL"
			description="JGLOBAL_LIST_AUTHOR_DESC"
			class="btn-group btn-group-yesno"
			default="1"
			>
			<option value="1">JSHOW</option>
			<option value="0">JHIDE</option>
		</field>

		<field 
			name="list_show_votes"
			type="voteradio"
			label="JGLOBAL_LIST_VOTES_LABEL"
			description="JGLOBAL_LIST_VOTES_DESC"
			class="btn-group btn-group-yesno"
			default="0"
			>
			<option value="1">JSHOW</option>
			<option value="0">JHIDE</option>
		</field>

		<field 
			name="list_show_ratings"
			type="voteradio"
			label="JGLOBAL_LIST_RATINGS_LABEL"
			description="JGLOBAL_LIST_RATINGS_DESC"
			class="btn-group btn-group-yesno"
			default="0"
			>
			<option value="1">JSHOW</option>
			<option value="0">JHIDE</option>
		</field>

	</fieldset>

	<fieldset
		name="shared"
		label="COM_CONTENT_SHARED_LABEL"
		description="COM_CONTENT_SHARED_DESC"
	>
	
		<field 
			name="orderby_pri"
			type="list"
			label="JGLOBAL_CATEGORY_ORDER_LABEL"
			description="JGLOBAL_CATEGORY_ORDER_DESC"
			default="none"
			>
			<option value="none">JGLOBAL_NO_ORDER</option>
			<option
value="alpha">JGLOBAL_TITLE_ALPHABETICAL</option>
			<option
value="ralpha">JGLOBAL_TITLE_REVERSE_ALPHABETICAL</option>
			<option
value="order">JGLOBAL_CATEGORY_MANAGER_ORDER</option>
		</field>

		<field 
			name="orderby_sec"
			type="list"
			label="JGLOBAL_ARTICLE_ORDER_LABEL"
			description="JGLOBAL_ARTICLE_ORDER_DESC"
			default="rdate"
			>
			<option
value="rdate">JGLOBAL_MOST_RECENT_FIRST</option>
			<option value="date">JGLOBAL_OLDEST_FIRST</option>
			<option
value="alpha">JGLOBAL_TITLE_ALPHABETICAL</option>
			<option
value="ralpha">JGLOBAL_TITLE_REVERSE_ALPHABETICAL</option>
			<option
value="author">JGLOBAL_AUTHOR_ALPHABETICAL</option>
			<option
value="rauthor">JGLOBAL_AUTHOR_REVERSE_ALPHABETICAL</option>
			<option value="hits">JGLOBAL_MOST_HITS</option>
			<option value="rhits">JGLOBAL_LEAST_HITS</option>
			<option
value="order">JGLOBAL_ARTICLE_MANAGER_ORDER</option>
			<option
value="rorder">JGLOBAL_ARTICLE_MANAGER_REVERSE_ORDER</option>
			<option value="vote"
requires="vote">JGLOBAL_VOTES_DESC</option>
			<option value="rvote"
requires="vote">JGLOBAL_VOTES_ASC</option>
			<option value="rank"
requires="vote">JGLOBAL_RATINGS_DESC</option>
			<option value="rrank"
requires="vote">JGLOBAL_RATINGS_ASC</option>
		</field>

		<field 
			name="order_date" 
			type="list"
			label="JGLOBAL_ORDERING_DATE_LABEL"
			description="JGLOBAL_ORDERING_DATE_DESC"
			showon="orderby_sec:rdate,date"
			default="published"
			>
			<option value="created">JGLOBAL_CREATED</option>
			<option value="modified">JGLOBAL_MODIFIED</option>
			<option value="published">JPUBLISHED</option>
		</field>

		<field 
			name="show_pagination"
			type="list"
			label="JGLOBAL_PAGINATION_LABEL"
			description="JGLOBAL_PAGINATION_DESC"
			default="2"
			>
			<option value="0">JHIDE</option>
			<option value="1">JSHOW</option>
			<option value="2">JGLOBAL_AUTO</option>
		</field>

		<field 
			name="show_pagination_results"
			type="radio"
			label="JGLOBAL_PAGINATION_RESULTS_LABEL"
			description="JGLOBAL_PAGINATION_RESULTS_DESC"
			class="btn-group btn-group-yesno"
			default="1"
			showon="show_pagination:1,2"
			>
			<option value="1">JSHOW</option>
			<option value="0">JHIDE</option>
		</field>

		<field 
			name="show_featured" 
			type="list" 
			label="JGLOBAL_SHOW_FEATURED_ARTICLES_LABEL"
			description="JGLOBAL_SHOW_FEATURED_ARTICLES_DESC"
			default="show"
			>
			<option value="show">JSHOW</option>
			<option value="hide">JHIDE</option>
			<option value="only">JONLY</option>
		</field>

	</fieldset>

	<fieldset 
		name="integration"
		label="JGLOBAL_INTEGRATION_LABEL"
		description="COM_CONTENT_CONFIG_INTEGRATION_SETTINGS_DESC"
	>

		<field
			name="integration_newsfeeds"
			type="note"
			label="JGLOBAL_FEED_TITLE"
		/>

		<field
			name="show_feed_link"
			type="radio"
			label="JGLOBAL_SHOW_FEED_LINK_LABEL"
			description="JGLOBAL_SHOW_FEED_LINK_DESC"
			class="btn-group btn-group-yesno"
			default="1"
			>
			<option value="1">JSHOW</option>
			<option value="0">JHIDE</option>
		</field>

		<field
			name="feed_summary"
			type="list"
			label="JGLOBAL_FEED_SUMMARY_LABEL"
			description="JGLOBAL_FEED_SUMMARY_DESC"
			default="0"
			showon="show_feed_link:1"
			>
			<option value="0">JGLOBAL_INTRO_TEXT</option>
			<option value="1">JGLOBAL_FULL_TEXT</option>
		</field>

		<field
			name="feed_show_readmore"
			type="radio"
			label="JGLOBAL_FEED_SHOW_READMORE_LABEL"
			description="JGLOBAL_FEED_SHOW_READMORE_DESC"
			class="btn-group btn-group-yesno"
			default="0"
			showon="show_feed_link:1[AND]feed_summary:0"
			>
			<option value="1">JSHOW</option>
			<option value="0">JHIDE</option>
		</field>

		<field
			name="integration_sef"
			type="note"
			label="JGLOBAL_SEF_TITLE"
		/>

		<field
			name="sef_advanced"
			type="radio"
			class="btn-group btn-group-yesno btn-group-reversed"
			default="0"
			label="JGLOBAL_SEF_ADVANCED_LABEL"
			description="JGLOBAL_SEF_ADVANCED_DESC"
			filter="integer"
			>
			<option
value="0">JGLOBAL_SEF_ADVANCED_LEGACY</option>
			<option
value="1">JGLOBAL_SEF_ADVANCED_MODERN</option>
		</field>

		<field
			name="sef_ids"
			type="radio"
			class="btn-group btn-group-yesno"
			default="0"
			label="JGLOBAL_SEF_NOIDS_LABEL"
			description="JGLOBAL_SEF_NOIDS_DESC"
			showon="sef_advanced:1"
			filter="integer"
			>
			<option value="1">JYES</option>
			<option value="0">JNO</option>
		</field>

		<field
			name="integration_customfields"
			type="note"
			label="JGLOBAL_FIELDS_TITLE"
		/>

		<field
			name="custom_fields_enable"
			type="radio"
			label="JGLOBAL_CUSTOM_FIELDS_ENABLE_LABEL"
			description="JGLOBAL_CUSTOM_FIELDS_ENABLE_DESC"
			class="btn-group btn-group-yesno"
			default="1"
			>
			<option value="1">JYES</option>
			<option value="0">JNO</option>
		</field>

	</fieldset>

	<fieldset
		name="permissions"
		label="JCONFIG_PERMISSIONS_LABEL"
		description="JCONFIG_PERMISSIONS_DESC"
	>

		<field
			name="rules"
			type="rules"
			label="JCONFIG_PERMISSIONS_LABEL"
			validate="rules"
			filter="rules"
			component="com_content"
			section="component"
		/>
	</fieldset>
</config>
content.php000064400000001252151163734370006741 0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_content
 *
 * @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::_('behavior.tabstate');

if (!JFactory::getUser()->authorise('core.manage',
'com_content'))
{
	throw new
JAccessExceptionNotallowed(JText::_('JERROR_ALERTNOAUTHOR'),
403);
}

JLoader::register('ContentHelper', __DIR__ .
'/helpers/content.php');

$controller = JControllerLegacy::getInstance('Content');
$controller->execute(JFactory::getApplication()->input->get('task'));
$controller->redirect();
content.xml000064400000002607151163734370006757 0ustar00<?xml
version="1.0" encoding="utf-8"?>
<extension type="component" version="3.1"
method="upgrade">
	<name>com_content</name>
	<author>Joomla! Project</author>
	<creationDate>April 2006</creationDate>
	<copyright>(C) 2005 - 2020 Open Source Matters. All rights
reserved.</copyright>
	<license>GNU General Public License version 2 or later; see
LICENSE.txt</license>
	<authorEmail>admin@joomla.org</authorEmail>
	<authorUrl>www.joomla.org</authorUrl>
	<version>3.0.0</version>
	<description>COM_CONTENT_XML_DESCRIPTION</description>
	<files folder="site">
		<filename>content.php</filename>
		<filename>controller.php</filename>
		<filename>router.php</filename>
		<folder>helpers</folder>
		<folder>models</folder>
	</files>
	<languages folder="site">
		<language
tag="en-GB">language/en-GB.com_content.ini</language>
	</languages>
	<administration>
		<files folder="admin">
			<filename>access.xml</filename>
			<filename>config.xml</filename>
			<filename>content.php</filename>
			<filename>controller.php</filename>
			<folder>controllers</folder>
			<folder>elements</folder>
			<folder>helpers</folder>
			<folder>models</folder>
			<folder>tables</folder>
			<folder>views</folder>
		</files>
		<languages folder="admin">
			<language
tag="en-GB">language/en-GB.com_content.ini</language>
			<language
tag="en-GB">language/en-GB.com_content.sys.ini</language>
		</languages>
	</administration>
</extension>


controller.php000064400000002772151163734370007462 0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_content
 *
 * @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;

/**
 * Component Controller
 *
 * @since  1.5
 */
class ContentController extends JControllerLegacy
{
	/**
	 * The default view.
	 *
	 * @var    string
	 * @since  1.6
	 */
	protected $default_view = 'articles';

	/**
	 * Method to display a view.
	 *
	 * @param   boolean  $cachable   If true, the view output will be cached
	 * @param   array    $urlparams  An array of safe URL parameters and their
variable types, for valid values see {@link JFilterInput::clean()}.
	 *
	 * @return  ContentController  This object to support chaining.
	 *
	 * @since   1.5
	 */
	public function display($cachable = false, $urlparams = array())
	{
		$view   = $this->input->get('view',
'articles');
		$layout = $this->input->get('layout',
'articles');
		$id     = $this->input->getInt('id');

		// Check for edit form.
		if ($view == 'article' && $layout == 'edit'
&& !$this->checkEditId('com_content.edit.article',
$id))
		{
			// Somehow the person just went to the form - we don't allow that.
			$this->setError(JText::sprintf('JLIB_APPLICATION_ERROR_UNHELD_ID',
$id));
			$this->setMessage($this->getError(), 'error');
			$this->setRedirect(JRoute::_('index.php?option=com_content&view=articles',
false));

			return false;
		}

		return parent::display();
	}
}
controllers/ajax.json.php000064400000004360151163734370011533
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_content
 *
 * @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;

use Joomla\CMS\Language\LanguageHelper;

/**
 * The article controller for ajax requests
 *
 * @since  3.9.0
 */
class ContentControllerAjax extends JControllerLegacy
{
	/**
	 * Method to fetch associations of an article
	 *
	 * The method assumes that the following http parameters are passed in an
Ajax Get request:
	 * token: the form token
	 * assocId: the id of the article whose associations are to be returned
	 * excludeLang: the association for this language is to be excluded
	 *
	 * @return  null
	 *
	 * @since  3.9.0
	 */
	public function fetchAssociations()
	{
		if (!JSession::checkToken('get'))
		{
			echo new JResponseJson(null, JText::_('JINVALID_TOKEN'),
true);
		}
		else
		{
			$input = JFactory::getApplication()->input;

			$assocId = $input->getInt('assocId', 0);

			if ($assocId == 0)
			{
				echo new JResponseJson(null,
JText::sprintf('JLIB_FORM_VALIDATE_FIELD_INVALID',
'assocId'), true);

				return;
			}

			$excludeLang = $input->get('excludeLang', '',
'STRING');

			$associations =
JLanguageAssociations::getAssociations('com_content',
'#__content', 'com_content.item', (int) $assocId);

			unset($associations[$excludeLang]);

			// Add the title to each of the associated records
			$contentTable = JTable::getInstance('Content',
'JTable');

			foreach ($associations as $lang => $association)
			{
				$contentTable->load($association->id);
				$associations[$lang]->title = $contentTable->title;
			}

			$countContentLanguages =
count(LanguageHelper::getContentLanguages(array(0, 1)));

			if (count($associations) == 0)
			{
				$message =
JText::_('JGLOBAL_ASSOCIATIONS_PROPAGATE_MESSAGE_NONE');
			}
			elseif ($countContentLanguages > count($associations) + 2)
			{
				$tags    = implode(', ', array_keys($associations));
				$message =
JText::sprintf('JGLOBAL_ASSOCIATIONS_PROPAGATE_MESSAGE_SOME',
$tags);
			}
			else
			{
				$message =
JText::_('JGLOBAL_ASSOCIATIONS_PROPAGATE_MESSAGE_ALL');
			}

			echo new JResponseJson($associations, $message);
		}
	}
}
controllers/article.php000064400000006374151163734370011272
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_content
 *
 * @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;

use Joomla\Utilities\ArrayHelper;

/**
 * The article controller
 *
 * @since  1.6
 */
class ContentControllerArticle extends JControllerForm
{
	/**
	 * Class constructor.
	 *
	 * @param   array  $config  A named array of configuration variables.
	 *
	 * @since   1.6
	 */
	public function __construct($config = array())
	{
		parent::__construct($config);

		// An article edit form can come from the articles or featured view.
		// Adjust the redirect view on the value of 'return' in the
request.
		if ($this->input->get('return') == 'featured')
		{
			$this->view_list = 'featured';
			$this->view_item = 'article&return=featured';
		}
	}

	/**
	 * Method override to check if you can add a new record.
	 *
	 * @param   array  $data  An array of input data.
	 *
	 * @return  boolean
	 *
	 * @since   1.6
	 */
	protected function allowAdd($data = array())
	{
		$categoryId = ArrayHelper::getValue($data, 'catid',
$this->input->getInt('filter_category_id'),
'int');
		$allow = null;

		if ($categoryId)
		{
			// If the category has been passed in the data or URL check it.
			$allow = JFactory::getUser()->authorise('core.create',
'com_content.category.' . $categoryId);
		}

		if ($allow === null)
		{
			// In the absence of better information, revert to the component
permissions.
			return parent::allowAdd();
		}

		return $allow;
	}

	/**
	 * Method override to check if you can edit an existing record.
	 *
	 * @param   array   $data  An array of input data.
	 * @param   string  $key   The name of the key for the primary key.
	 *
	 * @return  boolean
	 *
	 * @since   1.6
	 */
	protected function allowEdit($data = array(), $key = 'id')
	{
		$recordId = (int) isset($data[$key]) ? $data[$key] : 0;
		$user = JFactory::getUser();

		// Zero record (id:0), return component edit permission by calling parent
controller method
		if (!$recordId)
		{
			return parent::allowEdit($data, $key);
		}

		// Check edit on the record asset (explicit or inherited)
		if ($user->authorise('core.edit',
'com_content.article.' . $recordId))
		{
			return true;
		}

		// Check edit own on the record asset (explicit or inherited)
		if ($user->authorise('core.edit.own',
'com_content.article.' . $recordId))
		{
			// Existing record already has an owner, get it
			$record = $this->getModel()->getItem($recordId);

			if (empty($record))
			{
				return false;
			}

			// Grant if current user is owner of the record
			return $user->id == $record->created_by;
		}

		return false;
	}

	/**
	 * Method to run batch operations.
	 *
	 * @param   object  $model  The model.
	 *
	 * @return  boolean   True if successful, false otherwise and internal
error is set.
	 *
	 * @since   1.6
	 */
	public function batch($model = null)
	{
		$this->checkToken();

		// Set the model
		/** @var ContentModelArticle $model */
		$model = $this->getModel('Article', '', array());

		// Preset the redirect
		$this->setRedirect(JRoute::_('index.php?option=com_content&view=articles'
. $this->getRedirectToListAppend(), false));

		return parent::batch($model);
	}
}
controllers/articles.php000064400000005660151163734370011452
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_content
 *
 * @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;

use Joomla\Utilities\ArrayHelper;

/**
 * Articles list controller class.
 *
 * @since  1.6
 */
class ContentControllerArticles extends JControllerAdmin
{
	/**
	 * Constructor.
	 *
	 * @param   array  $config  An optional associative array of configuration
settings.
	 *
	 * @see     JControllerLegacy
	 * @since   1.6
	 */
	public function __construct($config = array())
	{
		parent::__construct($config);

		// Articles default form can come from the articles or featured view.
		// Adjust the redirect view on the value of 'view' in the
request.
		if ($this->input->get('view') == 'featured')
		{
			$this->view_list = 'featured';
		}

		$this->registerTask('unfeatured', 'featured');
	}

	/**
	 * Method to toggle the featured setting of a list of articles.
	 *
	 * @return  void
	 *
	 * @since   1.6
	 */
	public function featured()
	{
		// Check for request forgeries
		$this->checkToken();

		$user   = JFactory::getUser();
		$ids    = $this->input->get('cid', array(),
'array');
		$values = array('featured' => 1, 'unfeatured'
=> 0);
		$task   = $this->getTask();
		$value  = ArrayHelper::getValue($values, $task, 0, 'int');

		// Access checks.
		foreach ($ids as $i => $id)
		{
			if (!$user->authorise('core.edit.state',
'com_content.article.' . (int) $id))
			{
				// Prune items that you can't change.
				unset($ids[$i]);
				JError::raiseNotice(403,
JText::_('JLIB_APPLICATION_ERROR_EDITSTATE_NOT_PERMITTED'));
			}
		}

		if (empty($ids))
		{
			JError::raiseWarning(500,
JText::_('JERROR_NO_ITEMS_SELECTED'));
		}
		else
		{
			// Get the model.
			/** @var ContentModelArticle $model */
			$model = $this->getModel();

			// Publish the items.
			if (!$model->featured($ids, $value))
			{
				JError::raiseWarning(500, $model->getError());
			}

			if ($value == 1)
			{
				$message = JText::plural('COM_CONTENT_N_ITEMS_FEATURED',
count($ids));
			}
			else
			{
				$message = JText::plural('COM_CONTENT_N_ITEMS_UNFEATURED',
count($ids));
			}
		}

		$view = $this->input->get('view', '');

		if ($view == 'featured')
		{
			$this->setRedirect(JRoute::_('index.php?option=com_content&view=featured',
false), $message);
		}
		else
		{
			$this->setRedirect(JRoute::_('index.php?option=com_content&view=articles',
false), $message);
		}
	}

	/**
	 * Proxy for getModel.
	 *
	 * @param   string  $name    The model name. Optional.
	 * @param   string  $prefix  The class prefix. Optional.
	 * @param   array   $config  The array of possible config values.
Optional.
	 *
	 * @return  JModelLegacy
	 *
	 * @since   1.6
	 */
	public function getModel($name = 'Article', $prefix =
'ContentModel', $config = array('ignore_request' =>
true))
	{
		return parent::getModel($name, $prefix, $config);
	}
}
controllers/featured.php000064400000004120151163734370011431
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_content
 *
 * @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('ContentControllerArticles', __DIR__ .
'/articles.php');

/**
 * Featured content controller class.
 *
 * @since  1.6
 */
class ContentControllerFeatured extends ContentControllerArticles
{
	/**
	 * Removes an item.
	 *
	 * @return  void
	 *
	 * @since   1.6
	 */
	public function delete()
	{
		// Check for request forgeries
		$this->checkToken();

		$user = JFactory::getUser();
		$ids  = $this->input->get('cid', array(),
'array');

		// Access checks.
		foreach ($ids as $i => $id)
		{
			if (!$user->authorise('core.delete',
'com_content.article.' . (int) $id))
			{
				// Prune items that you can't delete.
				unset($ids[$i]);
				JError::raiseNotice(403,
JText::_('JERROR_CORE_DELETE_NOT_PERMITTED'));
			}
		}

		if (empty($ids))
		{
			JError::raiseWarning(500,
JText::_('JERROR_NO_ITEMS_SELECTED'));
		}
		else
		{
			// Get the model.
			/** @var ContentModelFeature $model */
			$model = $this->getModel();

			// Remove the items.
			if (!$model->featured($ids, 0))
			{
				JError::raiseWarning(500, $model->getError());
			}
		}

		$this->setRedirect('index.php?option=com_content&view=featured');
	}

	/**
	 * Method to publish a list of articles.
	 *
	 * @return  void
	 *
	 * @since   1.0
	 */
	public function publish()
	{
		parent::publish();

		$this->setRedirect('index.php?option=com_content&view=featured');
	}

	/**
	 * Method to get a model object, loading it if required.
	 *
	 * @param   string  $name    The model name. Optional.
	 * @param   string  $prefix  The class prefix. Optional.
	 * @param   array   $config  Configuration array for model. Optional.
	 *
	 * @return  JModelLegacy  The model.
	 *
	 * @since   1.6
	 */
	public function getModel($name = 'Feature', $prefix =
'ContentModel', $config = array('ignore_request' =>
true))
	{
		return parent::getModel($name, $prefix, $config);
	}
}
helpers/associations.php000064400000006713151163734370011437
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_content
 *
 * @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;

use Joomla\CMS\Association\AssociationExtensionHelper;

/**
 * Content associations helper.
 *
 * @since  3.7.0
 */
class ContentAssociationsHelper extends AssociationExtensionHelper
{
	/**
	 * The extension name
	 *
	 * @var     array   $extension
	 *
	 * @since   3.7.0
	 */
	protected $extension = 'com_content';

	/**
	 * Array of item types
	 *
	 * @var     array   $itemTypes
	 *
	 * @since   3.7.0
	 */
	protected $itemTypes = array('article', 'category');

	/**
	 * Has the extension association support
	 *
	 * @var     boolean   $associationsSupport
	 *
	 * @since   3.7.0
	 */
	protected $associationsSupport = true;

	/**
	 * Get the associated items for an item
	 *
	 * @param   string  $typeName  The item type
	 * @param   int     $id        The id of item for which we need the
associated items
	 *
	 * @return  array
	 *
	 * @since   3.7.0
	 */
	public function getAssociations($typeName, $id)
	{
		$type = $this->getType($typeName);

		$context    = $this->extension . '.item';
		$catidField = 'catid';

		if ($typeName === 'category')
		{
			$context    = 'com_categories.item';
			$catidField = '';
		}

		// Get the associations.
		$associations = JLanguageAssociations::getAssociations(
			$this->extension,
			$type['tables']['a'],
			$context,
			$id,
			'id',
			'alias',
			$catidField
		);

		return $associations;
	}

	/**
	 * Get item information
	 *
	 * @param   string  $typeName  The item type
	 * @param   int     $id        The id of item for which we need the
associated items
	 *
	 * @return  JTable|null
	 *
	 * @since   3.7.0
	 */
	public function getItem($typeName, $id)
	{
		if (empty($id))
		{
			return null;
		}

		$table = null;

		switch ($typeName)
		{
			case 'article':
				$table = JTable::getInstance('Content');
				break;

			case 'category':
				$table = JTable::getInstance('Category');
				break;
		}

		if (is_null($table))
		{
			return null;
		}

		$table->load($id);

		return $table;
	}

	/**
	 * Get information about the type
	 *
	 * @param   string  $typeName  The item type
	 *
	 * @return  array  Array of item types
	 *
	 * @since   3.7.0
	 */
	public function getType($typeName = '')
	{
		$fields  = $this->getFieldsTemplate();
		$tables  = array();
		$joins   = array();
		$support = $this->getSupportTemplate();
		$title   = '';

		if (in_array($typeName, $this->itemTypes))
		{
			switch ($typeName)
			{
				case 'article':

					$support['state'] = true;
					$support['acl'] = true;
					$support['checkout'] = true;
					$support['category'] = true;
					$support['save2copy'] = true;

					$tables = array(
						'a' => '#__content'
					);

					$title = 'article';
					break;

				case 'category':
					$fields['created_user_id'] = 'a.created_user_id';
					$fields['ordering'] = 'a.lft';
					$fields['level'] = 'a.level';
					$fields['catid'] = '';
					$fields['state'] = 'a.published';

					$support['state'] = true;
					$support['acl'] = true;
					$support['checkout'] = true;
					$support['level'] = true;

					$tables = array(
						'a' => '#__categories'
					);

					$title = 'category';
					break;
			}
		}

		return array(
			'fields'  => $fields,
			'support' => $support,
			'tables'  => $tables,
			'joins'   => $joins,
			'title'   => $title
		);
	}
}
helpers/content.php000064400000010350151163734370010402 0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_content
 *
 * @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;

/**
 * Content component helper.
 *
 * @since  1.6
 */
class ContentHelper extends JHelperContent
{
	public static $extension = 'com_content';

	/**
	 * Configure the Linkbar.
	 *
	 * @param   string  $vName  The name of the active view.
	 *
	 * @return  void
	 *
	 * @since   1.6
	 */
	public static function addSubmenu($vName)
	{
		JHtmlSidebar::addEntry(
			JText::_('JGLOBAL_ARTICLES'),
			'index.php?option=com_content&view=articles',
			$vName == 'articles'
		);
		JHtmlSidebar::addEntry(
			JText::_('COM_CONTENT_SUBMENU_CATEGORIES'),
			'index.php?option=com_categories&extension=com_content',
			$vName == 'categories'
		);

		JHtmlSidebar::addEntry(
			JText::_('COM_CONTENT_SUBMENU_FEATURED'),
			'index.php?option=com_content&view=featured',
			$vName == 'featured'
		);

		if (JComponentHelper::isEnabled('com_fields') &&
JComponentHelper::getParams('com_content')->get('custom_fields_enable',
'1'))
		{
			JHtmlSidebar::addEntry(
				JText::_('JGLOBAL_FIELDS'),
				'index.php?option=com_fields&context=com_content.article',
				$vName == 'fields.fields'
			);
			JHtmlSidebar::addEntry(
				JText::_('JGLOBAL_FIELD_GROUPS'),
				'index.php?option=com_fields&view=groups&context=com_content.article',
				$vName == 'fields.groups'
			);
		}
	}

	/**
	 * Applies the content tag filters to arbitrary text as per settings for
current user group
	 *
	 * @param   text  $text  The string to filter
	 *
	 * @return  string  The filtered string
	 *
	 * @deprecated  4.0  Use JComponentHelper::filterText() instead.
	 */
	public static function filterText($text)
	{
		try
		{
			JLog::add(
				sprintf('%s() is deprecated. Use JComponentHelper::filterText()
instead', __METHOD__),
				JLog::WARNING,
				'deprecated'
			);
		}
		catch (RuntimeException $exception)
		{
			// Informational log only
		}

		return JComponentHelper::filterText($text);
	}

	/**
	 * Adds Count Items for Category Manager.
	 *
	 * @param   stdClass[]  &$items  The category objects
	 *
	 * @return  stdClass[]
	 *
	 * @since   3.5
	 */
	public static function countItems(&$items)
	{
		$config = (object) array(
			'related_tbl'   => 'content',
			'state_col'     => 'state',
			'group_col'     => 'catid',
			'relation_type' => 'category_or_group',
		);

		return parent::countRelations($items, $config);
	}

	/**
	 * Adds Count Items for Tag Manager.
	 *
	 * @param   stdClass[]  &$items     The tag objects
	 * @param   string      $extension  The name of the active view.
	 *
	 * @return  stdClass[]
	 *
	 * @since   3.6
	 */
	public static function countTagItems(&$items, $extension)
	{
		$parts   = explode('.', $extension);
		$section = count($parts) > 1 ? $parts[1] : null;

		$config = (object) array(
			'related_tbl'   => ($section === 'category' ?
'categories' : 'content'),
			'state_col'     => ($section === 'category' ?
'published' : 'state'),
			'group_col'     => 'tag_id',
			'extension'     => $extension,
			'relation_type' => 'tag_assigments',
		);

		return parent::countRelations($items, $config);
	}

	/**
	 * Returns a valid section for articles. If it is not valid then null
	 * is returned.
	 *
	 * @param   string  $section  The section to get the mapping for
	 *
	 * @return  string|null  The new section
	 *
	 * @since   3.7.0
	 */
	public static function validateSection($section)
	{
		if (JFactory::getApplication()->isClient('site'))
		{
			// On the front end we need to map some sections
			switch ($section)
			{
				// Editing an article
				case 'form':

				// Category list view
				case 'featured':
				case 'category':
					$section = 'article';
			}
		}

		if ($section != 'article')
		{
			// We don't know other sections
			return null;
		}

		return $section;
	}

	/**
	 * Returns valid contexts
	 *
	 * @return  array
	 *
	 * @since   3.7.0
	 */
	public static function getContexts()
	{
		JFactory::getLanguage()->load('com_content',
JPATH_ADMINISTRATOR);

		$contexts = array(
			'com_content.article'    =>
JText::_('COM_CONTENT'),
			'com_content.categories' => JText::_('JCATEGORY')
		);

		return $contexts;
	}
}
helpers/html/contentadministrator.php000064400000007377151163734370014166
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_content
 *
 * @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;

use Joomla\Utilities\ArrayHelper;

JLoader::register('ContentHelper', JPATH_ADMINISTRATOR .
'/components/com_content/helpers/content.php');

/**
 * Content HTML helper
 *
 * @since  3.0
 */
abstract class JHtmlContentAdministrator
{
	/**
	 * Render the list of associated items
	 *
	 * @param   integer  $articleid  The article item id
	 *
	 * @return  string  The language HTML
	 *
	 * @throws  Exception
	 */
	public static function association($articleid)
	{
		// Defaults
		$html = '';

		// Get the associations
		if ($associations =
JLanguageAssociations::getAssociations('com_content',
'#__content', 'com_content.item', $articleid))
		{
			foreach ($associations as $tag => $associated)
			{
				$associations[$tag] = (int) $associated->id;
			}

			// Get the associated menu items
			$db = JFactory::getDbo();
			$query = $db->getQuery(true)
				->select('c.*')
				->select('l.sef as lang_sef')
				->select('l.lang_code')
				->from('#__content as c')
				->select('cat.title as category_title')
				->join('LEFT', '#__categories as cat ON
cat.id=c.catid')
				->where('c.id IN (' . implode(',',
array_values($associations)) . ')')
				->where('c.id != ' . $articleid)
				->join('LEFT', '#__languages as l ON
c.language=l.lang_code')
				->select('l.image')
				->select('l.title as language_title');
			$db->setQuery($query);

			try
			{
				$items = $db->loadObjectList('id');
			}
			catch (RuntimeException $e)
			{
				throw new Exception($e->getMessage(), 500, $e);
			}

			if ($items)
			{
				foreach ($items as &$item)
				{
					$text    = $item->lang_sef ? strtoupper($item->lang_sef) :
'XX';
					$url     =
JRoute::_('index.php?option=com_content&task=article.edit&id='
. (int) $item->id);

					$tooltip = htmlspecialchars($item->title, ENT_QUOTES,
'UTF-8') . '<br />' .
JText::sprintf('JCATEGORY_SPRINTF', $item->category_title);
					$classes = 'hasPopover label label-association label-' .
$item->lang_sef;

					$item->link = '<a href="' . $url . '"
title="' . $item->language_title . '"
class="' . $classes
						. '" data-content="' . $tooltip . '"
data-placement="top">'
						. $text . '</a>';
				}
			}

			JHtml::_('bootstrap.popover');

			$html = JLayoutHelper::render('joomla.content.associations',
$items);
		}

		return $html;
	}

	/**
	 * Show the feature/unfeature links
	 *
	 * @param   integer  $value      The state value
	 * @param   integer  $i          Row number
	 * @param   boolean  $canChange  Is user allowed to change?
	 *
	 * @return  string       HTML code
	 */
	public static function featured($value = 0, $i = 0, $canChange = true)
	{
		JHtml::_('bootstrap.tooltip');

		// Array of image, task, title, action
		$states = array(
			0 => array('unfeatured', 'articles.featured',
'COM_CONTENT_UNFEATURED', 'JGLOBAL_TOGGLE_FEATURED'),
			1 => array('featured', 'articles.unfeatured',
'COM_CONTENT_FEATURED', 'JGLOBAL_TOGGLE_FEATURED'),
		);
		$state = ArrayHelper::getValue($states, (int) $value, $states[1]);
		$icon  = $state[0];

		if ($canChange)
		{
			$html = '<a href="#" onclick="return
listItemTask(\'cb' . $i . '\',\'' . $state[1]
. '\')" class="btn btn-micro hasTooltip'
				. ($value == 1 ? ' active' : '') . '"
title="' . JHtml::_('tooltipText', $state[3])
				. '"><span class="icon-' . $icon .
'" aria-hidden="true"></span></a>';
		}
		else
		{
			$html = '<a class="btn btn-micro hasTooltip disabled'
. ($value == 1 ? ' active' : '') . '"
title="'
				. JHtml::_('tooltipText', $state[2]) .
'"><span class="icon-' . $icon . '"
aria-hidden="true"></span></a>';
		}

		return $html;
	}
}
models/article.php000064400000060166151163734370010206 0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_content
 *
 * @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;

use Joomla\Registry\Registry;
use Joomla\Utilities\ArrayHelper;

JLoader::register('ContentHelper', JPATH_ADMINISTRATOR .
'/components/com_content/helpers/content.php');

/**
 * Item Model for an Article.
 *
 * @since  1.6
 */
class ContentModelArticle extends JModelAdmin
{
	/**
	 * The prefix to use with controller messages.
	 *
	 * @var    string
	 * @since  1.6
	 */
	protected $text_prefix = 'COM_CONTENT';

	/**
	 * The type alias for this content type (for example,
'com_content.article').
	 *
	 * @var    string
	 * @since  3.2
	 */
	public $typeAlias = 'com_content.article';

	/**
	 * The context used for the associations table
	 *
	 * @var    string
	 * @since  3.4.4
	 */
	protected $associationsContext = 'com_content.item';

	/**
	 * Function that can be overridden to do any data cleanup after batch
copying data
	 *
	 * @param   \JTableInterface  $table  The table object containing the
newly created item
	 * @param   integer           $newId  The id of the new item
	 * @param   integer           $oldId  The original item id
	 *
	 * @return  void
	 *
	 * @since  3.8.12
	 */
	protected function cleanupPostBatchCopy(\JTableInterface $table, $newId,
$oldId)
	{
		// Check if the article was featured and update the #__content_frontpage
table
		if ($table->featured == 1)
		{
			$db = $this->getDbo();
			$query = $db->getQuery(true)
				->insert($db->quoteName('#__content_frontpage'))
				->values($newId . ', 0');
			$db->setQuery($query);
			$db->execute();
		}

		// Register FieldsHelper
		JLoader::register('FieldsHelper', JPATH_ADMINISTRATOR .
'/components/com_fields/helpers/fields.php');

		$oldItem = $this->getTable();
		$oldItem->load($oldId);
		$fields = FieldsHelper::getFields('com_content.article',
$oldItem, true);

		$fieldsData = array();

		if (!empty($fields))
		{
			$fieldsData['com_fields'] = array();

			foreach ($fields as $field)
			{
				$fieldsData['com_fields'][$field->name] =
$field->rawvalue;
			}
		}

		JEventDispatcher::getInstance()->trigger('onContentAfterSave',
array('com_content.article', &$this->table, true,
$fieldsData));
	}

	/**
	 * Batch move categories to a new category.
	 *
	 * @param   integer  $value     The new category ID.
	 * @param   array    $pks       An array of row IDs.
	 * @param   array    $contexts  An array of item contexts.
	 *
	 * @return  boolean  True on success.
	 *
	 * @since   3.8.6
	 */
	protected function batchMove($value, $pks, $contexts)
	{
		if (empty($this->batchSet))
		{
			// Set some needed variables.
			$this->user = JFactory::getUser();
			$this->table = $this->getTable();
			$this->tableClassName = get_class($this->table);
			$this->contentType = new JUcmType;
			$this->type =
$this->contentType->getTypeByTable($this->tableClassName);
		}

		$categoryId = (int) $value;

		if (!$this->checkCategoryId($categoryId))
		{
			return false;
		}

		JPluginHelper::importPlugin('system');
		$dispatcher = JEventDispatcher::getInstance();

		// Register FieldsHelper
		JLoader::register('FieldsHelper', JPATH_ADMINISTRATOR .
'/components/com_fields/helpers/fields.php');

		// Parent exists so we proceed
		foreach ($pks as $pk)
		{
			if (!$this->user->authorise('core.edit',
$contexts[$pk]))
			{
				$this->setError(JText::_('JLIB_APPLICATION_ERROR_BATCH_CANNOT_EDIT'));

				return false;
			}

			// Check that the row actually exists
			if (!$this->table->load($pk))
			{
				if ($error = $this->table->getError())
				{
					// Fatal error
					$this->setError($error);

					return false;
				}
				else
				{
					// Not fatal error
					$this->setError(JText::sprintf('JLIB_APPLICATION_ERROR_BATCH_MOVE_ROW_NOT_FOUND',
$pk));
					continue;
				}
			}

			$fields = FieldsHelper::getFields('com_content.article',
$this->table, true);
			$fieldsData = array();

			if (!empty($fields))
			{
				$fieldsData['com_fields'] = array();

				foreach ($fields as $field)
				{
					$fieldsData['com_fields'][$field->name] =
$field->rawvalue;
				}
			}

			// Set the new category ID
			$this->table->catid = $categoryId;

			// Check the row.
			if (!$this->table->check())
			{
				$this->setError($this->table->getError());

				return false;
			}

			if (!empty($this->type))
			{
				$this->createTagsHelper($this->tagsObserver, $this->type, $pk,
$this->typeAlias, $this->table);
			}

			// Store the row.
			if (!$this->table->store())
			{
				$this->setError($this->table->getError());

				return false;
			}

			// Run event for moved article
			$dispatcher->trigger('onContentAfterSave',
array('com_content.article', &$this->table, false,
$fieldsData));
		}

		// Clean the cache
		$this->cleanCache();

		return true;
	}

	/**
	 * Method to test whether a record can be deleted.
	 *
	 * @param   object  $record  A record object.
	 *
	 * @return  boolean  True if allowed to delete the record. Defaults to the
permission set in the component.
	 *
	 * @since   1.6
	 */
	protected function canDelete($record)
	{
		if (empty($record->id) || $record->state != -2)
		{
			return false;
		}

		return JFactory::getUser()->authorise('core.delete',
'com_content.article.' . (int) $record->id);
	}

	/**
	 * Method to test whether a record can have its state edited.
	 *
	 * @param   object  $record  A record object.
	 *
	 * @return  boolean  True if allowed to change the state of the record.
Defaults to the permission set in the component.
	 *
	 * @since   1.6
	 */
	protected function canEditState($record)
	{
		$user = JFactory::getUser();

		// Check for existing article.
		if (!empty($record->id))
		{
			return $user->authorise('core.edit.state',
'com_content.article.' . (int) $record->id);
		}

		// New article, so check against the category.
		if (!empty($record->catid))
		{
			return $user->authorise('core.edit.state',
'com_content.category.' . (int) $record->catid);
		}

		// Default to component settings if neither article nor category known.
		return parent::canEditState($record);
	}

	/**
	 * Prepare and sanitise the table data prior to saving.
	 *
	 * @param   JTable  $table  A JTable object.
	 *
	 * @return  void
	 *
	 * @since   1.6
	 */
	protected function prepareTable($table)
	{
		// Set the publish date to now
		if ($table->state == 1 && (int) $table->publish_up == 0)
		{
			$table->publish_up = JFactory::getDate()->toSql();
		}

		if ($table->state == 1 && intval($table->publish_down) ==
0)
		{
			$table->publish_down = $this->getDbo()->getNullDate();
		}

		// Increment the content version number.
		$table->version++;

		// Reorder the articles within the category so the new article is first
		if (empty($table->id))
		{
			$table->reorder('catid = ' . (int) $table->catid .
' AND state >= 0');
		}
	}

	/**
	 * Returns a Table object, always creating it.
	 *
	 * @param   string  $type    The table type to instantiate
	 * @param   string  $prefix  A prefix for the table class name. Optional.
	 * @param   array   $config  Configuration array for model. Optional.
	 *
	 * @return  JTable    A database object
	 */
	public function getTable($type = 'Content', $prefix =
'JTable', $config = array())
	{
		return JTable::getInstance($type, $prefix, $config);
	}

	/**
	 * Method to get a single record.
	 *
	 * @param   integer  $pk  The id of the primary key.
	 *
	 * @return  mixed  Object on success, false on failure.
	 */
	public function getItem($pk = null)
	{
		if ($item = parent::getItem($pk))
		{
			// Convert the params field to an array.
			$registry = new Registry($item->attribs);
			$item->attribs = $registry->toArray();

			// Convert the metadata field to an array.
			$registry = new Registry($item->metadata);
			$item->metadata = $registry->toArray();

			// Convert the images field to an array.
			$registry = new Registry($item->images);
			$item->images = $registry->toArray();

			// Convert the urls field to an array.
			$registry = new Registry($item->urls);
			$item->urls = $registry->toArray();

			$item->articletext = trim($item->fulltext) != '' ?
$item->introtext . "<hr id=\"system-readmore\"
/>" . $item->fulltext : $item->introtext;

			if (!empty($item->id))
			{
				$item->tags = new JHelperTags;
				$item->tags->getTagIds($item->id,
'com_content.article');
			}
		}

		// Load associated content items
		$assoc = JLanguageAssociations::isEnabled();

		if ($assoc)
		{
			$item->associations = array();

			if ($item->id != null)
			{
				$associations =
JLanguageAssociations::getAssociations('com_content',
'#__content', 'com_content.item', $item->id);

				foreach ($associations as $tag => $association)
				{
					$item->associations[$tag] = $association->id;
				}
			}
		}

		return $item;
	}

	/**
	 * Method to get the record form.
	 *
	 * @param   array    $data      Data for the form.
	 * @param   boolean  $loadData  True if the form is to load its own data
(default case), false if not.
	 *
	 * @return  JForm|boolean  A JForm object on success, false on failure
	 *
	 * @since   1.6
	 */
	public function getForm($data = array(), $loadData = true)
	{
		$app = JFactory::getApplication();
		$user = JFactory::getUser();

		// Get the form.
		$form = $this->loadForm('com_content.article',
'article', array('control' => 'jform',
'load_data' => $loadData));

		if (empty($form))
		{
			return false;
		}

		$jinput = JFactory::getApplication()->input;

		/*
		 * The front end calls this model and uses a_id to avoid id clashes so we
need to check for that first.
		 * The back end uses id so we use that the rest of the time and set it to
0 by default.
		 */
		$id = $jinput->get('a_id', $jinput->get('id',
0));

		// Determine correct permissions to check.
		if ($this->getState('article.id'))
		{
			$id = $this->getState('article.id');

			// Existing record. Can only edit in selected categories.
			$form->setFieldAttribute('catid', 'action',
'core.edit');

			// Existing record. Can only edit own articles in selected categories.
			if ($app->isClient('administrator'))
			{
				$form->setFieldAttribute('catid', 'action',
'core.edit.own');
			}
			else
			// Existing record. We can't edit the category in frontend if not
edit.state.
			{
				if ($id != 0 &&
(!$user->authorise('core.edit.state',
'com_content.article.' . (int) $id))
					|| ($id == 0 &&
!$user->authorise('core.edit.state',
'com_content')))
				{
					$form->setFieldAttribute('catid', 'readonly',
'true');
					$form->setFieldAttribute('catid', 'filter',
'unset');
				}
			}
		}
		else
		{
			// New record. Can only create in selected categories.
			$form->setFieldAttribute('catid', 'action',
'core.create');
		}

		// Check for existing article.
		// Modify the form based on Edit State access controls.
		if ($id != 0 &&
(!$user->authorise('core.edit.state',
'com_content.article.' . (int) $id))
			|| ($id == 0 &&
!$user->authorise('core.edit.state',
'com_content')))
		{
			// Disable fields for display.
			$form->setFieldAttribute('featured', 'disabled',
'true');
			$form->setFieldAttribute('ordering', 'disabled',
'true');
			$form->setFieldAttribute('publish_up',
'disabled', 'true');
			$form->setFieldAttribute('publish_down',
'disabled', 'true');
			$form->setFieldAttribute('state', 'disabled',
'true');

			// Disable fields while saving.
			// The controller has already verified this is an article you can edit.
			$form->setFieldAttribute('featured', 'filter',
'unset');
			$form->setFieldAttribute('ordering', 'filter',
'unset');
			$form->setFieldAttribute('publish_up', 'filter',
'unset');
			$form->setFieldAttribute('publish_down',
'filter', 'unset');
			$form->setFieldAttribute('state', 'filter',
'unset');
		}

		// Prevent messing with article language and category when editing
existing article with associations
		$assoc = JLanguageAssociations::isEnabled();

		// Check if article is associated
		if ($this->getState('article.id') &&
$app->isClient('site') && $assoc)
		{
			$associations =
JLanguageAssociations::getAssociations('com_content',
'#__content', 'com_content.item', $id);

			// Make fields read only
			if (!empty($associations))
			{
				$form->setFieldAttribute('language', 'readonly',
'true');
				$form->setFieldAttribute('catid', 'readonly',
'true');
				$form->setFieldAttribute('language', 'filter',
'unset');
				$form->setFieldAttribute('catid', 'filter',
'unset');
			}
		}

		return $form;
	}

	/**
	 * Method to get the data that should be injected in the form.
	 *
	 * @return  mixed  The data for the form.
	 *
	 * @since   1.6
	 */
	protected function loadFormData()
	{
		// Check the session for previously entered form data.
		$app  = JFactory::getApplication();
		$data = $app->getUserState('com_content.edit.article.data',
array());

		if (empty($data))
		{
			$data = $this->getItem();

			// Pre-select some filters (Status, Category, Language, Access) in edit
form if those have been selected in Article Manager: Articles
			if ($this->getState('article.id') == 0)
			{
				$filters = (array)
$app->getUserState('com_content.articles.filter');
				$data->set(
					'state',
					$app->input->getInt(
						'state',
						((isset($filters['published']) &&
$filters['published'] !== '') ?
$filters['published'] : null)
					)
				);
				$data->set('catid',
$app->input->getInt('catid',
(!empty($filters['category_id']) ?
$filters['category_id'] : null)));
				$data->set('language',
$app->input->getString('language',
(!empty($filters['language']) ? $filters['language'] :
null)));
				$data->set('access',
					$app->input->getInt('access',
(!empty($filters['access']) ? $filters['access'] :
JFactory::getConfig()->get('access')))
				);
			}
		}

		// If there are params fieldsets in the form it will fail with a registry
object
		if (isset($data->params) && $data->params instanceof
Registry)
		{
			$data->params = $data->params->toArray();
		}

		$this->preprocessData('com_content.article', $data);

		return $data;
	}

	/**
	 * Method to validate the form data.
	 *
	 * @param   JForm   $form   The form to validate against.
	 * @param   array   $data   The data to validate.
	 * @param   string  $group  The name of the field group to validate.
	 *
	 * @return  array|boolean  Array of filtered data if valid, false
otherwise.
	 *
	 * @see     JFormRule
	 * @see     JFilterInput
	 * @since   3.7.0
	 */
	public function validate($form, $data, $group = null)
	{
		// Don't allow to change the users if not allowed to access
com_users.
		if (JFactory::getApplication()->isClient('administrator')
&& !JFactory::getUser()->authorise('core.manage',
'com_users'))
		{
			if (isset($data['created_by']))
			{
				unset($data['created_by']);
			}

			if (isset($data['modified_by']))
			{
				unset($data['modified_by']);
			}
		}

		if (!JFactory::getUser()->authorise('core.admin',
'com_content'))
		{
			if (isset($data['rules']))
			{
				unset($data['rules']);
			}
		}

		return parent::validate($form, $data, $group);
	}

	/**
	 * Method to save the form data.
	 *
	 * @param   array  $data  The form data.
	 *
	 * @return  boolean  True on success.
	 *
	 * @since   1.6
	 */
	public function save($data)
	{
		$input  = JFactory::getApplication()->input;
		$filter = JFilterInput::getInstance();

		if (isset($data['metadata']) &&
isset($data['metadata']['author']))
		{
			$data['metadata']['author'] =
$filter->clean($data['metadata']['author'],
'TRIM');
		}

		if (isset($data['created_by_alias']))
		{
			$data['created_by_alias'] =
$filter->clean($data['created_by_alias'], 'TRIM');
		}

		if (isset($data['images']) &&
is_array($data['images']))
		{
			$registry = new Registry($data['images']);

			$data['images'] = (string) $registry;
		}

		JLoader::register('CategoriesHelper', JPATH_ADMINISTRATOR .
'/components/com_categories/helpers/categories.php');

		// Create new category, if needed.
		$createCategory = true;

		// If category ID is provided, check if it's valid.
		if (is_numeric($data['catid']) &&
$data['catid'])
		{
			$createCategory =
!CategoriesHelper::validateCategoryId($data['catid'],
'com_content');
		}

		// Save New Category
		if ($createCategory && $this->canCreateCategory())
		{
			$table = array();

			// Remove #new# prefix, if exists.
			$table['title'] = strpos($data['catid'],
'#new#') === 0 ? substr($data['catid'], 5) :
$data['catid'];
			$table['parent_id'] = 1;
			$table['extension'] = 'com_content';
			$table['language'] = $data['language'];
			$table['published'] = 1;

			// Create new category and get catid back
			$data['catid'] = CategoriesHelper::createCategory($table);
		}

		if (isset($data['urls']) &&
is_array($data['urls']))
		{
			$check = $input->post->get('jform', array(),
'array');

			foreach ($data['urls'] as $i => $url)
			{
				if ($url != false && ($i == 'urla' || $i ==
'urlb' || $i == 'urlc'))
				{
					if (preg_match('~^#[a-zA-Z]{1}[a-zA-Z0-9-_:.]*$~',
$check['urls'][$i]) == 1)
					{
						$data['urls'][$i] = $check['urls'][$i];
					}
					else
					{
						$data['urls'][$i] = JStringPunycode::urlToPunycode($url);
					}
				}
			}

			unset($check);

			$registry = new Registry($data['urls']);

			$data['urls'] = (string) $registry;
		}

		// Alter the title for save as copy
		if ($input->get('task') == 'save2copy')
		{
			$origTable = clone $this->getTable();
			$origTable->load($input->getInt('id'));

			if ($data['title'] == $origTable->title)
			{
				list($title, $alias) =
$this->generateNewTitle($data['catid'],
$data['alias'], $data['title']);
				$data['title'] = $title;
				$data['alias'] = $alias;
			}
			else
			{
				if ($data['alias'] == $origTable->alias)
				{
					$data['alias'] = '';
				}
			}

			$data['state'] = 0;
		}

		// Automatic handling of alias for empty fields
		if (in_array($input->get('task'), array('apply',
'save', 'save2new')) &&
(!isset($data['id']) || (int) $data['id'] == 0))
		{
			if ($data['alias'] == null)
			{
				if (JFactory::getConfig()->get('unicodeslugs') == 1)
				{
					$data['alias'] =
JFilterOutput::stringURLUnicodeSlug($data['title']);
				}
				else
				{
					$data['alias'] =
JFilterOutput::stringURLSafe($data['title']);
				}

				$table = JTable::getInstance('Content', 'JTable');

				if ($table->load(array('alias' =>
$data['alias'], 'catid' =>
$data['catid'])))
				{
					$msg = JText::_('COM_CONTENT_SAVE_WARNING');
				}

				list($title, $alias) =
$this->generateNewTitle($data['catid'],
$data['alias'], $data['title']);
				$data['alias'] = $alias;

				if (isset($msg))
				{
					JFactory::getApplication()->enqueueMessage($msg,
'warning');
				}
			}
		}

		if (parent::save($data))
		{
			if (isset($data['featured']))
			{
				$this->featured($this->getState($this->getName() .
'.id'), $data['featured']);
			}

			return true;
		}

		return false;
	}

	/**
	 * Method to toggle the featured setting of articles.
	 *
	 * @param   array    $pks    The ids of the items to toggle.
	 * @param   integer  $value  The value to toggle to.
	 *
	 * @return  boolean  True on success.
	 */
	public function featured($pks, $value = 0)
	{
		// Sanitize the ids.
		$pks = (array) $pks;
		$pks = ArrayHelper::toInteger($pks);

		if (empty($pks))
		{
			$this->setError(JText::_('COM_CONTENT_NO_ITEM_SELECTED'));

			return false;
		}

		$table = $this->getTable('Featured',
'ContentTable');

		try
		{
			$db = $this->getDbo();
			$query = $db->getQuery(true)
				->update($db->quoteName('#__content'))
				->set('featured = ' . (int) $value)
				->where('id IN (' . implode(',', $pks) .
')');
			$db->setQuery($query);
			$db->execute();

			if ((int) $value == 0)
			{
				// Adjust the mapping table.
				// Clear the existing features settings.
				$query = $db->getQuery(true)
					->delete($db->quoteName('#__content_frontpage'))
					->where('content_id IN (' . implode(',', $pks)
. ')');
				$db->setQuery($query);
				$db->execute();
			}
			else
			{
				// First, we find out which of our new featured articles are already
featured.
				$query = $db->getQuery(true)
					->select('f.content_id')
					->from('#__content_frontpage AS f')
					->where('content_id IN (' . implode(',', $pks)
. ')');
				$db->setQuery($query);

				$oldFeatured = $db->loadColumn();

				// We diff the arrays to get a list of the articles that are newly
featured
				$newFeatured = array_diff($pks, $oldFeatured);

				// Featuring.
				$tuples = array();

				foreach ($newFeatured as $pk)
				{
					$tuples[] = $pk . ', 0';
				}

				if (count($tuples))
				{
					$columns = array('content_id', 'ordering');
					$query = $db->getQuery(true)
						->insert($db->quoteName('#__content_frontpage'))
						->columns($db->quoteName($columns))
						->values($tuples);
					$db->setQuery($query);
					$db->execute();
				}
			}
		}
		catch (Exception $e)
		{
			$this->setError($e->getMessage());

			return false;
		}

		$table->reorder();

		$this->cleanCache();

		return true;
	}

	/**
	 * A protected method to get a set of ordering conditions.
	 *
	 * @param   object  $table  A record object.
	 *
	 * @return  array  An array of conditions to add to add to ordering
queries.
	 *
	 * @since   1.6
	 */
	protected function getReorderConditions($table)
	{
		return array('catid = ' . (int) $table->catid);
	}

	/**
	 * Allows preprocessing of the JForm object.
	 *
	 * @param   JForm   $form   The form object
	 * @param   array   $data   The data to be merged into the form object
	 * @param   string  $group  The plugin group to be executed
	 *
	 * @return  void
	 *
	 * @since   3.0
	 */
	protected function preprocessForm(JForm $form, $data, $group =
'content')
	{
		if ($this->canCreateCategory())
		{
			$form->setFieldAttribute('catid', 'allowAdd',
'true');

			// Add a prefix for categories created on the fly.
			$form->setFieldAttribute('catid', 'customPrefix',
'#new#');
		}

		// Association content items
		if (JLanguageAssociations::isEnabled())
		{
			$languages = JLanguageHelper::getContentLanguages(false, true, null,
'ordering', 'asc');

			if (count($languages) > 1)
			{
				$addform = new SimpleXMLElement('<form />');
				$fields = $addform->addChild('fields');
				$fields->addAttribute('name', 'associations');
				$fieldset = $fields->addChild('fieldset');
				$fieldset->addAttribute('name',
'item_associations');

				foreach ($languages as $language)
				{
					$field = $fieldset->addChild('field');
					$field->addAttribute('name', $language->lang_code);
					$field->addAttribute('type', 'modal_article');
					$field->addAttribute('language',
$language->lang_code);
					$field->addAttribute('label', $language->title);
					$field->addAttribute('translate_label',
'false');
					$field->addAttribute('select', 'true');
					$field->addAttribute('new', 'true');
					$field->addAttribute('edit', 'true');
					$field->addAttribute('clear', 'true');
					$field->addAttribute('propagate', 'true');
				}

				$form->load($addform, false);
			}
		}

		parent::preprocessForm($form, $data, $group);
	}

	/**
	 * Custom clean the cache of com_content and content modules
	 *
	 * @param   string   $group     The cache group
	 * @param   integer  $clientId  The ID of the client
	 *
	 * @return  void
	 *
	 * @since   1.6
	 */
	protected function cleanCache($group = null, $clientId = 0)
	{
		parent::cleanCache('com_content');
		parent::cleanCache('mod_articles_archive');
		parent::cleanCache('mod_articles_categories');
		parent::cleanCache('mod_articles_category');
		parent::cleanCache('mod_articles_latest');
		parent::cleanCache('mod_articles_news');
		parent::cleanCache('mod_articles_popular');
	}

	/**
	 * Void hit function for pagebreak when editing content from frontend
	 *
	 * @return  void
	 *
	 * @since   3.6.0
	 */
	public function hit()
	{
		return;
	}

	/**
	 * Is the user allowed to create an on the fly category?
	 *
	 * @return  boolean
	 *
	 * @since   3.6.1
	 */
	private function canCreateCategory()
	{
		return JFactory::getUser()->authorise('core.create',
'com_content');
	}

	/**
	 * Delete #__content_frontpage items if the deleted articles was featured
	 *
	 * @param   object  $pks  The primary key related to the contents that was
deleted.
	 *
	 * @return  boolean
	 *
	 * @since   3.7.0
	 */
	public function delete(&$pks)
	{
		$return = parent::delete($pks);

		if ($return)
		{
			// Now check to see if this articles was featured if so delete it from
the #__content_frontpage table
			$db = $this->getDbo();
			$query = $db->getQuery(true)
				->delete($db->quoteName('#__content_frontpage'))
				->where('content_id IN (' . implode(',', $pks) .
')');
			$db->setQuery($query);
			$db->execute();
		}

		return $return;
	}
}
models/articles.php000064400000031645151163734370010371 0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_content
 *
 * @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;

use Joomla\Utilities\ArrayHelper;

/**
 * Methods supporting a list of article records.
 *
 * @since  1.6
 */
class ContentModelArticles extends JModelList
{
	/**
	 * Constructor.
	 *
	 * @param   array  $config  An optional associative array of configuration
settings.
	 *
	 * @since   1.6
	 * @see     JControllerLegacy
	 */
	public function __construct($config = array())
	{
		if (empty($config['filter_fields']))
		{
			$config['filter_fields'] = array(
				'id', 'a.id',
				'title', 'a.title',
				'alias', 'a.alias',
				'checked_out', 'a.checked_out',
				'checked_out_time', 'a.checked_out_time',
				'catid', 'a.catid', 'category_title',
				'state', 'a.state',
				'access', 'a.access', 'access_level',
				'created', 'a.created',
				'modified', 'a.modified',
				'created_by', 'a.created_by',
				'created_by_alias', 'a.created_by_alias',
				'ordering', 'a.ordering',
				'featured', 'a.featured',
				'language', 'a.language',
				'hits', 'a.hits',
				'publish_up', 'a.publish_up',
				'publish_down', 'a.publish_down',
				'published', 'a.published',
				'author_id',
				'category_id',
				'level',
				'tag',
				'rating_count', 'rating',
			);

			if (JLanguageAssociations::isEnabled())
			{
				$config['filter_fields'][] = 'association';
			}
		}

		parent::__construct($config);
	}

	/**
	 * Method to auto-populate the model state.
	 *
	 * Note. Calling getState in this method will result in recursion.
	 *
	 * @param   string  $ordering   An optional ordering field.
	 * @param   string  $direction  An optional direction (asc|desc).
	 *
	 * @return  void
	 *
	 * @since   1.6
	 */
	protected function populateState($ordering = 'a.id', $direction
= 'desc')
	{
		$app = JFactory::getApplication();

		$forcedLanguage = $app->input->get('forcedLanguage',
'', 'cmd');

		// Adjust the context to support modal layouts.
		if ($layout = $app->input->get('layout'))
		{
			$this->context .= '.' . $layout;
		}

		// Adjust the context to support forced languages.
		if ($forcedLanguage)
		{
			$this->context .= '.' . $forcedLanguage;
		}

		$search = $this->getUserStateFromRequest($this->context .
'.filter.search', 'filter_search');
		$this->setState('filter.search', $search);

		$published = $this->getUserStateFromRequest($this->context .
'.filter.published', 'filter_published', '');
		$this->setState('filter.published', $published);

		$level = $this->getUserStateFromRequest($this->context .
'.filter.level', 'filter_level');
		$this->setState('filter.level', $level);

		$language = $this->getUserStateFromRequest($this->context .
'.filter.language', 'filter_language', '');
		$this->setState('filter.language', $language);

		$formSubmited =
$app->input->post->get('form_submited');

		$access     = $this->getUserStateFromRequest($this->context .
'.filter.access', 'filter_access');
		$authorId   = $this->getUserStateFromRequest($this->context .
'.filter.author_id', 'filter_author_id');
		$categoryId = $this->getUserStateFromRequest($this->context .
'.filter.category_id', 'filter_category_id');
		$tag        = $this->getUserStateFromRequest($this->context .
'.filter.tag', 'filter_tag', '');

		if ($formSubmited)
		{
			$access = $app->input->post->get('access');
			$this->setState('filter.access', $access);

			$authorId = $app->input->post->get('author_id');
			$this->setState('filter.author_id', $authorId);

			$categoryId = $app->input->post->get('category_id');
			$this->setState('filter.category_id', $categoryId);

			$tag = $app->input->post->get('tag');
			$this->setState('filter.tag', $tag);
		}

		// List state information.
		parent::populateState($ordering, $direction);

		// Force a language
		if (!empty($forcedLanguage))
		{
			$this->setState('filter.language', $forcedLanguage);
			$this->setState('filter.forcedLanguage', $forcedLanguage);
		}
	}

	/**
	 * Method to get a store id based on model configuration state.
	 *
	 * This is necessary because the model is used by the component and
	 * different modules that might need different sets of data or different
	 * ordering requirements.
	 *
	 * @param   string  $id  A prefix for the store id.
	 *
	 * @return  string  A store id.
	 *
	 * @since   1.6
	 */
	protected function getStoreId($id = '')
	{
		// Compile the store id.
		$id .= ':' . $this->getState('filter.search');
		$id .= ':' .
serialize($this->getState('filter.access'));
		$id .= ':' . $this->getState('filter.published');
		$id .= ':' .
serialize($this->getState('filter.category_id'));
		$id .= ':' .
serialize($this->getState('filter.author_id'));
		$id .= ':' . $this->getState('filter.language');
		$id .= ':' .
serialize($this->getState('filter.tag'));

		return parent::getStoreId($id);
	}

	/**
	 * Build an SQL query to load the list data.
	 *
	 * @return  JDatabaseQuery
	 *
	 * @since   1.6
	 */
	protected function getListQuery()
	{
		// Create a new query object.
		$db    = $this->getDbo();
		$query = $db->getQuery(true);
		$user  = JFactory::getUser();

		// Select the required fields from the table.
		$query->select(
			$this->getState(
				'list.select',
				'a.id, a.title, a.alias, a.checked_out, a.checked_out_time,
a.catid' .
				', a.state, a.access, a.created, a.created_by, a.created_by_alias,
a.modified, a.ordering, a.featured, a.language, a.hits' .
				', a.publish_up, a.publish_down, a.note'
			)
		);
		$query->from('#__content AS a');

		// Join over the language
		$query->select('l.title AS language_title, l.image AS
language_image')
			->join('LEFT', $db->quoteName('#__languages')
. ' AS l ON l.lang_code = a.language');

		// Join over the users for the checked out user.
		$query->select('uc.name AS editor')
			->join('LEFT', '#__users AS uc ON
uc.id=a.checked_out');

		// Join over the asset groups.
		$query->select('ag.title AS access_level')
			->join('LEFT', '#__viewlevels AS ag ON ag.id =
a.access');

		// Join over the categories.
		$query->select('c.title AS category_title, c.created_user_id AS
category_uid, c.level AS category_level')
			->join('LEFT', '#__categories AS c ON c.id =
a.catid');

		// Join over the parent categories.
		$query->select('parent.title AS parent_category_title, parent.id
AS parent_category_id,
								parent.created_user_id AS parent_category_uid, parent.level AS
parent_category_level')
			->join('LEFT', '#__categories AS parent ON parent.id =
c.parent_id');

		// Join over the users for the author.
		$query->select('ua.name AS author_name')
			->join('LEFT', '#__users AS ua ON ua.id =
a.created_by');

		// Join on voting table
		if (JPluginHelper::isEnabled('content', 'vote'))
		{
			$query->select('COALESCE(NULLIF(ROUND(v.rating_sum  /
v.rating_count, 0), 0), 0) AS rating,
					COALESCE(NULLIF(v.rating_count, 0), 0) as rating_count')
				->join('LEFT', '#__content_rating AS v ON a.id =
v.content_id');
		}

		// Join over the associations.
		if (JLanguageAssociations::isEnabled())
		{
			$subQuery = $db->getQuery(true)
				->select('COUNT(' .
$db->quoteName('asso1.id') . ') > 1')
				->from($db->quoteName('#__associations',
'asso1'))
				->join('INNER',
$db->quoteName('#__associations', 'asso2') . '
ON ' . $db->quoteName('asso1.key') . ' = ' .
$db->quoteName('asso2.key'))
				->where(
					array(
						$db->quoteName('asso1.id') . ' = ' .
$db->quoteName('a.id'),
						$db->quoteName('asso1.context') . ' = ' .
$db->quote('com_content.item'),
					)
				);

			$query->select('(' . $subQuery . ') AS ' .
$db->quoteName('association'));
		}

		// Filter by access level.
		$access = $this->getState('filter.access');

		if (is_numeric($access))
		{
			$query->where('a.access = ' . (int) $access);
		}
		elseif (is_array($access))
		{
			$access = ArrayHelper::toInteger($access);
			$access = implode(',', $access);
			$query->where('a.access IN (' . $access . ')');
		}

		// Filter by access level on categories.
		if (!$user->authorise('core.admin'))
		{
			$groups = implode(',', $user->getAuthorisedViewLevels());
			$query->where('a.access IN (' . $groups . ')');
			$query->where('c.access IN (' . $groups . ')');
		}

		// Filter by published state
		$published = $this->getState('filter.published');

		if (is_numeric($published))
		{
			$query->where('a.state = ' . (int) $published);
		}
		elseif ($published === '')
		{
			$query->where('(a.state = 0 OR a.state = 1)');
		}

		// Filter by categories and by level
		$categoryId = $this->getState('filter.category_id',
array());
		$level = $this->getState('filter.level');

		if (!is_array($categoryId))
		{
			$categoryId = $categoryId ? array($categoryId) : array();
		}

		// Case: Using both categories filter and by level filter
		if (count($categoryId))
		{
			$categoryId = ArrayHelper::toInteger($categoryId);
			$categoryTable = JTable::getInstance('Category',
'JTable');
			$subCatItemsWhere = array();

			foreach ($categoryId as $filter_catid)
			{
				$categoryTable->load($filter_catid);
				$subCatItemsWhere[] = '(' .
					($level ? 'c.level <= ' . ((int) $level + (int)
$categoryTable->level - 1) . ' AND ' : '') .
					'c.lft >= ' . (int) $categoryTable->lft . ' AND
' .
					'c.rgt <= ' . (int) $categoryTable->rgt .
')';
			}

			$query->where('(' . implode(' OR ',
$subCatItemsWhere) . ')');
		}

		// Case: Using only the by level filter
		elseif ($level)
		{
			$query->where('c.level <= ' . (int) $level);
		}

		// Filter by author
		$authorId = $this->getState('filter.author_id');

		if (is_numeric($authorId))
		{
			$type = $this->getState('filter.author_id.include', true) ?
'= ' : '<>';
			$query->where('a.created_by ' . $type . (int) $authorId);
		}
		elseif (is_array($authorId))
		{
			$authorId = ArrayHelper::toInteger($authorId);
			$authorId = implode(',', $authorId);
			$query->where('a.created_by IN (' . $authorId .
')');
		}

		// Filter by search in title.
		$search = $this->getState('filter.search');

		if (!empty($search))
		{
			if (stripos($search, 'id:') === 0)
			{
				$query->where('a.id = ' . (int) substr($search, 3));
			}
			elseif (stripos($search, 'author:') === 0)
			{
				$search = $db->quote('%' . $db->escape(substr($search,
7), true) . '%');
				$query->where('(ua.name LIKE ' . $search . ' OR
ua.username LIKE ' . $search . ')');
			}
			elseif (stripos($search, 'content:') === 0)
			{
				$search = $db->quote('%' . $db->escape(substr($search,
8), true) . '%');
				$query->where('(a.introtext LIKE ' . $search . ' OR
a.fulltext LIKE ' . $search . ')');
			}
			else
			{
				$search = $db->quote('%' . str_replace(' ',
'%', $db->escape(trim($search), true) . '%'));
				$query->where('(a.title LIKE ' . $search . ' OR
a.alias LIKE ' . $search . ' OR a.note LIKE ' . $search .
')');
			}
		}

		// Filter on the language.
		if ($language = $this->getState('filter.language'))
		{
			$query->where('a.language = ' . $db->quote($language));
		}

		$tag = $this->getState('filter.tag');

		// Run simplified query when filtering by one tag.
		if (\is_array($tag) && \count($tag) === 1)
		{
			$tag = $tag[0];
		}

		if ($tag && \is_array($tag))
		{
			$tag = ArrayHelper::toInteger($tag);

			$subQuery = $db->getQuery(true)
				->select('DISTINCT ' .
$db->quoteName('content_item_id'))
				->from($db->quoteName('#__contentitem_tag_map'))
				->where(
					array(
						$db->quoteName('tag_id') . ' IN (' .
implode(',', $tag) . ')',
						$db->quoteName('type_alias') . ' = ' .
$db->quote('com_content.article'),
					)
				);

			$query->join(
				'INNER',
				'(' . $subQuery . ') AS ' .
$db->quoteName('tagmap')
					. ' ON ' .
$db->quoteName('tagmap.content_item_id') . ' = ' .
$db->quoteName('a.id')
			);
		}
		elseif ($tag = (int) $tag)
		{
			$query->join(
				'INNER',
				$db->quoteName('#__contentitem_tag_map',
'tagmap')
					. ' ON ' .
$db->quoteName('tagmap.content_item_id') . ' = ' .
$db->quoteName('a.id')
			)
				->where(
					array(
						$db->quoteName('tagmap.tag_id') . ' = ' .
$tag,
						$db->quoteName('tagmap.type_alias') . ' = ' .
$db->quote('com_content.article'),
					)
				);
		}

		// Add the list ordering clause.
		$orderCol  = $this->state->get('list.ordering',
'a.id');
		$orderDirn = $this->state->get('list.direction',
'DESC');

		if ($orderCol == 'a.ordering' || $orderCol ==
'category_title')
		{
			$orderCol = $db->quoteName('c.title') . ' ' .
$orderDirn . ', ' . $db->quoteName('a.ordering');
		}

		$query->order($db->escape($orderCol) . ' ' .
$db->escape($orderDirn));

		return $query;
	}

	/**
	 * Build a list of authors
	 *
	 * @return  stdClass
	 *
	 * @since   1.6
	 *
	 * @deprecated  4.0  To be removed with Hathor
	 */
	public function getAuthors()
	{
		// Create a new query object.
		$db    = $this->getDbo();
		$query = $db->getQuery(true);

		// Construct the query
		$query->select('u.id AS value, u.name AS text')
			->from('#__users AS u')
			->join('INNER', '#__content AS c ON c.created_by =
u.id')
			->group('u.id, u.name')
			->order('u.name');

		// Setup the query
		$db->setQuery($query);

		// Return the result
		return $db->loadObjectList();
	}
}
models/feature.php000064400000002315151163734370010206 0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_content
 *
 * @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('ContentModelArticle', __DIR__ .
'/article.php');

/**
 * Feature model.
 *
 * @since  1.6
 */
class ContentModelFeature extends ContentModelArticle
{
	/**
	 * Returns a Table object, always creating it.
	 *
	 * @param   string  $type    The table type to instantiate
	 * @param   string  $prefix  A prefix for the table class name. Optional.
	 * @param   array   $config  Configuration array for model. Optional.
	 *
	 * @return  JTable	A database object
	 *
	 * @since   1.6
	 */
	public function getTable($type = 'Featured', $prefix =
'ContentTable', $config = array())
	{
		return JTable::getInstance($type, $prefix, $config);
	}

	/**
	 * A protected method to get a set of ordering conditions.
	 *
	 * @param   object  $table  A record object.
	 *
	 * @return  array  An array of conditions to add to add to ordering
queries.
	 *
	 * @since   1.6
	 */
	protected function getReorderConditions($table)
	{
		return array();
	}
}
models/featured.php000064400000020421151163734370010350 0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_content
 *
 * @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;

use Joomla\Utilities\ArrayHelper;

JLoader::register('ContentModelArticles', __DIR__ .
'/articles.php');

/**
 * Methods supporting a list of featured article records.
 *
 * @since  1.6
 */
class ContentModelFeatured extends ContentModelArticles
{
	/**
	 * Constructor.
	 *
	 * @param   array  $config  An optional associative array of configuration
settings.
	 *
	 * @see     JControllerLegacy
	 * @since   1.6
	 */
	public function __construct($config = array())
	{
		if (empty($config['filter_fields']))
		{
			$config['filter_fields'] = array(
				'id', 'a.id',
				'title', 'a.title',
				'alias', 'a.alias',
				'checked_out', 'a.checked_out',
				'checked_out_time', 'a.checked_out_time',
				'catid', 'a.catid', 'category_title',
				'state', 'a.state',
				'access', 'a.access', 'access_level',
				'created', 'a.created',
				'created_by', 'a.created_by',
				'created_by_alias', 'a.created_by_alias',
				'ordering', 'a.ordering',
				'featured', 'a.featured',
				'language', 'a.language',
				'hits', 'a.hits',
				'publish_up', 'a.publish_up',
				'publish_down', 'a.publish_down',
				'fp.ordering',
				'published', 'a.published',
				'author_id',
				'category_id',
				'level',
				'tag',
				'rating_count', 'rating',
			);
		}

		parent::__construct($config);
	}

	/**
	 * Build an SQL query to load the list data.
	 *
	 * @return  JDatabaseQuery
	 *
	 * @since   1.6
	 */
	protected function getListQuery()
	{
		// Create a new query object.
		$db = $this->getDbo();
		$query = $db->getQuery(true);
		$user = JFactory::getUser();

		// Select the required fields from the table.
		$query->select(
			$this->getState(
				'list.select',
				'a.id, a.title, a.alias, a.checked_out, a.checked_out_time,
a.catid, a.state, a.access, a.created, a.hits,' .
					'a.created_by, a.featured, a.language, a.created_by_alias,
a.publish_up, a.publish_down, a.note'
			)
		);
		$query->from('#__content AS a');

		// Join over the language
		$query->select('l.title AS language_title, l.image AS
language_image')
			->join('LEFT', $db->quoteName('#__languages')
. ' AS l ON l.lang_code = a.language');

		// Join over the content table.
		$query->select('fp.ordering')
			->join('INNER', '#__content_frontpage AS fp ON
fp.content_id = a.id');

		// Join over the users for the checked out user.
		$query->select('uc.name AS editor')
			->join('LEFT', '#__users AS uc ON
uc.id=a.checked_out');

		// Join over the asset groups.
		$query->select('ag.title AS access_level')
			->join('LEFT', '#__viewlevels AS ag ON ag.id =
a.access');

		// Join over the categories.
		$query->select('c.title AS category_title, c.created_user_id AS
category_uid, c.level AS category_level')
			->join('LEFT', '#__categories AS c ON c.id =
a.catid');

		// Join over the parent categories.
		$query->select('parent.title AS parent_category_title, parent.id
AS parent_category_id, 
								parent.created_user_id AS parent_category_uid, parent.level AS
parent_category_level')
			->join('LEFT', '#__categories AS parent ON parent.id =
c.parent_id');

		// Join over the users for the author.
		$query->select('ua.name AS author_name')
			->join('LEFT', '#__users AS ua ON ua.id =
a.created_by');

		// Join on voting table
		if (JPluginHelper::isEnabled('content', 'vote'))
		{
			$query->select('COALESCE(NULLIF(ROUND(v.rating_sum  /
v.rating_count, 0), 0), 0) AS rating,
							COALESCE(NULLIF(v.rating_count, 0), 0) as rating_count')
				->join('LEFT', '#__content_rating AS v ON a.id =
v.content_id');
		}

		// Filter by access level.
		$access = $this->getState('filter.access');

		if (is_numeric($access))
		{
			$query->where('a.access = ' . (int) $access);
		}
		elseif (is_array($access))
		{
			$access = ArrayHelper::toInteger($access);
			$access = implode(',', $access);
			$query->where('a.access IN (' . $access . ')');
		}

		// Filter by access level on categories.
		if (!$user->authorise('core.admin'))
		{
			$groups = implode(',', $user->getAuthorisedViewLevels());
			$query->where('a.access IN (' . $groups . ')');
			$query->where('c.access IN (' . $groups . ')');
		}

		// Filter by published state
		$published = $this->getState('filter.published');

		if (is_numeric($published))
		{
			$query->where('a.state = ' . (int) $published);
		}
		elseif ($published === '')
		{
			$query->where('(a.state = 0 OR a.state = 1)');
		}

		// Filter by a single or group of categories.
		$baselevel = 1;
		$categoryId = $this->getState('filter.category_id');

		if (is_array($categoryId) && count($categoryId) === 1)
		{
			$cat_tbl = JTable::getInstance('Category',
'JTable');
			$cat_tbl->load($categoryId[0]);
			$rgt = $cat_tbl->rgt;
			$lft = $cat_tbl->lft;
			$baselevel = (int) $cat_tbl->level;
			$query->where('c.lft >= ' . (int) $lft)
				->where('c.rgt <= ' . (int) $rgt);
		}
		elseif (is_array($categoryId))
		{
			$categoryId = implode(',',
ArrayHelper::toInteger($categoryId));
			$query->where('a.catid IN (' . $categoryId .
')');
		}

		// Filter on the level.
		if ($level = $this->getState('filter.level'))
		{
			$query->where('c.level <= ' . ((int) $level + (int)
$baselevel - 1));
		}

		// Filter by author
		$authorId = $this->getState('filter.author_id');

		if (is_numeric($authorId))
		{
			$type = $this->getState('filter.author_id.include', true) ?
'= ' : '<>';
			$query->where('a.created_by ' . $type . (int) $authorId);
		}
		elseif (is_array($authorId))
		{
			$authorId = ArrayHelper::toInteger($authorId);
			$authorId = implode(',', $authorId);
			$query->where('a.created_by IN (' . $authorId .
')');
		}

		// Filter by search in title.
		$search = $this->getState('filter.search');

		if (!empty($search))
		{
			if (stripos($search, 'id:') === 0)
			{
				$query->where('a.id = ' . (int) substr($search, 3));
			}
			elseif (stripos($search, 'author:') === 0)
			{
				$search = $db->quote('%' . $db->escape(substr($search,
7), true) . '%');
				$query->where('(ua.name LIKE ' . $search . ' OR
ua.username LIKE ' . $search . ')');
			}
			elseif (stripos($search, 'content:') === 0)
			{
				$search = $db->quote('%' . $db->escape(substr($search,
8), true) . '%');
				$query->where('(a.introtext LIKE ' . $search . ' OR
a.fulltext LIKE ' . $search . ')');
			}
			else
			{
				$search = $db->quote('%' . str_replace(' ',
'%', $db->escape(trim($search), true) . '%'));
				$query->where('(a.title LIKE ' . $search . ' OR
a.alias LIKE ' . $search . ' OR a.note LIKE ' . $search .
')');
			}
		}

		// Filter on the language.
		if ($language = $this->getState('filter.language'))
		{
			$query->where('a.language = ' . $db->quote($language));
		}

		// Filter by a single or group of tags.
		$tagId = $this->getState('filter.tag');

		if (is_array($tagId) && count($tagId) === 1)
		{
			$tagId = current($tagId);
		}

		if (is_array($tagId))
		{
			$tagId = implode(',', ArrayHelper::toInteger($tagId));

			if ($tagId)
			{
				$subQuery = $db->getQuery(true)
					->select('DISTINCT content_item_id')
					->from($db->quoteName('#__contentitem_tag_map'))
					->where('tag_id IN (' . $tagId . ')')
					->where('type_alias = ' .
$db->quote('com_content.article'));

				$query->join('INNER', '(' . (string) $subQuery .
') AS tagmap ON tagmap.content_item_id = a.id');
			}
		}
		elseif ($tagId)
		{
			$query->join(
				'INNER',
				$db->quoteName('#__contentitem_tag_map',
'tagmap')
				. ' ON tagmap.tag_id = ' . (int) $tagId
				. ' AND tagmap.content_item_id = a.id'
				. ' AND tagmap.type_alias = ' .
$db->quote('com_content.article')
			);
		}

		// Add the list ordering clause.
		$orderCol  = $this->state->get('list.ordering',
'a.title');
		$orderDirn = $this->state->get('list.direction',
'ASC');

		$query->order($db->escape($orderCol) . ' ' .
$db->escape($orderDirn));

		return $query;
	}

	/**
	 * Method to auto-populate the model state.
	 *
	 * Note. Calling getState in this method will result in recursion.
	 *
	 * @param   string  $ordering   An optional ordering field.
	 * @param   string  $direction  An optional direction (asc|desc).
	 *
	 * @return  void
	 *
	 * @since   3.5
	 */
	protected function populateState($ordering = 'a.title',
$direction = 'asc')
	{
		parent::populateState($ordering, $direction);
	}
}
models/fields/modal/article.php000064400000023145151163734370012544
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_content
 *
 * @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;

use Joomla\CMS\Language\LanguageHelper;

/**
 * Supports a modal article picker.
 *
 * @since  1.6
 */
class JFormFieldModal_Article extends JFormField
{
	/**
	 * The form field type.
	 *
	 * @var    string
	 * @since  1.6
	 */
	protected $type = 'Modal_Article';

	/**
	 * Method to get the field input markup.
	 *
	 * @return  string  The field input markup.
	 *
	 * @since   1.6
	 */
	protected function getInput()
	{
		$allowNew       = ((string) $this->element['new'] ==
'true');
		$allowEdit      = ((string) $this->element['edit'] ==
'true');
		$allowClear     = ((string) $this->element['clear'] !=
'false');
		$allowSelect    = ((string) $this->element['select'] !=
'false');
		$allowPropagate = ((string) $this->element['propagate'] ==
'true');

		$languages = LanguageHelper::getContentLanguages(array(0, 1));

		// Load language
		JFactory::getLanguage()->load('com_content',
JPATH_ADMINISTRATOR);

		// The active article id field.
		$value = (int) $this->value > 0 ? (int) $this->value :
'';

		// Create the modal id.
		$modalId = 'Article_' . $this->id;

		// Add the modal field script to the document head.
		JHtml::_('jquery.framework');
		JHtml::_('script', 'system/modal-fields.js',
array('version' => 'auto', 'relative'
=> true));

		// Script to proxy the select modal function to the modal-fields.js file.
		if ($allowSelect)
		{
			static $scriptSelect = null;

			if (is_null($scriptSelect))
			{
				$scriptSelect = array();
			}

			if (!isset($scriptSelect[$this->id]))
			{
				JFactory::getDocument()->addScriptDeclaration("
				function jSelectArticle_" . $this->id . "(id, title,
catid, object, url, language) {
					window.processModalSelect('Article', '" .
$this->id . "', id, title, catid, object, url, language);
				}
				");

				JText::script('JGLOBAL_ASSOCIATIONS_PROPAGATE_FAILED');

				$scriptSelect[$this->id] = true;
			}
		}

		// Setup variables for display.
		$linkArticles =
'index.php?option=com_content&amp;view=articles&amp;layout=modal&amp;tmpl=component&amp;'
. JSession::getFormToken() . '=1';
		$linkArticle  =
'index.php?option=com_content&amp;view=article&amp;layout=modal&amp;tmpl=component&amp;'
. JSession::getFormToken() . '=1';

		if (isset($this->element['language']))
		{
			$linkArticles .= '&amp;forcedLanguage=' .
$this->element['language'];
			$linkArticle  .= '&amp;forcedLanguage=' .
$this->element['language'];
			$modalTitle    = JText::_('COM_CONTENT_CHANGE_ARTICLE') .
' &#8212; ' . $this->element['label'];
		}
		else
		{
			$modalTitle    = JText::_('COM_CONTENT_CHANGE_ARTICLE');
		}

		$urlSelect = $linkArticles .
'&amp;function=jSelectArticle_' . $this->id;
		$urlEdit   = $linkArticle .
'&amp;task=article.edit&amp;id=\' +
document.getElementById("' . $this->id .
'_id").value + \'';
		$urlNew    = $linkArticle . '&amp;task=article.add';

		if ($value)
		{
			$db    = JFactory::getDbo();
			$query = $db->getQuery(true)
				->select($db->quoteName('title'))
				->from($db->quoteName('#__content'))
				->where($db->quoteName('id') . ' = ' . (int)
$value);
			$db->setQuery($query);

			try
			{
				$title = $db->loadResult();
			}
			catch (RuntimeException $e)
			{
				JError::raiseWarning(500, $e->getMessage());
			}
		}

		$title = empty($title) ?
JText::_('COM_CONTENT_SELECT_AN_ARTICLE') :
htmlspecialchars($title, ENT_QUOTES, 'UTF-8');

		// The current article display field.
		$html  = '<span class="input-append">';
		$html .= '<input class="input-medium" id="' .
$this->id . '_name" type="text" value="' .
$title . '" disabled="disabled" size="35"
/>';

		// Select article button
		if ($allowSelect)
		{
			$html .= '<button'
				. ' type="button"'
				. ' class="btn hasTooltip' . ($value ? '
hidden' : '') . '"'
				. ' id="' . $this->id . '_select"'
				. ' data-toggle="modal"'
				. ' data-target="#ModalSelect' . $modalId .
'"'
				. ' title="' .
JHtml::tooltipText('COM_CONTENT_CHANGE_ARTICLE') .
'">'
				. '<span class="icon-file"
aria-hidden="true"></span> ' .
JText::_('JSELECT')
				. '</button>';
		}

		// New article button
		if ($allowNew)
		{
			$html .= '<button'
				. ' type="button"'
				. ' class="btn hasTooltip' . ($value ? '
hidden' : '') . '"'
				. ' id="' . $this->id . '_new"'
				. ' data-toggle="modal"'
				. ' data-target="#ModalNew' . $modalId .
'"'
				. ' title="' .
JHtml::tooltipText('COM_CONTENT_NEW_ARTICLE') .
'">'
				. '<span class="icon-new"
aria-hidden="true"></span> ' .
JText::_('JACTION_CREATE')
				. '</button>';
		}

		// Edit article button
		if ($allowEdit)
		{
			$html .= '<button'
				. ' type="button"'
				. ' class="btn hasTooltip' . ($value ? '' :
' hidden') . '"'
				. ' id="' . $this->id . '_edit"'
				. ' data-toggle="modal"'
				. ' data-target="#ModalEdit' . $modalId .
'"'
				. ' title="' .
JHtml::tooltipText('COM_CONTENT_EDIT_ARTICLE') .
'">'
				. '<span class="icon-edit"
aria-hidden="true"></span> ' .
JText::_('JACTION_EDIT')
				. '</button>';
		}

		// Clear article button
		if ($allowClear)
		{
			$html .= '<button'
				. ' type="button"'
				. ' class="btn' . ($value ? '' : '
hidden') . '"'
				. ' id="' . $this->id . '_clear"'
				. ' onclick="window.processModalParent(\'' .
$this->id . '\'); return false;">'
				. '<span class="icon-remove"
aria-hidden="true"></span>' .
JText::_('JCLEAR')
				. '</button>';
		}

		// Propagate article button
		if ($allowPropagate && count($languages) > 2)
		{
			// Strip off language tag at the end
			$tagLength = (int) strlen($this->element['language']);
			$callbackFunctionStem = substr("jSelectArticle_" .
$this->id, 0, -$tagLength);

			$html .= '<a'
			. ' class="btn hasTooltip' . ($value ? '' :
' hidden') . '"'
			. ' id="' . $this->id . '_propagate"'
			. ' href="#"'
			. ' title="' .
JHtml::tooltipText('JGLOBAL_ASSOCIATIONS_PROPAGATE_TIP') .
'"'
			. ' onclick="Joomla.propagateAssociation(\'' .
$this->id . '\', \'' . $callbackFunctionStem .
'\');">'
			. '<span class="icon-refresh"
aria-hidden="true"></span>' .
JText::_('JGLOBAL_ASSOCIATIONS_PROPAGATE_BUTTON')
			. '</a>';
		}

		$html .= '</span>';

		// Select article modal
		if ($allowSelect)
		{
			$html .= JHtml::_(
				'bootstrap.renderModal',
				'ModalSelect' . $modalId,
				array(
					'title'       => $modalTitle,
					'url'         => $urlSelect,
					'height'      => '400px',
					'width'       => '800px',
					'bodyHeight'  => '70',
					'modalWidth'  => '80',
					'footer'      => '<button type="button"
class="btn" data-dismiss="modal">' .
JText::_('JLIB_HTML_BEHAVIOR_CLOSE') .
'</button>',
				)
			);
		}

		// New article modal
		if ($allowNew)
		{
			$html .= JHtml::_(
				'bootstrap.renderModal',
				'ModalNew' . $modalId,
				array(
					'title'       =>
JText::_('COM_CONTENT_NEW_ARTICLE'),
					'backdrop'    => 'static',
					'keyboard'    => false,
					'closeButton' => false,
					'url'         => $urlNew,
					'height'      => '400px',
					'width'       => '800px',
					'bodyHeight'  => '70',
					'modalWidth'  => '80',
					'footer'      => '<button type="button"
class="btn"'
							. ' onclick="window.processModalEdit(this, \'' .
$this->id . '\', \'add\', \'article\',
\'cancel\', \'item-form\'); return
false;">'
							. JText::_('JLIB_HTML_BEHAVIOR_CLOSE') .
'</button>'
							. '<button type="button" class="btn
btn-primary"'
							. ' onclick="window.processModalEdit(this, \'' .
$this->id . '\', \'add\', \'article\',
\'save\', \'item-form\'); return false;">'
							. JText::_('JSAVE') . '</button>'
							. '<button type="button" class="btn
btn-success"'
							. ' onclick="window.processModalEdit(this, \'' .
$this->id . '\', \'add\', \'article\',
\'apply\', \'item-form\'); return
false;">'
							. JText::_('JAPPLY') . '</button>',
				)
			);
		}

		// Edit article modal
		if ($allowEdit)
		{
			$html .= JHtml::_(
				'bootstrap.renderModal',
				'ModalEdit' . $modalId,
				array(
					'title'       =>
JText::_('COM_CONTENT_EDIT_ARTICLE'),
					'backdrop'    => 'static',
					'keyboard'    => false,
					'closeButton' => false,
					'url'         => $urlEdit,
					'height'      => '400px',
					'width'       => '800px',
					'bodyHeight'  => '70',
					'modalWidth'  => '80',
					'footer'      => '<button type="button"
class="btn"'
							. ' onclick="window.processModalEdit(this, \'' .
$this->id . '\', \'edit\', \'article\',
\'cancel\', \'item-form\'); return
false;">'
							. JText::_('JLIB_HTML_BEHAVIOR_CLOSE') .
'</button>'
							. '<button type="button" class="btn
btn-primary"'
							. ' onclick="window.processModalEdit(this, \'' .
$this->id . '\', \'edit\', \'article\',
\'save\', \'item-form\'); return false;">'
							. JText::_('JSAVE') . '</button>'
							. '<button type="button" class="btn
btn-success"'
							. ' onclick="window.processModalEdit(this, \'' .
$this->id . '\', \'edit\', \'article\',
\'apply\', \'item-form\'); return
false;">'
							. JText::_('JAPPLY') . '</button>',
				)
			);
		}

		// Note: class='required' for client side validation.
		$class = $this->required ? ' class="required
modal-value"' : '';

		$html .= '<input type="hidden" id="' .
$this->id . '_id" ' . $class . '
data-required="' . (int) $this->required . '"
name="' . $this->name
			. '" data-text="' .
htmlspecialchars(JText::_('COM_CONTENT_SELECT_AN_ARTICLE'),
ENT_COMPAT, 'UTF-8') . '" value="' . $value .
'" />';

		return $html;
	}

	/**
	 * Method to get the field label markup.
	 *
	 * @return  string  The field label markup.
	 *
	 * @since   3.4
	 */
	protected function getLabel()
	{
		return str_replace($this->id, $this->id . '_id',
parent::getLabel());
	}
}
models/fields/voteradio.php000064400000002147151163734370012020
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_content
 *
 * @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;

JFormHelper::loadFieldClass('radio');

/**
 * Voteradio Field class.
 *
 * @since  3.8.0
 */
class JFormFieldVoteradio extends JFormFieldRadio
{
	/**
	 * The form field type.
	 *
	 * @var    string
	 * @since  3.7.1
	 */
	protected $type = 'Voteradio';

	/**
	 * Method to get the field Label.
	 *
	 * @return array The field label objects.
	 *
	 * @throws \Exception
	 *
	 * @since  3.8.2
	 */
	public function getLabel()
	{
		// Requires vote plugin enabled
		return JPluginHelper::isEnabled('content', 'vote') ?
parent::getLabel() : null;
	}

	/**
	 * Method to get the field options.
	 *
	 * @return array The field option objects.
	 *
	 * @throws \Exception
	 *
	 * @since  3.7.1
	 */
	public function getOptions()
	{
		// Requires vote plugin enabled
		return JPluginHelper::isEnabled('content', 'vote') ?
parent::getOptions() : array();
	}
}
models/forms/article.xml000064400000055206151163734370011344
0ustar00<?xml version="1.0" encoding="utf-8"?>
<form>
	<fieldset
addfieldpath="/administrator/components/com_categories/models/fields"
>
		<field
			name="id"
			type="number"
			label="JGLOBAL_FIELD_ID_LABEL"
			description="JGLOBAL_FIELD_ID_DESC"
			class="readonly"
			size="10"
			default="0"
			readonly="true"
		/>

		<field
			name="asset_id"
			type="hidden"
			filter="unset"
		/>

		<field
			name="title"
			type="text"
			label="JGLOBAL_TITLE"
			description="JFIELD_TITLE_DESC"
			class="input-xxlarge input-large-text"
			size="40"
			required="true"
		/>

		<field
			name="alias"
			type="text"
			label="JFIELD_ALIAS_LABEL"
			description="JFIELD_ALIAS_DESC"
			hint="JFIELD_ALIAS_PLACEHOLDER"
			size="40"
		/>

		<field
			name="note"
			type="text"
			label="COM_CONTENT_FIELD_NOTE_LABEL"
			description="COM_CONTENT_FIELD_NOTE_DESC"
			class="span12"
			size="40"
			maxlength="255"
		/>

		<field
			name="version_note"
			type="text"
			label="JGLOBAL_FIELD_VERSION_NOTE_LABEL"
			description="JGLOBAL_FIELD_VERSION_NOTE_DESC"
			class="span12"
			maxlength="255"
			size="45"
		/>

		<field
			name="articletext"
			type="editor"
			label="COM_CONTENT_FIELD_ARTICLETEXT_LABEL"
			description="COM_CONTENT_FIELD_ARTICLETEXT_DESC"
			filter="JComponentHelper::filterText"
			buttons="true"
		/>

		<field
			name="state"
			type="list"
			label="JSTATUS"
			description="JFIELD_PUBLISHED_DESC"
			class="chzn-color-state"
			filter="intval"
			size="1"
			default="1"
			>
			<option value="1">JPUBLISHED</option>
			<option value="0">JUNPUBLISHED</option>
			<option value="2">JARCHIVED</option>
			<option value="-2">JTRASHED</option>
		</field>

		<field
			name="catid"
			type="categoryedit"
			label="JCATEGORY"
			description="JFIELD_CATEGORY_DESC"
			required="true"
			default=""
		/>

		<field
			name="tags"
			type="tag"
			label="JTAG"
			description="JTAG_DESC"
			class="span12"
			multiple="true"
		/>

		<field
			name="buttonspacer"
			type="spacer"
			description="JGLOBAL_ACTION_PERMISSIONS_DESCRIPTION"
		/>

		<field
			name="created"
			type="calendar"
			label="COM_CONTENT_FIELD_CREATED_LABEL"
			description="COM_CONTENT_FIELD_CREATED_DESC"
			translateformat="true"
			showtime="true"
			size="22"
			filter="user_utc"
		/>

		<field
			name="created_by"
			type="user"
			label="COM_CONTENT_FIELD_CREATED_BY_LABEL"
			description="COM_CONTENT_FIELD_CREATED_BY_DESC"
		/>

		<field
			name="created_by_alias"
			type="text"
			label="COM_CONTENT_FIELD_CREATED_BY_ALIAS_LABEL"
			description="COM_CONTENT_FIELD_CREATED_BY_ALIAS_DESC"
			size="20"
		/>

		<field
			name="modified"
			type="calendar"
			label="JGLOBAL_FIELD_MODIFIED_LABEL"
			description="COM_CONTENT_FIELD_MODIFIED_DESC"
			class="readonly"
			translateformat="true"
			showtime="true"
			size="22"
			readonly="true"
			filter="user_utc"
		/>

		<field
			name="modified_by"
			type="user"
			label="JGLOBAL_FIELD_MODIFIED_BY_LABEL"
			class="readonly"
			readonly="true"
			filter="unset"
		/>

		<field
			name="checked_out"
			type="hidden"
			filter="unset"
		/>

		<field
			name="checked_out_time"
			type="hidden"
			filter="unset"
		/>

		<field
			name="publish_up"
			type="calendar"
			label="COM_CONTENT_FIELD_PUBLISH_UP_LABEL"
			description="COM_CONTENT_FIELD_PUBLISH_UP_DESC"
			translateformat="true"
			showtime="true"
			size="22"
			filter="user_utc"
		/>

		<field
			name="publish_down"
			type="calendar"
			label="COM_CONTENT_FIELD_PUBLISH_DOWN_LABEL"
			description="COM_CONTENT_FIELD_PUBLISH_DOWN_DESC"
			translateformat="true"
			showtime="true"
			size="22"
			filter="user_utc"
		/>

		<field
			name="version"
			type="text"
			label="COM_CONTENT_FIELD_VERSION_LABEL"
			description="COM_CONTENT_FIELD_VERSION_DESC"
			size="6"
			class="readonly"
			readonly="true"
			filter="unset"
		/>

		<field
			name="ordering"
			type="text"
			label="JFIELD_ORDERING_LABEL"
			description="JFIELD_ORDERING_DESC"
			size="6"
			default="0"
		/>

		<field
			name="metakey"
			type="textarea"
			label="JFIELD_META_KEYWORDS_LABEL"
			description="JFIELD_META_KEYWORDS_DESC"
			rows="3"
			cols="30"
		/>

		<field
			name="metadesc"
			type="textarea"
			label="JFIELD_META_DESCRIPTION_LABEL"
			description="JFIELD_META_DESCRIPTION_DESC"
			rows="3"
			cols="30"
		/>

		<field
			name="access"
			type="accesslevel"
			label="JFIELD_ACCESS_LABEL"
			description="JFIELD_ACCESS_DESC"
			size="1"
		/>

		<field
			name="hits"
			type="number"
			label="JGLOBAL_HITS"
			description="COM_CONTENT_FIELD_HITS_DESC"
			class="readonly"
			size="6"
			readonly="true"
			filter="unset"
		/>

		<field
			name="language"
			type="contentlanguage"
			label="JFIELD_LANGUAGE_LABEL"
			description="COM_CONTENT_FIELD_LANGUAGE_DESC"
			>
			<option value="*">JALL</option>
		</field>

		<field
			name="featured"
			type="radio"
			label="JFEATURED"
			description="COM_CONTENT_FIELD_FEATURED_DESC"
			class="btn-group btn-group-yesno"
			default="0"
			>
			<option value="1">JYES</option>
			<option value="0">JNO</option>
		</field>

		<field
			name="rules"
			type="rules"
			label="JFIELD_RULES_LABEL"
			translate_label="false"
			filter="rules"
			component="com_content"
			section="article"
			validate="rules"
		/>

	</fieldset>

	<fields name="attribs"
label="COM_CONTENT_ATTRIBS_FIELDSET_LABEL">
		<fieldset name="basic"
label="COM_CONTENT_ATTRIBS_FIELDSET_LABEL">

			<field
				name="article_layout"
				type="componentlayout"
				label="JFIELD_ALT_LAYOUT_LABEL"
				description="JFIELD_ALT_COMPONENT_LAYOUT_DESC"
				useglobal="true"
				extension="com_content"
				view="article"
			/>

			<field
				name="show_title"
				type="list"
				label="JGLOBAL_SHOW_TITLE_LABEL"
				description="JGLOBAL_SHOW_TITLE_DESC"
				class="chzn-color"
				useglobal="true"
				>
				<option value="1">JSHOW</option>
				<option value="0">JHIDE</option>
			</field>

			<field
				name="link_titles"
				type="list"
				label="JGLOBAL_LINKED_TITLES_LABEL"
				description="JGLOBAL_LINKED_TITLES_DESC"
				class="chzn-color"
				useglobal="true"
				>
				<option	value="0">JNO</option>
				<option value="1">JYES</option>
			</field>

			<field
				name="show_tags"
				type="list"
				label="COM_CONTENT_FIELD_SHOW_TAGS_LABEL"
				description="COM_CONTENT_FIELD_SHOW_TAGS_DESC"
				class="chzn-color"
				useglobal="true"
				>
				<option value="1">JSHOW</option>
				<option value="0">JHIDE</option>
			</field>

			<field
				name="show_intro"
				type="list"
				label="JGLOBAL_SHOW_INTRO_LABEL"
				description="JGLOBAL_SHOW_INTRO_DESC"
				class="chzn-color"
				useglobal="true"
				>
				<option value="1">JSHOW</option>
				<option value="0">JHIDE</option>
			</field>

			<field
				name="info_block_position"
				type="list"
				label="COM_CONTENT_FIELD_INFOBLOCK_POSITION_LABEL"
				description="COM_CONTENT_FIELD_INFOBLOCK_POSITION_DESC"
				useglobal="true"
				>
				<option
value="0">COM_CONTENT_FIELD_OPTION_ABOVE</option>
				<option
value="1">COM_CONTENT_FIELD_OPTION_BELOW</option>
				<option
value="2">COM_CONTENT_FIELD_OPTION_SPLIT</option>
			</field>

			<field
				name="info_block_show_title"
				type="list"
				label="COM_CONTENT_FIELD_INFOBLOCK_TITLE_LABEL"
				description="COM_CONTENT_FIELD_INFOBLOCK_TITLE_DESC"
				class="chzn-color"
				useglobal="true"
				>
				<option	value="0">JHIDE</option>
				<option	value="1">JSHOW</option>
			</field>

			<field
				name="show_category"
				type="list"
				label="JGLOBAL_SHOW_CATEGORY_LABEL"
				description="JGLOBAL_SHOW_CATEGORY_DESC"
				useglobal="true"
				class="chzn-color"
				>
				<option	value="0">JHIDE</option>
				<option	value="1">JSHOW</option>
			</field>

			<field
				name="link_category"
				type="list"
				label="JGLOBAL_LINK_CATEGORY_LABEL"
				description="JGLOBAL_LINK_CATEGORY_DESC"
				useglobal="true"
				class="chzn-color"
				>
				<option	value="0">JNO</option>
				<option	value="1">JYES</option>
			</field>

			<field
				name="show_parent_category"
				type="list"
				label="JGLOBAL_SHOW_PARENT_CATEGORY_LABEL"
				description="JGLOBAL_SHOW_PARENT_CATEGORY_DESC"
				useglobal="true"
				class="chzn-color"
				>
				<option	value="0">JHIDE</option>
				<option	value="1">JSHOW</option>
			</field>

			<field
				name="link_parent_category"
				type="list"
				label="JGLOBAL_LINK_PARENT_CATEGORY_LABEL"
				description="JGLOBAL_LINK_PARENT_CATEGORY_DESC"
				useglobal="true"
				class="chzn-color"
				>
				<option	value="0">JNO</option>
				<option	value="1">JYES</option>
			</field>

			<field
				name="show_associations"
				type="list"
				label="JGLOBAL_SHOW_ASSOCIATIONS_LABEL"
				description="JGLOBAL_SHOW_ASSOCIATIONS_DESC"
				class="chzn-color"
				useglobal="true"
				>
				<option value="1">JSHOW</option>
				<option value="0">JHIDE</option>
			</field>

			<field
				name="show_author"
				type="list"
				label="JGLOBAL_SHOW_AUTHOR_LABEL"
				description="JGLOBAL_SHOW_AUTHOR_DESC"
				useglobal="true"
				class="chzn-color"
				>
				<option	value="0">JHIDE</option>
				<option	value="1">JSHOW</option>
			</field>

			<field
				name="link_author"
				type="list"
				label="JGLOBAL_LINK_AUTHOR_LABEL"
				description="JGLOBAL_LINK_AUTHOR_DESC"
				useglobal="true"
				class="chzn-color"
				>
				<option	value="0">JNO</option>
				<option	value="1">JYES</option>
			</field>

			<field
				name="show_create_date"
				type="list"
				label="JGLOBAL_SHOW_CREATE_DATE_LABEL"
				description="JGLOBAL_SHOW_CREATE_DATE_DESC"
				useglobal="true"
				class="chzn-color"
				>
				<option	value="0">JHIDE</option>
				<option	value="1">JSHOW</option>
			</field>

			<field
				name="show_modify_date"
				type="list"
				label="JGLOBAL_SHOW_MODIFY_DATE_LABEL"
				description="JGLOBAL_SHOW_MODIFY_DATE_DESC"
				useglobal="true"
				class="chzn-color"
				>
				<option	value="0">JHIDE</option>
				<option	value="1">JSHOW</option>
			</field>

			<field
				name="show_publish_date"
				type="list"
				label="JGLOBAL_SHOW_PUBLISH_DATE_LABEL"
				description="JGLOBAL_SHOW_PUBLISH_DATE_DESC"
				class="chzn-color"
				useglobal="true"
				>
				<option	value="0">JHIDE</option>
				<option	value="1">JSHOW</option>
			</field>

			<field
				name="show_item_navigation"
				type="list"
				label="JGLOBAL_SHOW_NAVIGATION_LABEL"
				description="JGLOBAL_SHOW_NAVIGATION_DESC"
				useglobal="true"
				class="chzn-color"
				>
				<option value="0">JHIDE</option>
				<option	value="1">JSHOW</option>
			</field>

			<field
				name="show_icons"
				type="list"
				label="JGLOBAL_SHOW_ICONS_LABEL"
				description="JGLOBAL_SHOW_ICONS_DESC"
				useglobal="true"
				class="chzn-color"
				>
				<option	value="0">JHIDE</option>
				<option	value="1">JSHOW</option>
			</field>

			<field
				name="show_print_icon"
				type="list"
				label="JGLOBAL_SHOW_PRINT_ICON_LABEL"
				description="JGLOBAL_SHOW_PRINT_ICON_DESC"
				useglobal="true"
				class="chzn-color"
				>
				<option	value="0">JHIDE</option>
				<option	value="1">JSHOW</option>
			</field>

			<field
				name="show_email_icon"
				type="list"
				label="JGLOBAL_SHOW_EMAIL_ICON_LABEL"
				description="JGLOBAL_SHOW_EMAIL_ICON_DESC"
				useglobal="true"
				class="chzn-color"
				>
				<option	value="0">JHIDE</option>
				<option	value="1">JSHOW</option>
			</field>

			<field
				name="show_vote"
				type="list"
				label="JGLOBAL_SHOW_VOTE_LABEL"
				description="JGLOBAL_SHOW_VOTE_DESC"
				useglobal="true"
				class="chzn-color"
				>
				<option value="0">JHIDE</option>
				<option	value="1">JSHOW</option>
			</field>

			<field
				name="show_hits"
				type="list"
				label="JGLOBAL_SHOW_HITS_LABEL"
				description="JGLOBAL_SHOW_HITS_DESC"
				useglobal="true"
				class="chzn-color"
				>
				<option	value="0">JHIDE</option>
				<option	value="1">JSHOW</option>
			</field>

			<field
				name="show_noauth"
				type="list"
				label="JGLOBAL_SHOW_UNAUTH_LINKS_LABEL"
				description="JGLOBAL_SHOW_UNAUTH_LINKS_DESC"
				useglobal="true"
				class="chzn-color"
				>
				<option value="0">JNO</option>
				<option value="1">JYES</option>
			</field>

			<field
				name="urls_position"
				type="list"
				label="COM_CONTENT_FIELD_URLSPOSITION_LABEL"
				description="COM_CONTENT_FIELD_URLSPOSITION_DESC"
				useglobal="true"
				class="chzn-color"
				>
				<option
value="0">COM_CONTENT_FIELD_OPTION_ABOVE</option>
				<option
value="1">COM_CONTENT_FIELD_OPTION_BELOW</option>
			</field>

			<field
				name="spacer2"
				type="spacer"
				hr="true"
			/>

			<field
				name="alternative_readmore"
				type="text"
				label="JFIELD_READMORE_LABEL"
				description="JFIELD_READMORE_DESC"
				size="25"
			/>

			<field
				name="article_page_title"
				type="text"
				label="COM_CONTENT_FIELD_BROWSER_PAGE_TITLE_LABEL"
				description="COM_CONTENT_FIELD_BROWSER_PAGE_TITLE_DESC"
				size="25"
			/>
		</fieldset>

		<fieldset name="editorConfig"
label="COM_CONTENT_EDITORCONFIG_FIELDSET_LABEL">
			<field
				name="show_publishing_options"
				type="list"
				label="COM_CONTENT_SHOW_PUBLISHING_OPTIONS_LABEL"
				description="COM_CONTENT_SHOW_PUBLISHING_OPTIONS_DESC"
				default=""
				useglobal="true"
				class="chzn-color"
				>
				<option value="0">JNO</option>
				<option value="1">JYES</option>
			</field>

			<field
				name="show_article_options"
				type="list"
				label="COM_CONTENT_SHOW_ARTICLE_OPTIONS_LABEL"
				description="COM_CONTENT_SHOW_ARTICLE_OPTIONS_DESC"
				default=""
				useglobal="true"
				class="chzn-color"
				>
				<option value="0">JNO</option>
				<option value="1">JYES</option>
			</field>

			<field
				name="show_urls_images_backend"
				type="list"
				label="COM_CONTENT_SHOW_IMAGES_URLS_BACK_LABEL"
				description="COM_CONTENT_SHOW_IMAGES_URLS_BACK_DESC"
				useglobal="true"
				class="chzn-color"
				default=""
				>
				<option value="0">JNO</option>
				<option value="1">JYES</option>
			</field>

			<field
				name="show_urls_images_frontend"
				type="list"
				label="COM_CONTENT_SHOW_IMAGES_URLS_FRONT_LABEL"
				description="COM_CONTENT_SHOW_IMAGES_URLS_FRONT_DESC"
				useglobal="true"
				class="chzn-color"
				default=""
				>
				<option value="0">JNO</option>
				<option value="1">JYES</option>
			</field>
		</fieldset>

		<fieldset name="basic-limited"
label="COM_CONTENT_ATTRIBS_FIELDSET_LABEL">
			<field
				name="show_title"
				type="hidden"
				label="JGLOBAL_SHOW_TITLE_LABEL"
				description="JGLOBAL_SHOW_TITLE_DESC"
			/>

			<field
				name="link_titles"
				type="hidden"
				label="JGLOBAL_LINKED_TITLES_LABEL"
				description="JGLOBAL_LINKED_TITLES_DESC"
			/>

			<field
				name="show_intro"
				type="hidden"
				label="JGLOBAL_SHOW_INTRO_LABEL"
				description="JGLOBAL_SHOW_INTRO_DESC"
			/>

			<field
				name="show_category"
				type="hidden"
				label="JGLOBAL_SHOW_CATEGORY_LABEL"
				description="JGLOBAL_SHOW_CATEGORY_DESC"
			/>

			<field
				name="link_category"
				type="hidden"
				label="JGLOBAL_LINK_CATEGORY_LABEL"
				description="JGLOBAL_LINK_CATEGORY_DESC"
			/>

			<field
				name="show_parent_category"
				type="hidden"
				label="JGLOBAL_SHOW_PARENT_CATEGORY_LABEL"
				description="JGLOBAL_SHOW_PARENT_CATEGORY_DESC"
			/>

			<field
				name="link_parent_category"
				type="hidden"
				label="JGLOBAL_LINK_PARENT_CATEGORY_LABEL"
				description="JGLOBAL_LINK_PARENT_CATEGORY_DESC"
			/>

			<field
				name="show_author"
				type="hidden"
				label="JGLOBAL_SHOW_AUTHOR_LABEL"
				description="JGLOBAL_SHOW_AUTHOR_DESC"
			/>

			<field
				name="link_author"
				type="hidden"
				label="JGLOBAL_LINK_AUTHOR_LABEL"
				description="JGLOBAL_LINK_AUTHOR_DESC"
			/>

			<field
				name="show_create_date"
				type="hidden"
				label="JGLOBAL_SHOW_CREATE_DATE_LABEL"
				description="JGLOBAL_SHOW_CREATE_DATE_DESC"
			/>

			<field
				name="show_modify_date"
				type="hidden"
				label="JGLOBAL_SHOW_MODIFY_DATE_LABEL"
				description="JGLOBAL_SHOW_MODIFY_DATE_DESC"
			/>

			<field
				name="show_publish_date"
				type="hidden"
				label="JGLOBAL_SHOW_PUBLISH_DATE_LABEL"
				description="JGLOBAL_SHOW_PUBLISH_DATE_DESC"
			/>

			<field
				name="show_item_navigation"
				type="hidden"
				label="JGLOBAL_SHOW_NAVIGATION_LABEL"
				description="JGLOBAL_SHOW_NAVIGATION_DESC"
			/>

			<field
				name="show_icons"
				type="hidden"
				label="JGLOBAL_SHOW_ICONS_LABEL"
				description="JGLOBAL_SHOW_ICONS_DESC"
			/>

			<field
				name="show_print_icon"
				type="hidden"
				label="JGLOBAL_SHOW_PRINT_ICON_LABEL"
				description="JGLOBAL_SHOW_PRINT_ICON_DESC"
			/>

			<field
				name="show_email_icon"
				type="hidden"
				label="JGLOBAL_SHOW_EMAIL_ICON_LABEL"
				description="JGLOBAL_SHOW_EMAIL_ICON_DESC"
			/>

			<field
				name="show_vote"
				type="hidden"
				label="JGLOBAL_SHOW_VOTE_LABEL"
				description="JGLOBAL_SHOW_VOTE_DESC"
			/>

			<field
				name="show_hits"
				type="hidden"
				label="JGLOBAL_SHOW_HITS_LABEL"
				description="JGLOBAL_SHOW_HITS_DESC"
			/>

			<field
				name="show_noauth"
				type="hidden"
				label="JGLOBAL_SHOW_UNAUTH_LINKS_LABEL"
				description="JGLOBAL_SHOW_UNAUTH_LINKS_DESC"
			/>

			<field
				name="alternative_readmore"
				type="hidden"
				label="JFIELD_READMORE_LABEL"
				description="JFIELD_READMORE_DESC"
				size="25"
			/>

			<field
				name="article_layout"
				type="hidden"
				label="JFIELD_ALT_LAYOUT_LABEL"
				description="JFIELD_ALT_COMPONENT_LAYOUT_DESC"
				useglobal="true"
				extension="com_content" view="article"
			/>
		</fieldset>
	</fields>

	<field
		name="xreference"
		type="text"
		label="JFIELD_KEY_REFERENCE_LABEL"
		description="JFIELD_KEY_REFERENCE_DESC"
		size="20"
	/>

	<fields name="images"
label="COM_CONTENT_FIELD_IMAGE_OPTIONS">
		<field
			name="image_intro"
			type="media"
			label="COM_CONTENT_FIELD_INTRO_LABEL"
			description="COM_CONTENT_FIELD_INTRO_DESC"
		/>

		<field
			name="float_intro"
			type="list"
			label="COM_CONTENT_FLOAT_LABEL"
			description="COM_CONTENT_FLOAT_DESC"
			useglobal="true"
			>
			<option value="right">COM_CONTENT_RIGHT</option>
			<option value="left">COM_CONTENT_LEFT</option>
			<option value="none">COM_CONTENT_NONE</option>
		</field>

		<field
			name="image_intro_alt"
			type="text"
			label="COM_CONTENT_FIELD_IMAGE_ALT_LABEL"
			description="COM_CONTENT_FIELD_IMAGE_ALT_DESC"
			size="20"
		/>

		<field
			name="image_intro_caption"
			type="text"
			label="COM_CONTENT_FIELD_IMAGE_CAPTION_LABEL"
			description="COM_CONTENT_FIELD_IMAGE_CAPTION_DESC"
			size="20"
		/>

		<field
			name="spacer1"
			type="spacer"
			hr="true"
		/>

		<field
			name="image_fulltext"
			type="media"
			label="COM_CONTENT_FIELD_FULL_LABEL"
			description="COM_CONTENT_FIELD_FULL_DESC"
		/>

		<field
			name="float_fulltext"
			type="list"
			label="COM_CONTENT_FLOAT_LABEL"
			description="COM_CONTENT_FLOAT_DESC"
			useglobal="true"
			>
			<option value="right">COM_CONTENT_RIGHT</option>
			<option value="left">COM_CONTENT_LEFT</option>
			<option value="none">COM_CONTENT_NONE</option>
		</field>

		<field
			name="image_fulltext_alt"
			type="text"
			label="COM_CONTENT_FIELD_IMAGE_ALT_LABEL"
			description="COM_CONTENT_FIELD_IMAGE_ALT_DESC"
			size="20"
		/>

		<field
			name="image_fulltext_caption"
			type="text"
			label="COM_CONTENT_FIELD_IMAGE_CAPTION_LABEL"
			description="COM_CONTENT_FIELD_IMAGE_CAPTION_DESC"
			size="20"
		/>
	</fields>
	<fields name="urls"
label="COM_CONTENT_FIELD_URLS_OPTIONS">
		<field
			name="urla"
			type="url"
			label="COM_CONTENT_FIELD_URLA_LABEL"
			description="COM_CONTENT_FIELD_URL_DESC"
			validate="url"
			filter="url"
			relative="true"
		/>

		<field
			name="urlatext"
			type="text"
			label="COM_CONTENT_FIELD_URLA_LINK_TEXT_LABEL"
			description="COM_CONTENT_FIELD_URL_LINK_TEXT_DESC"
			size="20"
		/>

		<field
			name="targeta"
			type="list"
			label="COM_CONTENT_URL_FIELD_BROWSERNAV_LABEL"
			description="COM_CONTENT_URL_FIELD_BROWSERNAV_DESC"
			default=""
			filter="options"
			useglobal="true"
			>
			<option value="0">JBROWSERTARGET_PARENT</option>
			<option value="1">JBROWSERTARGET_NEW</option>
			<option value="2">JBROWSERTARGET_POPUP</option>
			<option value="3">JBROWSERTARGET_MODAL</option>
		</field>

		<field
			name="spacer3"
			type="spacer"
			hr="true"
		/>

		<field
			name="urlb"
			type="url"
			label="COM_CONTENT_FIELD_URLB_LABEL"
			description="COM_CONTENT_FIELD_URL_DESC"
			validate="url"
			filter="url"
			relative="true"
		/>

		<field
			name="urlbtext"
			type="text"
			label="COM_CONTENT_FIELD_URLB_LINK_TEXT_LABEL"
			description="COM_CONTENT_FIELD_URL_LINK_TEXT_DESC"
			size="20"
		/>

		<field
			name="targetb"
			type="list"
			label="COM_CONTENT_URL_FIELD_BROWSERNAV_LABEL"
			description="COM_CONTENT_URL_FIELD_BROWSERNAV_DESC"
			default=""
			filter="options"
			useglobal="true"
			>
			<option value="0">JBROWSERTARGET_PARENT</option>
			<option value="1">JBROWSERTARGET_NEW</option>
			<option value="2">JBROWSERTARGET_POPUP</option>
			<option value="3">JBROWSERTARGET_MODAL</option>
		</field>

		<field
			name="spacer4"
			type="spacer"
			hr="true"
		/>

		<field
			name="urlc"
			type="url"
			label="COM_CONTENT_FIELD_URLC_LABEL"
			description="COM_CONTENT_FIELD_URL_DESC"
			validate="url"
			filter="url"
			relative="true"
		/>

		<field
			name="urlctext"
			type="text"
			label="COM_CONTENT_FIELD_URLC_LINK_TEXT_LABEL"
			description="COM_CONTENT_FIELD_URL_LINK_TEXT_DESC"
			size="20"
		/>

		<field
			name="targetc"
			type="list"
			label="COM_CONTENT_URL_FIELD_BROWSERNAV_LABEL"
			description="COM_CONTENT_URL_FIELD_BROWSERNAV_DESC"
			default=""
			filter="options"
			useglobal="true"
			>
			<option value="0">JBROWSERTARGET_PARENT</option>
			<option value="1">JBROWSERTARGET_NEW</option>
			<option value="2">JBROWSERTARGET_POPUP</option>
			<option value="3">JBROWSERTARGET_MODAL</option>
		</field>

	</fields>

	<fields name="metadata"
label="JGLOBAL_FIELDSET_METADATA_OPTIONS">
		<fieldset name="jmetadata"
			label="JGLOBAL_FIELDSET_METADATA_OPTIONS">

			<field
				name="robots"
				type="list"
				label="JFIELD_METADATA_ROBOTS_LABEL"
				description="JFIELD_METADATA_ROBOTS_DESC"
				>
				<option value="">JGLOBAL_USE_GLOBAL</option>
				<option value="index, follow"></option>
				<option value="noindex, follow"></option>
				<option value="index, nofollow"></option>
				<option value="noindex, nofollow"></option>
			</field>

			<field
				name="author"
				type="text"
				label="JAUTHOR"
				description="JFIELD_METADATA_AUTHOR_DESC"
				size="20"
			/>

			<field
				name="rights"
				type="textarea"
				label="JFIELD_META_RIGHTS_LABEL"
				description="JFIELD_META_RIGHTS_DESC"
				filter="string"
				cols="30"
				rows="2"
			/>

			<field
				name="xreference"
				type="text"
				label="COM_CONTENT_FIELD_XREFERENCE_LABEL"
				description="COM_CONTENT_FIELD_XREFERENCE_DESC"
				size="20"
			/>

		</fieldset>
	</fields>
	<!-- These fields are used to get labels for the Content History
Preview and Compare Views -->
	<fields>
		<field
			name="introtext"
			label="COM_CONTENT_FIELD_INTROTEXT"
		/>

		<field
			name="fulltext"
			label="COM_CONTENT_FIELD_FULLTEXT"
		/>
	</fields>

</form>
models/forms/filter_articles.xml000064400000011366151163734370013073
0ustar00<?xml version="1.0" encoding="utf-8"?>
<form>
	<fields name="filter">
		<field
			name="search"
			type="text"
			inputmode="search"
			label="COM_CONTENT_FILTER_SEARCH_LABEL"
			description="COM_CONTENT_FILTER_SEARCH_DESC"
			hint="JSEARCH_FILTER"
		/>

		<field
			name="published"
			type="status"
			label="COM_CONTENT_FILTER_PUBLISHED"
			description="COM_CONTENT_FILTER_PUBLISHED_DESC"
			onchange="this.form.submit();"
			>
			<option value="">JOPTION_SELECT_PUBLISHED</option>
		</field>

		<field
			name="category_id"
			type="category"
			label="JOPTION_FILTER_CATEGORY"
			description="JOPTION_FILTER_CATEGORY_DESC"
			multiple="true"
			class="multipleCategories"
			extension="com_content"
			onchange="this.form.submit();"
			published="0,1,2"
		/>

		<field
			name="access"
			type="accesslevel"
			label="JOPTION_FILTER_ACCESS"
			description="JOPTION_FILTER_ACCESS_DESC"
			multiple="true"
			class="multipleAccessLevels"
			onchange="this.form.submit();"
		/>

		<field
			name="author_id"
			type="author"
			label="COM_CONTENT_FILTER_AUTHOR"
			description="COM_CONTENT_FILTER_AUTHOR_DESC"
			multiple="true"
			class="multipleAuthors"
			onchange="this.form.submit();"
			>
			<option value="0">JNONE</option>
		</field>

		<field
			name="language"
			type="contentlanguage"
			label="JOPTION_FILTER_LANGUAGE"
			description="JOPTION_FILTER_LANGUAGE_DESC"
			onchange="this.form.submit();"
			>
			<option value="">JOPTION_SELECT_LANGUAGE</option>
			<option value="*">JALL</option>
		</field>

		<field
			name="tag"
			type="tag"
			label="JOPTION_FILTER_TAG"
			description="JOPTION_FILTER_TAG_DESC"
			multiple="true"
			class="multipleTags"
			mode="nested"
			onchange="this.form.submit();"
		/>

		<field
			name="level"
			type="integer"
			label="JOPTION_FILTER_LEVEL"
			description="JOPTION_FILTER_LEVEL_DESC"
			first="1"
			last="10"
			step="1"
			languages="*"
			onchange="this.form.submit();"
			>
			<option
value="">JOPTION_SELECT_MAX_LEVELS</option>
			</field>
		<input type="hidden" name="form_submited"
value="1"/>
	</fields>

	<fields name="list">
		<field
			name="fullordering"
			type="list"
			label="COM_CONTENT_LIST_FULL_ORDERING"
			description="COM_CONTENT_LIST_FULL_ORDERING_DESC"
			onchange="this.form.submit();"
			default="a.id DESC"
			validate="options"
			>
			<option value="">JGLOBAL_SORT_BY</option>
			<option value="a.ordering
ASC">JGRID_HEADING_ORDERING_ASC</option>
			<option value="a.ordering
DESC">JGRID_HEADING_ORDERING_DESC</option>
			<option value="a.state ASC">JSTATUS_ASC</option>
			<option value="a.state DESC">JSTATUS_DESC</option>
			<option value="a.featured
ASC">JFEATURED_ASC</option>
			<option value="a.featured
DESC">JFEATURED_DESC</option>
			<option value="a.title
ASC">JGLOBAL_TITLE_ASC</option>
			<option value="a.title
DESC">JGLOBAL_TITLE_DESC</option>
			<option value="category_title
ASC">JCATEGORY_ASC</option>
			<option value="category_title
DESC">JCATEGORY_DESC</option>
			<option value="a.access
ASC">JGRID_HEADING_ACCESS_ASC</option>
			<option value="a.access
DESC">JGRID_HEADING_ACCESS_DESC</option>
			<option value="association ASC"
requires="associations">JASSOCIATIONS_ASC</option>
			<option value="association DESC"
requires="associations">JASSOCIATIONS_DESC</option>
			<option value="a.created_by
ASC">JAUTHOR_ASC</option>
			<option value="a.created_by
DESC">JAUTHOR_DESC</option>
			<option value="language
ASC">JGRID_HEADING_LANGUAGE_ASC</option>
			<option value="language
DESC">JGRID_HEADING_LANGUAGE_DESC</option>
			<option value="a.created ASC">JDATE_ASC</option>
			<option value="a.created DESC">JDATE_DESC</option>
			<option value="a.modified
ASC">COM_CONTENT_MODIFIED_ASC</option>
			<option value="a.modified
DESC">COM_CONTENT_MODIFIED_DESC</option>
			<option value="a.publish_up
ASC">COM_CONTENT_PUBLISH_UP_ASC</option>
			<option value="a.publish_up
DESC">COM_CONTENT_PUBLISH_UP_DESC</option>
			<option value="a.publish_down
ASC">COM_CONTENT_PUBLISH_DOWN_ASC</option>
			<option value="a.publish_down
DESC">COM_CONTENT_PUBLISH_DOWN_DESC</option>
			<option value="a.hits
ASC">JGLOBAL_HITS_ASC</option>
			<option value="a.hits
DESC">JGLOBAL_HITS_DESC</option>
			<option value="rating_count ASC"
requires="vote">JGLOBAL_VOTES_ASC</option>
			<option value="rating_count DESC"
requires="vote">JGLOBAL_VOTES_DESC</option>
			<option value="rating ASC"
requires="vote">JGLOBAL_RATINGS_ASC</option>
			<option value="rating DESC"
requires="vote">JGLOBAL_RATINGS_DESC</option>
			<option value="a.id
ASC">JGRID_HEADING_ID_ASC</option>
			<option value="a.id
DESC">JGRID_HEADING_ID_DESC</option>
		</field>

		<field
			name="limit"
			type="limitbox"
			label="COM_CONTENT_LIST_LIMIT"
			description="COM_CONTENT_LIST_LIMIT_DESC"
			class="input-mini"
			default="25"
			onchange="this.form.submit();"
		/>
	</fields>
</form>
models/forms/filter_featured.xml000064400000010400151163734370013050
0ustar00<?xml version="1.0" encoding="utf-8"?>
<form>
	<fields name="filter">
		<field
			name="search"
			type="text"
			inputmode="search"
			label="COM_CONTENT_FILTER_SEARCH_LABEL"
			description="COM_CONTENT_FILTER_SEARCH_DESC"
			hint="JSEARCH_FILTER"
		/>

		<field
			name="published"
			type="status"
			label="COM_CONTENT_FILTER_PUBLISHED"
			description="COM_CONTENT_FILTER_PUBLISHED_DESC"
			onchange="this.form.submit();"
			>
			<option value="">JOPTION_SELECT_PUBLISHED</option>
		</field>

		<field
			name="category_id"
			type="category"
			label="JOPTION_FILTER_CATEGORY"
			description="JOPTION_FILTER_CATEGORY_DESC"
			multiple="true"
			class="multipleCategories"
			extension="com_content"
			onchange="this.form.submit();"
		/>

		<field
			name="level"
			type="integer"
			label="JOPTION_FILTER_LEVEL"
			description="JOPTION_FILTER_LEVEL_DESC"
			first="1"
			last="10"
			step="1"
			languages="*"
			onchange="this.form.submit();"
			>
			<option
value="">JOPTION_SELECT_MAX_LEVELS</option>
		</field>

		<field
			name="access"
			type="accesslevel"
			label="JOPTION_FILTER_ACCESS"
			description="JOPTION_FILTER_ACCESS_DESC"
			multiple="true"
			class="multipleAccessLevels"
			onchange="this.form.submit();"
		/>

		<field
			name="author_id"
			type="author"
			label="COM_CONTENT_FILTER_AUTHOR"
			description="COM_CONTENT_FILTER_AUTHOR_DESC"
			multiple="true"
			class="multipleAuthors"
			onchange="this.form.submit();"
			>
			<option value="0">JNONE</option>
		</field>

		<field
			name="language"
			type="contentlanguage"
			label="JOPTION_FILTER_LANGUAGE"
			description="JOPTION_FILTER_LANGUAGE_DESC"
			onchange="this.form.submit();"
			>
			<option value="">JOPTION_SELECT_LANGUAGE</option>
			<option value="*">JALL</option>
		</field>

		<field
			name="tag"
			type="tag"
			label="JOPTION_FILTER_TAG"
			description="JOPTION_FILTER_TAG_DESC"
			multiple="true"
			class="multipleTags"
			mode="nested"
			onchange="this.form.submit();"
		/>
	</fields>

	<fields name="list">
		<field
			name="fullordering"
			type="list"
			label="COM_CONTENT_LIST_FULL_ORDERING"
			description="COM_CONTENT_LIST_FULL_ORDERING_DESC"
			onchange="this.form.submit();"
			default="a.title ASC"
			validate="options"
			>
			<option value="">JGLOBAL_SORT_BY</option>
			<option value="fp.ordering
ASC">JGRID_HEADING_ORDERING_ASC</option>
			<option value="fp.ordering
DESC">JGRID_HEADING_ORDERING_DESC</option>
			<option value="a.state ASC">JSTATUS_ASC</option>
			<option value="a.state DESC">JSTATUS_DESC</option>
			<option value="a.title
ASC">JGLOBAL_TITLE_ASC</option>
			<option value="a.title
DESC">JGLOBAL_TITLE_DESC</option>
			<option value="category_title
ASC">JCATEGORY_ASC</option>
			<option value="category_title
DESC">JCATEGORY_DESC</option>
			<option value="a.access
ASC">JGRID_HEADING_ACCESS_ASC</option>
			<option value="a.access
DESC">JGRID_HEADING_ACCESS_DESC</option>
			<option value="a.created_by
ASC">JAUTHOR_ASC</option>
			<option value="a.created_by
DESC">JAUTHOR_DESC</option>
			<option value="a.publish_up
ASC">COM_CONTENT_PUBLISH_UP_ASC</option>
			<option value="a.publish_up
DESC">COM_CONTENT_PUBLISH_UP_DESC</option>
			<option value="a.publish_down
ASC">COM_CONTENT_PUBLISH_DOWN_ASC</option>
			<option value="a.publish_down
DESC">COM_CONTENT_PUBLISH_DOWN_DESC</option>
			<option value="language
ASC">JGRID_HEADING_LANGUAGE_ASC</option>
			<option value="language
DESC">JGRID_HEADING_LANGUAGE_DESC</option>
			<option value="a.created ASC">JDATE_ASC</option>
			<option value="a.created DESC">JDATE_DESC</option>
			<option value="a.hits
ASC">JGLOBAL_HITS_ASC</option>
			<option value="a.hits
DESC">JGLOBAL_HITS_DESC</option>
			<option value="rating_count ASC"
requires="vote">JGLOBAL_VOTES_ASC</option>
			<option value="rating_count DESC"
requires="vote">JGLOBAL_VOTES_DESC</option>
			<option value="rating ASC"
requires="vote">JGLOBAL_RATINGS_ASC</option>
			<option value="rating DESC"
requires="vote">JGLOBAL_RATINGS_DESC</option>
			<option value="a.id
ASC">JGRID_HEADING_ID_ASC</option>
			<option value="a.id
DESC">JGRID_HEADING_ID_DESC</option>
		</field>

		<field
			name="limit"
			type="limitbox"
			label="COM_CONTENT_LIST_LIMIT"
			description="COM_CONTENT_LIST_LIMIT_DESC"
			class="input-mini"
			default="25"
			onchange="this.form.submit();"
		/>
	</fields>
</form>
tables/featured.php000064400000001122151163734370010334 0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_content
 *
 * @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;

/**
 * Featured Table class.
 *
 * @since  1.6
 */
class ContentTableFeatured extends JTable
{
	/**
	 * Constructor
	 *
	 * @param   JDatabaseDriver  $db  Database connector object
	 *
	 * @since   1.6
	 */
	public function __construct(&$db)
	{
		parent::__construct('#__content_frontpage',
'content_id', $db);
	}
}
views/article/tmpl/edit.php000064400000013100151163734370011743
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_content
 *
 * @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;

use Joomla\Registry\Registry;

// Include the component HTML helpers.
JHtml::addIncludePath(JPATH_COMPONENT . '/helpers/html');

JHtml::_('behavior.formvalidator');
JHtml::_('behavior.keepalive');
JHtml::_('formbehavior.chosen', '#jform_catid', null,
array('disable_search_threshold' => 0 ));
JHtml::_('formbehavior.chosen', '#jform_tags', null,
array('placeholder_text_multiple' =>
JText::_('JGLOBAL_TYPE_OR_SELECT_SOME_TAGS')));
JHtml::_('formbehavior.chosen', 'select');

$this->configFieldsets  = array('editorConfig');
$this->hiddenFieldsets  = array('basic-limited');
$this->ignore_fieldsets = array('jmetadata',
'item_associations');

// Create shortcut to parameters.
$params = clone $this->state->get('params');
$params->merge(new Registry($this->item->attribs));

$app = JFactory::getApplication();
$input = $app->input;

$assoc = JLanguageAssociations::isEnabled();

JFactory::getDocument()->addScriptDeclaration('
	Joomla.submitbutton = function(task)
	{
		if (task == "article.cancel" ||
document.formvalidator.isValid(document.getElementById("item-form")))
		{
			jQuery("#permissions-sliders
select").attr("disabled", "disabled");
			' . $this->form->getField('articletext')->save()
. '
			Joomla.submitform(task, document.getElementById("item-form"));

			// @deprecated 4.0  The following js is not needed since 3.7.0.
			if (task !== "article.apply")
			{
				window.parent.jQuery("#articleEdit' . (int)
$this->item->id . 'Modal").modal("hide");
			}
		}
	};
');

// In case of modal
$isModal = $input->get('layout') == 'modal' ? true :
false;
$layout  = $isModal ? 'modal' : 'edit';
$tmpl    = $isModal || $input->get('tmpl', '',
'cmd') === 'component' ?
'&tmpl=component' : '';
?>

<form action="<?php echo
JRoute::_('index.php?option=com_content&layout=' . $layout .
$tmpl . '&id=' . (int) $this->item->id); ?>"
method="post" name="adminForm" id="item-form"
class="form-validate">

	<?php echo JLayoutHelper::render('joomla.edit.title_alias',
$this); ?>

	<div class="form-horizontal">
		<?php echo JHtml::_('bootstrap.startTabSet',
'myTab', array('active' => 'general'));
?>

		<?php echo JHtml::_('bootstrap.addTab', 'myTab',
'general', JText::_('COM_CONTENT_ARTICLE_CONTENT'));
?>
		<div class="row-fluid">
			<div class="span9">
				<fieldset class="adminform">
					<?php echo $this->form->getInput('articletext');
?>
				</fieldset>
			</div>
			<div class="span3">
				<?php echo JLayoutHelper::render('joomla.edit.global',
$this); ?>
			</div>
		</div>
		<?php echo JHtml::_('bootstrap.endTab'); ?>

		<?php // Do not show the images and links options if the edit form is
configured not to. ?>
		<?php if ($params->get('show_urls_images_backend') == 1)
: ?>
			<?php echo JHtml::_('bootstrap.addTab', 'myTab',
'images',
JText::_('COM_CONTENT_FIELDSET_URLS_AND_IMAGES')); ?>
			<div class="row-fluid form-horizontal-desktop">
				<div class="span6">
					<?php echo $this->form->renderField('images');
?>
					<?php foreach ($this->form->getGroup('images') as
$field) : ?>
						<?php echo $field->renderField(); ?>
					<?php endforeach; ?>
				</div>
				<div class="span6">
					<?php foreach ($this->form->getGroup('urls') as
$field) : ?>
						<?php echo $field->renderField(); ?>
					<?php endforeach; ?>
				</div>
			</div>
			<?php echo JHtml::_('bootstrap.endTab'); ?>
		<?php endif; ?>

		<?php $this->show_options =
$params->get('show_article_options', 1); ?>
		<?php echo JLayoutHelper::render('joomla.edit.params',
$this); ?>

		<?php // Do not show the publishing options if the edit form is
configured not to. ?>
		<?php if ($params->get('show_publishing_options', 1) ==
1) : ?>
			<?php echo JHtml::_('bootstrap.addTab', 'myTab',
'publishing',
JText::_('COM_CONTENT_FIELDSET_PUBLISHING')); ?>
			<div class="row-fluid form-horizontal-desktop">
				<div class="span6">
					<?php echo
JLayoutHelper::render('joomla.edit.publishingdata', $this); ?>
				</div>
				<div class="span6">
					<?php echo JLayoutHelper::render('joomla.edit.metadata',
$this); ?>
				</div>
			</div>
			<?php echo JHtml::_('bootstrap.endTab'); ?>
		<?php endif; ?>


		<?php if ( ! $isModal && $assoc) : ?>
			<?php echo JHtml::_('bootstrap.addTab', 'myTab',
'associations',
JText::_('JGLOBAL_FIELDSET_ASSOCIATIONS')); ?>
			<?php echo $this->loadTemplate('associations'); ?>
			<?php echo JHtml::_('bootstrap.endTab'); ?>
		<?php elseif ($isModal && $assoc) : ?>
			<div class="hidden"><?php echo
$this->loadTemplate('associations'); ?></div>
		<?php endif; ?>

		<?php if ($this->canDo->get('core.admin')) : ?>
			<?php echo JHtml::_('bootstrap.addTab', 'myTab',
'editor',
JText::_('COM_CONTENT_SLIDER_EDITOR_CONFIG')); ?>
			<?php echo
$this->form->renderFieldset('editorConfig'); ?>
			<?php echo JHtml::_('bootstrap.endTab'); ?>
		<?php endif; ?>

		<?php if ($this->canDo->get('core.admin')) : ?>
			<?php echo JHtml::_('bootstrap.addTab', 'myTab',
'permissions', JText::_('COM_CONTENT_FIELDSET_RULES'));
?>
				<?php echo $this->form->getInput('rules'); ?>
			<?php echo JHtml::_('bootstrap.endTab'); ?>
		<?php endif; ?>

		<?php echo JHtml::_('bootstrap.endTabSet'); ?>

		<input type="hidden" name="task"
value="" />
		<input type="hidden" name="return"
value="<?php echo $input->get('return', null,
'BASE64'); ?>" />
		<input type="hidden" name="forcedLanguage"
value="<?php echo $input->get('forcedLanguage',
'', 'cmd'); ?>" />
		<?php echo JHtml::_('form.token'); ?>
	</div>
</form>
views/article/tmpl/edit.xml000064400000000530151163734370011757
0ustar00<?xml version="1.0" encoding="utf-8"?>
<metadata>
	<layout title="COM_CONTENT_ARTICLE_VIEW_EDIT_TITLE">
		<message>
			<![CDATA[COM_CONTENT_ARTICLE_VIEW_EDIT_DESC]]>
		</message>
	</layout>
	<fieldset name="request">
		<fields name="request">
			<field
				name="id"
				type="hidden"
				default="0"
			/>
		</fields>
	</fieldset>
</metadata>
views/article/tmpl/edit_associations.php000064400000000525151163734400014523
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_content
 *
 * @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;

echo JLayoutHelper::render('joomla.edit.associations', $this);
views/article/tmpl/edit_metadata.php000064400000000521151163734400013600
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_content
 *
 * @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;

echo JLayoutHelper::render('joomla.edit.metadata', $this);
views/article/tmpl/modal.php000064400000002554151163734400012117
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_content
 *
 * @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::_('bootstrap.tooltip', '.hasTooltip',
array('placement' => 'bottom'));

// @deprecated 4.0 the function parameter, the inline js and the buttons
are not needed since 3.7.0.
$function  =
JFactory::getApplication()->input->getCmd('function',
'jEditArticle_' . (int) $this->item->id);

// Function to update input title when changed
JFactory::getDocument()->addScriptDeclaration('
	function jEditArticleModal() {
		if (window.parent &&
document.formvalidator.isValid(document.getElementById("item-form")))
{
			return window.parent.' . $this->escape($function) .
'(document.getElementById("jform_title").value);
		}
	}
');
?>
<button id="applyBtn" type="button"
class="hidden"
onclick="Joomla.submitbutton('article.apply');
jEditArticleModal();"></button>
<button id="saveBtn" type="button"
class="hidden"
onclick="Joomla.submitbutton('article.save');
jEditArticleModal();"></button>
<button id="closeBtn" type="button"
class="hidden"
onclick="Joomla.submitbutton('article.cancel');"></button>

<div class="container-popup">
	<?php $this->setLayout('edit'); ?>
	<?php echo $this->loadTemplate(); ?>
</div>
views/article/tmpl/modal_associations.php000064400000000525151163734400014672
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_content
 *
 * @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;

echo JLayoutHelper::render('joomla.edit.associations', $this);
views/article/tmpl/modal_metadata.php000064400000000521151163734400013747
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_content
 *
 * @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;

echo JLayoutHelper::render('joomla.edit.metadata', $this);
views/article/tmpl/pagebreak.php000064400000002633151163734400012742
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_content
 *
 * @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::_('behavior.core');
JHtml::_('behavior.polyfill', array('event'), 'lt
IE 9');
JHtml::_('script',
'com_content/admin-article-pagebreak.min.js',
array('version' => 'auto', 'relative'
=> true));

$document    = JFactory::getDocument();
$this->eName =
JFactory::getApplication()->input->getCmd('e_name',
'');
$this->eName = preg_replace('#[^A-Z0-9\-\_\[\]]#i',
'', $this->eName);

$document->setTitle(JText::_('COM_CONTENT_PAGEBREAK_DOC_TITLE'));
?>
<div class="container-popup">
	<form class="form-horizontal">

		<div class="control-group">
			<label for="title"
class="control-label"><?php echo
JText::_('COM_CONTENT_PAGEBREAK_TITLE'); ?></label>
			<div class="controls"><input type="text"
id="title" name="title" /></div>
		</div>

		<div class="control-group">
			<label for="alias"
class="control-label"><?php echo
JText::_('COM_CONTENT_PAGEBREAK_TOC'); ?></label>
			<div class="controls"><input type="text"
id="alt" name="alt" /></div>
		</div>

		<button onclick="insertPagebreak('<?php echo
$this->eName; ?>');" class="btn btn-success
pull-right">
			<?php echo JText::_('COM_CONTENT_PAGEBREAK_INSERT_BUTTON');
?>
		</button>

	</form>
</div>
views/article/view.html.php000064400000010666151163734400011767
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_content
 *
 * @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;

/**
 * View to edit an article.
 *
 * @since  1.6
 */
class ContentViewArticle extends JViewLegacy
{
	/**
	 * The JForm object
	 *
	 * @var  JForm
	 */
	protected $form;

	/**
	 * The active item
	 *
	 * @var  object
	 */
	protected $item;

	/**
	 * The model state
	 *
	 * @var  object
	 */
	protected $state;

	/**
	 * The actions the user is authorised to perform
	 *
	 * @var  JObject
	 */
	protected $canDo;

	/**
	 * Execute and display a template script.
	 *
	 * @param   string  $tpl  The name of the template file to parse;
automatically searches through the template paths.
	 *
	 * @return  mixed  A string if successful, otherwise an Error object.
	 *
	 * @since   1.6
	 */
	public function display($tpl = null)
	{
		if ($this->getLayout() == 'pagebreak')
		{
			return parent::display($tpl);
		}

		$this->form  = $this->get('Form');
		$this->item  = $this->get('Item');
		$this->state = $this->get('State');
		$this->canDo = JHelperContent::getActions('com_content',
'article', $this->item->id);

		// Check for errors.
		if (count($errors = $this->get('Errors')))
		{
			throw new Exception(implode("\n", $errors), 500);
		}

		// If we are forcing a language in modal (used for associations).
		if ($this->getLayout() === 'modal' &&
$forcedLanguage =
JFactory::getApplication()->input->get('forcedLanguage',
'', 'cmd'))
		{
			// Set the language field to the forcedLanguage and disable changing it.
			$this->form->setValue('language', null,
$forcedLanguage);
			$this->form->setFieldAttribute('language',
'readonly', 'true');

			// Only allow to select categories with All language or with the forced
language.
			$this->form->setFieldAttribute('catid',
'language', '*,' . $forcedLanguage);

			// Only allow to select tags with All language or with the forced
language.
			$this->form->setFieldAttribute('tags',
'language', '*,' . $forcedLanguage);
		}

		$this->addToolbar();

		return parent::display($tpl);
	}

	/**
	 * Add the page title and toolbar.
	 *
	 * @return  void
	 *
	 * @since   1.6
	 */
	protected function addToolbar()
	{
		JFactory::getApplication()->input->set('hidemainmenu',
true);
		$user       = JFactory::getUser();
		$userId     = $user->id;
		$isNew      = ($this->item->id == 0);
		$checkedOut = !($this->item->checked_out == 0 ||
$this->item->checked_out == $userId);

		// Built the actions for new and existing records.
		$canDo = $this->canDo;

		JToolbarHelper::title(
			JText::_('COM_CONTENT_PAGE_' . ($checkedOut ?
'VIEW_ARTICLE' : ($isNew ? 'ADD_ARTICLE' :
'EDIT_ARTICLE'))),
			'pencil-2 article-add'
		);

		// For new records, check the create permission.
		if ($isNew &&
(count($user->getAuthorisedCategories('com_content',
'core.create')) > 0))
		{
			JToolbarHelper::apply('article.apply');
			JToolbarHelper::save('article.save');
			JToolbarHelper::save2new('article.save2new');
			JToolbarHelper::cancel('article.cancel');
		}
		else
		{
			// Since it's an existing record, check the edit permission, or
fall back to edit own if the owner.
			$itemEditable = $canDo->get('core.edit') ||
($canDo->get('core.edit.own') &&
$this->item->created_by == $userId);

			// Can't save the record if it's checked out and editable
			if (!$checkedOut && $itemEditable)
			{
				JToolbarHelper::apply('article.apply');
				JToolbarHelper::save('article.save');

				// We can save this record, but check the create permission to see if
we can return to make a new one.
				if ($canDo->get('core.create'))
				{
					JToolbarHelper::save2new('article.save2new');
				}
			}

			// If checked out, we can still save
			if ($canDo->get('core.create'))
			{
				JToolbarHelper::save2copy('article.save2copy');
			}

			if (JComponentHelper::isEnabled('com_contenthistory')
&& $this->state->params->get('save_history', 0)
&& $itemEditable)
			{
				JToolbarHelper::versions('com_content.article',
$this->item->id);
			}

			if (JLanguageAssociations::isEnabled() &&
JComponentHelper::isEnabled('com_associations'))
			{
				JToolbarHelper::custom('article.editAssociations',
'contract', 'contract',
'JTOOLBAR_ASSOCIATIONS', false, false);
			}

			JToolbarHelper::cancel('article.cancel',
'JTOOLBAR_CLOSE');
		}

		JToolbarHelper::divider();
		JToolbarHelper::help('JHELP_CONTENT_ARTICLE_MANAGER_EDIT');
	}
}
views/articles/tmpl/default.php000064400000034327151163734400012635
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_content
 *
 * @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::addIncludePath(JPATH_COMPONENT . '/helpers/html');

JHtml::_('bootstrap.tooltip');
JHtml::_('behavior.multiselect');
JHtml::_('formbehavior.chosen', '.multipleTags', null,
array('placeholder_text_multiple' =>
JText::_('JOPTION_SELECT_TAG')));
JHtml::_('formbehavior.chosen', '.multipleCategories',
null, array('placeholder_text_multiple' =>
JText::_('JOPTION_SELECT_CATEGORY')));
JHtml::_('formbehavior.chosen',
'.multipleAccessLevels', null,
array('placeholder_text_multiple' =>
JText::_('JOPTION_SELECT_ACCESS')));
JHtml::_('formbehavior.chosen', '.multipleAuthors',
null, array('placeholder_text_multiple' =>
JText::_('JOPTION_SELECT_AUTHOR')));
JHtml::_('formbehavior.chosen', 'select');

$app       = JFactory::getApplication();
$user      = JFactory::getUser();
$userId    = $user->get('id');
$listOrder =
$this->escape($this->state->get('list.ordering'));
$listDirn  =
$this->escape($this->state->get('list.direction'));
$saveOrder = $listOrder == 'a.ordering';
$columns   = 10;

if (strpos($listOrder, 'publish_up') !== false)
{
	$orderingColumn = 'publish_up';
}
elseif (strpos($listOrder, 'publish_down') !== false)
{
	$orderingColumn = 'publish_down';
}
elseif (strpos($listOrder, 'modified') !== false)
{
	$orderingColumn = 'modified';
}
else
{
	$orderingColumn = 'created';
}

if ($saveOrder)
{
	$saveOrderingUrl =
'index.php?option=com_content&task=articles.saveOrderAjax&tmpl=component';
	JHtml::_('sortablelist.sortable', 'articleList',
'adminForm', strtolower($listDirn), $saveOrderingUrl);
}

$assoc = JLanguageAssociations::isEnabled();
?>

<form action="<?php echo
JRoute::_('index.php?option=com_content&view=articles');
?>" method="post" name="adminForm"
id="adminForm">
<?php if (!empty( $this->sidebar)) : ?>
	<div id="j-sidebar-container" class="span2">
		<?php echo $this->sidebar; ?>
	</div>
	<div id="j-main-container" class="span10">
<?php else : ?>
	<div id="j-main-container">
<?php endif; ?>
		<?php
		// Search tools bar
		echo JLayoutHelper::render('joomla.searchtools.default',
array('view' => $this));
		?>
		<?php if (empty($this->items)) : ?>
			<div class="alert alert-no-items">
				<?php echo JText::_('JGLOBAL_NO_MATCHING_RESULTS'); ?>
			</div>
		<?php else : ?>
			<table class="table table-striped"
id="articleList">
				<thead>
					<tr>
						<th width="1%" class="nowrap center
hidden-phone">
							<?php echo JHtml::_('searchtools.sort', '',
'a.ordering', $listDirn, $listOrder, null, 'asc',
'JGRID_HEADING_ORDERING', 'icon-menu-2'); ?>
						</th>
						<th width="1%" class="center">
							<?php echo JHtml::_('grid.checkall'); ?>
						</th>
						<th width="1%" class="nowrap center">
							<?php echo JHtml::_('searchtools.sort',
'JSTATUS', 'a.state', $listDirn, $listOrder); ?>
						</th>
						<th style="min-width:100px" class="nowrap">
							<?php echo JHtml::_('searchtools.sort',
'JGLOBAL_TITLE', 'a.title', $listDirn, $listOrder);
?>
						</th>
						<th width="10%" class="nowrap
hidden-phone">
							<?php echo JHtml::_('searchtools.sort', 
'JGRID_HEADING_ACCESS', 'a.access', $listDirn,
$listOrder); ?>
						</th>
						<?php if ($assoc) : ?>
							<?php $columns++; ?>
							<th width="5%" class="nowrap
hidden-phone">
								<?php echo JHtml::_('searchtools.sort',
'COM_CONTENT_HEADING_ASSOCIATION', 'association',
$listDirn, $listOrder); ?>
							</th>
						<?php endif; ?>
						<th width="10%" class="nowrap
hidden-phone">
							<?php echo JHtml::_('searchtools.sort', 
'JAUTHOR', 'a.created_by', $listDirn, $listOrder);
?>
						</th>
						<th width="10%" class="nowrap
hidden-phone">
							<?php echo JHtml::_('searchtools.sort',
'JGRID_HEADING_LANGUAGE', 'language', $listDirn,
$listOrder); ?>
						</th>
						<th width="10%" class="nowrap
hidden-phone">
							<?php echo JHtml::_('searchtools.sort',
'COM_CONTENT_HEADING_DATE_' . strtoupper($orderingColumn),
'a.' . $orderingColumn, $listDirn, $listOrder); ?>
						</th>
						<th width="1%" class="nowrap hidden-phone">
							<?php echo JHtml::_('searchtools.sort',
'JGLOBAL_HITS', 'a.hits', $listDirn, $listOrder); ?>
						</th>
						<?php if ($this->vote) : ?>
							<?php $columns++; ?>
							<th width="1%" class="nowrap
hidden-phone">
								<?php echo JHtml::_('searchtools.sort',
'JGLOBAL_VOTES', 'rating_count', $listDirn,
$listOrder); ?>
							</th>
							<?php $columns++; ?>
							<th width="1%" class="nowrap
hidden-phone">
								<?php echo JHtml::_('searchtools.sort',
'JGLOBAL_RATINGS', 'rating', $listDirn, $listOrder);
?>
							</th>
						<?php endif; ?>
						<th width="1%" class="nowrap hidden-phone">
							<?php echo JHtml::_('searchtools.sort',
'JGRID_HEADING_ID', 'a.id', $listDirn, $listOrder);
?>
						</th>
					</tr>
				</thead>
				<tfoot>
					<tr>
						<td colspan="<?php echo $columns; ?>">
						</td>
					</tr>
				</tfoot>
				<tbody>
				<?php foreach ($this->items as $i => $item) :
					$item->max_ordering = 0;
					$ordering   = ($listOrder == 'a.ordering');
					$canCreate  = $user->authorise('core.create',    
'com_content.category.' . $item->catid);
					$canEdit    = $user->authorise('core.edit',      
'com_content.article.' . $item->id);
					$canCheckin = $user->authorise('core.manage',    
'com_checkin') || $item->checked_out == $userId ||
$item->checked_out == 0;
					$canEditOwn = $user->authorise('core.edit.own',  
'com_content.article.' . $item->id) &&
$item->created_by == $userId;
					$canChange  = $user->authorise('core.edit.state',
'com_content.article.' . $item->id) && $canCheckin;
					$canEditCat    = $user->authorise('core.edit',      
'com_content.category.' . $item->catid);
					$canEditOwnCat = $user->authorise('core.edit.own',  
'com_content.category.' . $item->catid) &&
$item->category_uid == $userId;
					$canEditParCat    = $user->authorise('core.edit',      
'com_content.category.' . $item->parent_category_id);
					$canEditOwnParCat = $user->authorise('core.edit.own',  
'com_content.category.' . $item->parent_category_id)
&& $item->parent_category_uid == $userId;
					?>
					<tr class="row<?php echo $i % 2; ?>"
sortable-group-id="<?php echo $item->catid; ?>">
						<td class="order nowrap center hidden-phone">
							<?php
							$iconClass = '';
							if (!$canChange)
							{
								$iconClass = ' inactive';
							}
							elseif (!$saveOrder)
							{
								$iconClass = ' inactive tip-top hasTooltip"
title="' . JHtml::_('tooltipText',
'JORDERINGDISABLED');
							}
							?>
							<span class="sortable-handler<?php echo $iconClass
?>">
								<span class="icon-menu"
aria-hidden="true"></span>
							</span>
							<?php if ($canChange && $saveOrder) : ?>
								<input type="text" style="display:none"
name="order[]" size="5" value="<?php echo
$item->ordering; ?>" class="width-20 text-area-order"
/>
							<?php endif; ?>
						</td>
						<td class="center">
							<?php echo JHtml::_('grid.id', $i, $item->id); ?>
						</td>
						<td class="center">
							<div class="btn-group">
								<?php echo JHtml::_('jgrid.published',
$item->state, $i, 'articles.', $canChange, 'cb',
$item->publish_up, $item->publish_down); ?>
								<?php echo JHtml::_('contentadministrator.featured',
$item->featured, $i, $canChange); ?>
								<?php // Create dropdown items and render the dropdown list.
								if ($canChange)
								{
									JHtml::_('actionsdropdown.' . ((int) $item->state ===
2 ? 'un' : '') . 'archive', 'cb' .
$i, 'articles');
									JHtml::_('actionsdropdown.' . ((int) $item->state ===
-2 ? 'un' : '') . 'trash', 'cb' .
$i, 'articles');
									echo JHtml::_('actionsdropdown.render',
$this->escape($item->title));
								}
								?>
							</div>
						</td>
						<td class="has-context">
							<div class="pull-left break-word">
								<?php if ($item->checked_out) : ?>
									<?php echo JHtml::_('jgrid.checkedout', $i,
$item->editor, $item->checked_out_time, 'articles.',
$canCheckin); ?>
								<?php endif; ?>
								<?php if ($canEdit || $canEditOwn) : ?>
									<a class="hasTooltip" href="<?php echo
JRoute::_('index.php?option=com_content&task=article.edit&id='
. $item->id); ?>" title="<?php echo
JText::_('JACTION_EDIT'); ?>">
										<?php echo $this->escape($item->title); ?></a>
								<?php else : ?>
									<span title="<?php echo
JText::sprintf('JFIELD_ALIAS_LABEL',
$this->escape($item->alias)); ?>"><?php echo
$this->escape($item->title); ?></span>
								<?php endif; ?>
								<span class="small break-word">
									<?php if (empty($item->note)) : ?>
										<?php echo JText::sprintf('JGLOBAL_LIST_ALIAS',
$this->escape($item->alias)); ?>
									<?php else : ?>
										<?php echo JText::sprintf('JGLOBAL_LIST_ALIAS_NOTE',
$this->escape($item->alias), $this->escape($item->note)); ?>
									<?php endif; ?>
								</span>
								<div class="small">
									<?php
									$ParentCatUrl =
JRoute::_('index.php?option=com_categories&task=category.edit&id='
. $item->parent_category_id . '&extension=com_content');
									$CurrentCatUrl =
JRoute::_('index.php?option=com_categories&task=category.edit&id='
. $item->catid . '&extension=com_content');
									$EditCatTxt = JText::_('COM_CONTENT_EDIT_CATEGORY');

										echo JText::_('JCATEGORY') . ': ';

										if ($item->category_level != '1') :
											if ($item->parent_category_level != '1') :
												echo ' &#187; ';
											endif;
										endif;

										if (JFactory::getLanguage()->isRtl())
										{
											if ($canEditCat || $canEditOwnCat) :
												echo '<a class="hasTooltip" href="'
. $CurrentCatUrl . '" title="' . $EditCatTxt .
'">';
											endif;
											echo $this->escape($item->category_title);
											if ($canEditCat || $canEditOwnCat) :
												echo '</a>';
											endif;

											if ($item->category_level != '1') :
												echo ' &#171; ';
												if ($canEditParCat || $canEditOwnParCat) :
													echo '<a class="hasTooltip"
href="' . $ParentCatUrl . '" title="' .
$EditCatTxt . '">';
												endif;
												echo $this->escape($item->parent_category_title);
												if ($canEditParCat || $canEditOwnParCat) :
													echo '</a>';
												endif;
											endif;
										}
										else
										{
											if ($item->category_level != '1') :
												if ($canEditParCat || $canEditOwnParCat) :
													echo '<a class="hasTooltip"
href="' . $ParentCatUrl . '" title="' .
$EditCatTxt . '">';
												endif;
												echo $this->escape($item->parent_category_title);
												if ($canEditParCat || $canEditOwnParCat) :
													echo '</a>';
												endif;
												echo ' &#187; ';
											endif;
											if ($canEditCat || $canEditOwnCat) :
												echo '<a class="hasTooltip" href="'
. $CurrentCatUrl . '" title="' . $EditCatTxt .
'">';
											endif;
											echo $this->escape($item->category_title);
											if ($canEditCat || $canEditOwnCat) :
												echo '</a>';
											endif;
										}
									?>
								</div>
							</div>
						</td>
						<td class="small hidden-phone">
							<?php echo $this->escape($item->access_level); ?>
						</td>
						<?php if ($assoc) : ?>
						<td class="hidden-phone">
							<?php if ($item->association) : ?>
								<?php echo
JHtml::_('contentadministrator.association', $item->id); ?>
							<?php endif; ?>
						</td>
						<?php endif; ?>
						<td class="small hidden-phone">
							<?php if ((int) $item->created_by != 0) : ?>
								<?php if ($item->created_by_alias) : ?>
									<a class="hasTooltip" href="<?php echo
JRoute::_('index.php?option=com_users&task=user.edit&id='
. (int) $item->created_by); ?>" title="<?php echo
JText::_('JAUTHOR'); ?>">
									<?php echo $this->escape($item->author_name);
?></a>
									<div class="smallsub"><?php echo
JText::sprintf('JGLOBAL_LIST_ALIAS',
$this->escape($item->created_by_alias)); ?></div>
								<?php else : ?>
									<a class="hasTooltip" href="<?php echo
JRoute::_('index.php?option=com_users&task=user.edit&id='
. (int) $item->created_by); ?>" title="<?php echo
JText::_('JAUTHOR'); ?>">
									<?php echo $this->escape($item->author_name);
?></a>
								<?php endif; ?>
							<?php else : ?>
								<?php if ($item->created_by_alias) : ?>
									<?php echo JText::_('JNONE'); ?>
									<div class="smallsub"><?php echo
JText::sprintf('JGLOBAL_LIST_ALIAS',
$this->escape($item->created_by_alias)); ?></div>
								<?php else : ?>
									<?php echo JText::_('JNONE'); ?>
								<?php endif; ?>
							<?php endif; ?>
						</td>
						<td class="small hidden-phone">
							<?php echo
JLayoutHelper::render('joomla.content.language', $item); ?>
						</td>
						<td class="nowrap small hidden-phone">
							<?php
							$date = $item->{$orderingColumn};
							echo $date > 0 ? JHtml::_('date', $date,
JText::_('DATE_FORMAT_LC4')) : '-';
							?>
						</td>
						<td class="hidden-phone center">
							<span class="badge badge-info">
								<?php echo (int) $item->hits; ?>
							</span>
						</td>
						<?php if ($this->vote) : ?>
							<td class="hidden-phone center">
								<span class="badge badge-success" >
								<?php echo (int) $item->rating_count; ?>
								</span>
							</td>
							<td class="hidden-phone center">
								<span class="badge badge-warning" >
								<?php echo (int) $item->rating; ?>
								</span>
							</td>
						<?php endif; ?>
						<td class="hidden-phone">
							<?php echo (int) $item->id; ?>
						</td>
					</tr>
					<?php endforeach; ?>
				</tbody>
			</table>
			<?php // Load the batch processing form. ?>
			<?php if ($user->authorise('core.create',
'com_content')
				&& $user->authorise('core.edit',
'com_content')
				&& $user->authorise('core.edit.state',
'com_content')) : ?>
				<?php echo JHtml::_(
					'bootstrap.renderModal',
					'collapseModal',
					array(
						'title'  =>
JText::_('COM_CONTENT_BATCH_OPTIONS'),
						'footer' =>
$this->loadTemplate('batch_footer'),
					),
					$this->loadTemplate('batch_body')
				); ?>
			<?php endif; ?>
		<?php endif; ?>

		<?php echo $this->pagination->getListFooter(); ?>

		<input type="hidden" name="task"
value="" />
		<input type="hidden" name="boxchecked"
value="0" />
		<?php echo JHtml::_('form.token'); ?>
	</div>
</form>
views/articles/tmpl/default.xml000064400000003607151163734400012643
0ustar00<?xml version="1.0" encoding="utf-8"?>
<metadata>
	<layout title="COM_CONTENT_ARTICLES_VIEW_DEFAULT_TITLE">
		<message>
			<![CDATA[COM_CONTENT_ARTICLES_VIEW_DEFAULT_DESC]]>
		</message>
	</layout>
		<!-- Add fields to the request variables for the layout. -->
	<fields name="request">
		<fieldset name="request"
			addfieldpath="/administrator/components/com_categories/models/fields"
		>
			<field
				name="filter_category_id"
				type="modal_category"
				label="COM_MENUS_ADMIN_CATEGORY_LABEL"
				description="COM_MENUS_ADMIN_CATEGORY_DESC"
				extension="com_content"
				select="true"
				new="true"
				edit="true"
				clear="true"
				filter="integer"
			/>

			<field
				name="filter_level"
				type="integer"
				label="COM_MENUS_ADMIN_LEVEL_LABEL"
				description="COM_MENUS_ADMIN_LEVEL_DESC"
				first="1"
				last="10"
				step="1"
				languages="*"
				filter="integer"
				>
				<option
value="">JOPTION_SELECT_MAX_LEVELS</option>
			</field>

			<field
				name="filter_author_id"
				type="author"
				label="COM_MENUS_ADMIN_AUTHOR_LABEL"
				description="COM_MENUS_ADMIN_AUTHOR_DESC"
				multiple="true"
				class="multipleAuthors"
				filter="int_array"
				>
				<option value="0">JNONE</option>
			</field>

			<field
				name="filter_tag"
				type="tag"
				label="COM_MENUS_ADMIN_TAGS_LABEL"
				description="COM_MENUS_ADMIN_TAGS_DESC"
				multiple="true"
				filter="int_array"
				mode="nested"
			/>

			<field
				name="filter_access"
				type="accesslevel"
				label="COM_MENUS_ADMIN_ACCESS_LABEL"
				description="COM_MENUS_ADMIN_ACCESS_DESC"
				multiple="true"
				filter="int_array"
			/>

			<field
				name="filter_language"
				type="contentlanguage"
				label="COM_MENUS_ADMIN_LANGUAGE_LABEL"
				description="COM_MENUS_ADMIN_LANGUAGE_DESC"
				>
				<option value="">JOPTION_SELECT_LANGUAGE</option>
				<option value="*">JALL</option>
			</field>

		</fieldset>
	</fields>

</metadata>
views/articles/tmpl/default_batch_body.php000064400000001762151163734400015010
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_content
 *
 * @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;
$published = (int) $this->state->get('filter.published');
?>

<div class="container-fluid">
	<div class="row-fluid">
		<div class="control-group span6">
			<div class="controls">
				<?php echo JHtml::_('batch.language'); ?>
			</div>
		</div>
		<div class="control-group span6">
			<div class="controls">
				<?php echo JHtml::_('batch.access'); ?>
			</div>
		</div>
	</div>
	<div class="row-fluid">
		<?php if ($published >= 0) : ?>
			<div class="control-group span6">
				<div class="controls">
					<?php echo JHtml::_('batch.item',
'com_content'); ?>
				</div>
			</div>
		<?php endif; ?>
		<div class="control-group span6">
			<div class="controls">
				<?php echo JHtml::_('batch.tag'); ?>
			</div>
		</div>
	</div>
</div>
views/articles/tmpl/default_batch_footer.php000064400000001460151163734400015344
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_content
 *
 * @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;

?>
<button type="button" class="btn"
onclick="document.getElementById('batch-category-id').value='';document.getElementById('batch-access').value='';document.getElementById('batch-language-id').value='';document.getElementById('batch-user-id').value='';document.getElementById('batch-tag-id').value=''"
data-dismiss="modal">
	<?php echo JText::_('JCANCEL'); ?>
</button>
<button type="submit" class="btn btn-success"
onclick="Joomla.submitbutton('article.batch');return
false;">
	<?php echo JText::_('JGLOBAL_BATCH_PROCESS'); ?>
</button>
views/articles/tmpl/modal.php000064400000015273151163734400012304
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_content
 *
 * @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;

$app = JFactory::getApplication();

if ($app->isClient('site'))
{
	JSession::checkToken('get') or
die(JText::_('JINVALID_TOKEN'));
}

JLoader::register('ContentHelperRoute', JPATH_ROOT .
'/components/com_content/helpers/route.php');

// Include the component HTML helpers.
JHtml::addIncludePath(JPATH_COMPONENT . '/helpers/html');

JHtml::_('behavior.core');
JHtml::_('behavior.polyfill', array('event'), 'lt
IE 9');
JHtml::_('script',
'com_content/admin-articles-modal.min.js',
array('version' => 'auto', 'relative'
=> true));
JHtml::_('bootstrap.tooltip', '.hasTooltip',
array('placement' => 'bottom'));
JHtml::_('bootstrap.popover', '.hasPopover',
array('placement' => 'bottom'));
JHtml::_('behavior.multiselect');
JHtml::_('formbehavior.chosen', '.multipleTags', null,
array('placeholder_text_multiple' =>
JText::_('JOPTION_SELECT_TAG')));
JHtml::_('formbehavior.chosen', '.multipleCategories',
null, array('placeholder_text_multiple' =>
JText::_('JOPTION_SELECT_CATEGORY')));
JHtml::_('formbehavior.chosen',
'.multipleAccessLevels', null,
array('placeholder_text_multiple' =>
JText::_('JOPTION_SELECT_ACCESS')));
JHtml::_('formbehavior.chosen', '.multipleAuthors',
null, array('placeholder_text_multiple' =>
JText::_('JOPTION_SELECT_AUTHOR')));
JHtml::_('formbehavior.chosen', 'select');

// Special case for the search field tooltip.
$searchFilterDesc =
$this->filterForm->getFieldAttribute('search',
'description', null, 'filter');
JHtml::_('bootstrap.tooltip', '#filter_search',
array('title' => JText::_($searchFilterDesc),
'placement' => 'bottom'));

$function  = $app->input->getCmd('function',
'jSelectArticle');
$editor    = $app->input->getCmd('editor', '');
$listOrder =
$this->escape($this->state->get('list.ordering'));
$listDirn  =
$this->escape($this->state->get('list.direction'));
$onclick   = $this->escape($function);

if (!empty($editor))
{
	// This view is used also in com_menus. Load the xtd script only if the
editor is set!
	JFactory::getDocument()->addScriptOptions('xtd-articles',
array('editor' => $editor));
	$onclick = "jSelectArticle";
}
?>
<div class="container-popup">

	<form action="<?php echo
JRoute::_('index.php?option=com_content&view=articles&layout=modal&tmpl=component&function='
. $function . '&' . JSession::getFormToken() .
'=1&editor=' . $editor); ?>" method="post"
name="adminForm" id="adminForm"
class="form-inline">

		<?php echo
JLayoutHelper::render('joomla.searchtools.default',
array('view' => $this)); ?>

		<div class="clearfix"></div>

		<?php if (empty($this->items)) : ?>
			<div class="alert alert-no-items">
				<?php echo JText::_('JGLOBAL_NO_MATCHING_RESULTS'); ?>
			</div>
		<?php else : ?>
			<table class="table table-striped table-condensed">
				<thead>
					<tr>
						<th width="1%" class="center nowrap">
							<?php echo JHtml::_('searchtools.sort',
'JSTATUS', 'a.state', $listDirn, $listOrder); ?>
						</th>
						<th class="title">
							<?php echo JHtml::_('searchtools.sort',
'JGLOBAL_TITLE', 'a.title', $listDirn, $listOrder);
?>
						</th>
						<th width="10%" class="nowrap
hidden-phone">
							<?php echo JHtml::_('searchtools.sort',
'JGRID_HEADING_ACCESS', 'a.access', $listDirn,
$listOrder); ?>
						</th>
						<th width="15%" class="nowrap">
							<?php echo JHtml::_('searchtools.sort',
'JGRID_HEADING_LANGUAGE', 'language', $listDirn,
$listOrder); ?>
						</th>
						<th width="5%" class="nowrap hidden-phone">
							<?php echo JHtml::_('searchtools.sort',
'JDATE', 'a.created', $listDirn, $listOrder); ?>
						</th>
						<th width="1%" class="nowrap hidden-phone">
						<?php echo JHtml::_('searchtools.sort',
'JGRID_HEADING_ID', 'a.id', $listDirn, $listOrder);
?>
						</th>
					</tr>
				</thead>
				<tfoot>
					<tr>
						<td colspan="6">
							<?php echo $this->pagination->getListFooter(); ?>
						</td>
					</tr>
				</tfoot>
				<tbody>
				<?php
				$iconStates = array(
					-2 => 'icon-trash',
					0  => 'icon-unpublish',
					1  => 'icon-publish',
					2  => 'icon-archive',
				);
				?>
				<?php foreach ($this->items as $i => $item) : ?>
					<?php if ($item->language &&
JLanguageMultilang::isEnabled())
					{
						$tag = strlen($item->language);
						if ($tag == 5)
						{
							$lang = substr($item->language, 0, 2);
						}
						elseif ($tag == 6)
						{
							$lang = substr($item->language, 0, 3);
						}
						else {
							$lang = '';
						}
					}
					elseif (!JLanguageMultilang::isEnabled())
					{
						$lang = '';
					}
					?>
					<tr class="row<?php echo $i % 2; ?>">
						<td class="center">
							<span class="<?php echo
$iconStates[$this->escape($item->state)]; ?>"
aria-hidden="true"></span>
						</td>
						<td>
							<?php $attribs = 'data-function="' .
$this->escape($onclick) . '"'
								. ' data-id="' . $item->id . '"'
								. ' data-title="' .
$this->escape($item->title) . '"'
								. ' data-cat-id="' .
$this->escape($item->catid) . '"'
								. ' data-uri="' .
$this->escape(ContentHelperRoute::getArticleRoute($item->id,
$item->catid, $item->language)) . '"'
								. ' data-language="' . $this->escape($lang) .
'"';
							?>
							<a class="select-link"
href="javascript:void(0)" <?php echo $attribs; ?>>
								<?php echo $this->escape($item->title); ?></a>
							<span class="small break-word">
								<?php if (empty($item->note)) : ?>
									<?php echo JText::sprintf('JGLOBAL_LIST_ALIAS',
$this->escape($item->alias)); ?>
								<?php else : ?>
									<?php echo JText::sprintf('JGLOBAL_LIST_ALIAS_NOTE',
$this->escape($item->alias), $this->escape($item->note)); ?>
								<?php endif; ?>
 							</span>
							<div class="small">
								<?php echo JText::_('JCATEGORY') . ': ' .
$this->escape($item->category_title); ?>
							</div>
						</td>
						<td class="small hidden-phone">
							<?php echo $this->escape($item->access_level); ?>
						</td>
						<td class="small">
							<?php echo
JLayoutHelper::render('joomla.content.language', $item); ?>
						</td>
						<td class="nowrap small hidden-phone">
							<?php echo JHtml::_('date', $item->created,
JText::_('DATE_FORMAT_LC4')); ?>
						</td>
						<td class="nowrap small hidden-phone">
							<?php echo (int) $item->id; ?>
						</td>
					</tr>
				<?php endforeach; ?>
				</tbody>
			</table>
		<?php endif; ?>

		<input type="hidden" name="task"
value="" />
		<input type="hidden" name="boxchecked"
value="0" />
		<input type="hidden" name="forcedLanguage"
value="<?php echo
$app->input->get('forcedLanguage', '',
'CMD'); ?>" />
		<?php echo JHtml::_('form.token'); ?>

	</form>
</div>
views/articles/view.html.php000064400000014775151163734400012157
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_content
 *
 * @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;

/**
 * View class for a list of articles.
 *
 * @since  1.6
 */
class ContentViewArticles extends JViewLegacy
{
	/**
	 * The item authors
	 *
	 * @var  stdClass
	 *
	 * @deprecated  4.0  To be removed with Hathor
	 */
	protected $authors;

	/**
	 * An array of items
	 *
	 * @var  array
	 */
	protected $items;

	/**
	 * The pagination object
	 *
	 * @var  JPagination
	 */
	protected $pagination;

	/**
	 * The model state
	 *
	 * @var  object
	 */
	protected $state;

	/**
	 * Form object for search filters
	 *
	 * @var  JForm
	 */
	public $filterForm;

	/**
	 * The active search filters
	 *
	 * @var  array
	 */
	public $activeFilters;

	/**
	 * The sidebar markup
	 *
	 * @var  string
	 */
	protected $sidebar;

	/**
	 * Display the view
	 *
	 * @param   string  $tpl  The name of the template file to parse;
automatically searches through the template paths.
	 *
	 * @return  mixed  A string if successful, otherwise an Error object.
	 */
	public function display($tpl = null)
	{
		if ($this->getLayout() !== 'modal')
		{
			ContentHelper::addSubmenu('articles');
		}

		$this->items         = $this->get('Items');
		$this->pagination    = $this->get('Pagination');
		$this->state         = $this->get('State');
		$this->authors       = $this->get('Authors');
		$this->filterForm    = $this->get('FilterForm');
		$this->activeFilters = $this->get('ActiveFilters');
		$this->vote          = JPluginHelper::isEnabled('content',
'vote');

		// Check for errors.
		if (count($errors = $this->get('Errors')))
		{
			throw new Exception(implode("\n", $errors), 500);
		}

		// Levels filter - Used in Hathor.
		// @deprecated  4.0 To be removed with Hathor
		$this->f_levels = array(
			JHtml::_('select.option', '1',
JText::_('J1')),
			JHtml::_('select.option', '2',
JText::_('J2')),
			JHtml::_('select.option', '3',
JText::_('J3')),
			JHtml::_('select.option', '4',
JText::_('J4')),
			JHtml::_('select.option', '5',
JText::_('J5')),
			JHtml::_('select.option', '6',
JText::_('J6')),
			JHtml::_('select.option', '7',
JText::_('J7')),
			JHtml::_('select.option', '8',
JText::_('J8')),
			JHtml::_('select.option', '9',
JText::_('J9')),
			JHtml::_('select.option', '10',
JText::_('J10')),
		);

		// We don't need toolbar in the modal window.
		if ($this->getLayout() !== 'modal')
		{
			$this->addToolbar();
			$this->sidebar = JHtmlSidebar::render();
		}
		else
		{
			// In article associations modal we need to remove language filter if
forcing a language.
			// We also need to change the category filter to show show categories
with All or the forced language.
			if ($forcedLanguage =
JFactory::getApplication()->input->get('forcedLanguage',
'', 'CMD'))
			{
				// If the language is forced we can't allow to select the
language, so transform the language selector filter into a hidden field.
				$languageXml = new SimpleXMLElement('<field
name="language" type="hidden" default="' .
$forcedLanguage . '" />');
				$this->filterForm->setField($languageXml, 'filter',
true);

				// Also, unset the active language filter so the search tools is not
open by default with this filter.
				unset($this->activeFilters['language']);

				// One last changes needed is to change the category filter to just
show categories with All language or with the forced language.
				$this->filterForm->setFieldAttribute('category_id',
'language', '*,' . $forcedLanguage,
'filter');
			}
		}

		return parent::display($tpl);
	}

	/**
	 * Add the page title and toolbar.
	 *
	 * @return  void
	 *
	 * @since   1.6
	 */
	protected function addToolbar()
	{
		$canDo = JHelperContent::getActions('com_content',
'category',
$this->state->get('filter.category_id'));
		$user  = JFactory::getUser();

		// Get the toolbar object instance
		$bar = JToolbar::getInstance('toolbar');

		JToolbarHelper::title(JText::_('COM_CONTENT_ARTICLES_TITLE'),
'stack article');

		if ($canDo->get('core.create') ||
count($user->getAuthorisedCategories('com_content',
'core.create')) > 0)
		{
			JToolbarHelper::addNew('article.add');
		}

		if ($canDo->get('core.edit') ||
$canDo->get('core.edit.own'))
		{
			JToolbarHelper::editList('article.edit');
		}

		if ($canDo->get('core.edit.state'))
		{
			JToolbarHelper::publish('articles.publish',
'JTOOLBAR_PUBLISH', true);
			JToolbarHelper::unpublish('articles.unpublish',
'JTOOLBAR_UNPUBLISH', true);
			JToolbarHelper::custom('articles.featured',
'featured.png', 'featured_f2.png',
'JFEATURE', true);
			JToolbarHelper::custom('articles.unfeatured',
'unfeatured.png', 'featured_f2.png',
'JUNFEATURE', true);
			JToolbarHelper::archiveList('articles.archive');
			JToolbarHelper::checkin('articles.checkin');
		}

		// Add a batch button
		if ($user->authorise('core.create', 'com_content')
			&& $user->authorise('core.edit',
'com_content')
			&& $user->authorise('core.edit.state',
'com_content'))
		{
			$title = JText::_('JTOOLBAR_BATCH');

			// Instantiate a new JLayoutFile instance and render the batch button
			$layout = new JLayoutFile('joomla.toolbar.batch');

			$dhtml = $layout->render(array('title' => $title));
			$bar->appendButton('Custom', $dhtml, 'batch');
		}

		if ($this->state->get('filter.published') == -2
&& $canDo->get('core.delete'))
		{
			JToolbarHelper::deleteList('JGLOBAL_CONFIRM_DELETE',
'articles.delete', 'JTOOLBAR_EMPTY_TRASH');
		}
		elseif ($canDo->get('core.edit.state'))
		{
			JToolbarHelper::trash('articles.trash');
		}

		if ($user->authorise('core.admin', 'com_content')
|| $user->authorise('core.options', 'com_content'))
		{
			JToolbarHelper::preferences('com_content');
		}

		JToolbarHelper::help('JHELP_CONTENT_ARTICLE_MANAGER');
	}

	/**
	 * Returns an array of fields the table can be sorted by
	 *
	 * @return  array  Array containing the field name to sort by as the key
and display text as value
	 *
	 * @since   3.0
	 */
	protected function getSortFields()
	{
		return array(
			'a.ordering'     =>
JText::_('JGRID_HEADING_ORDERING'),
			'a.state'        => JText::_('JSTATUS'),
			'a.title'        => JText::_('JGLOBAL_TITLE'),
			'category_title' => JText::_('JCATEGORY'),
			'access_level'   =>
JText::_('JGRID_HEADING_ACCESS'),
			'a.created_by'   => JText::_('JAUTHOR'),
			'language'       =>
JText::_('JGRID_HEADING_LANGUAGE'),
			'a.created'      => JText::_('JDATE'),
			'a.id'           => JText::_('JGRID_HEADING_ID'),
			'a.featured'     => JText::_('JFEATURED')
		);
	}
}
views/featured/tmpl/default.php000064400000032312151163734400012616
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_content
 *
 * @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::addIncludePath(JPATH_COMPONENT . '/helpers/html');

JHtml::_('bootstrap.tooltip');
JHtml::_('behavior.multiselect');
JHtml::_('formbehavior.chosen',
'.multipleAccessLevels', null,
array('placeholder_text_multiple' =>
JText::_('JOPTION_SELECT_ACCESS')));
JHtml::_('formbehavior.chosen', '.multipleAuthors',
null, array('placeholder_text_multiple' =>
JText::_('JOPTION_SELECT_AUTHOR')));
JHtml::_('formbehavior.chosen', '.multipleCategories',
null, array('placeholder_text_multiple' =>
JText::_('JOPTION_SELECT_CATEGORY')));
JHtml::_('formbehavior.chosen', '.multipleTags', null,
array('placeholder_text_multiple' =>
JText::_('JOPTION_SELECT_TAG')));
JHtml::_('formbehavior.chosen', 'select');

$user      = JFactory::getUser();
$userId    = $user->get('id');
$listOrder =
$this->escape($this->state->get('list.ordering'));
$listDirn  =
$this->escape($this->state->get('list.direction'));
$saveOrder = $listOrder == 'fp.ordering';
$columns   = 10;

if (strpos($listOrder, 'publish_up') !== false)
{
	$orderingColumn = 'publish_up';
}
elseif (strpos($listOrder, 'publish_down') !== false)
{
	$orderingColumn = 'publish_down';
}
else
{
	$orderingColumn = 'created';
}

if ($saveOrder)
{
	$saveOrderingUrl =
'index.php?option=com_content&task=featured.saveOrderAjax&tmpl=component';
	JHtml::_('sortablelist.sortable', 'articleList',
'adminForm', strtolower($listDirn), $saveOrderingUrl);
}
?>

<form action="<?php echo
JRoute::_('index.php?option=com_content&view=featured');
?>" method="post" name="adminForm"
id="adminForm">
	<?php if (!empty( $this->sidebar)) : ?>
	<div id="j-sidebar-container" class="span2">
		<?php echo $this->sidebar; ?>
	</div>
	<div id="j-main-container" class="span10">
		<?php else : ?>
		<div id="j-main-container">
			<?php endif; ?>
			<?php
			// Search tools bar
			echo JLayoutHelper::render('joomla.searchtools.default',
array('view' => $this));
			?>
			<?php if (empty($this->items)) : ?>
				<div class="alert alert-no-items">
					<?php echo JText::_('JGLOBAL_NO_MATCHING_RESULTS'); ?>
				</div>
			<?php else : ?>
				<table class="table table-striped"
id="articleList">
					<thead>
					<tr>
						<th width="1%" class="nowrap center
hidden-phone">
							<?php echo JHtml::_('searchtools.sort', '',
'fp.ordering', $listDirn, $listOrder, null, 'asc',
'JGRID_HEADING_ORDERING', 'icon-menu-2'); ?>
						</th>
						<th width="1%" class="center">
							<?php echo JHtml::_('grid.checkall'); ?>
						</th>
						<th width="1%" style="min-width:55px"
class="nowrap center">
							<?php echo JHtml::_('searchtools.sort',
'JSTATUS', 'a.state', $listDirn, $listOrder); ?>
						</th>
						<th>
							<?php echo JHtml::_('searchtools.sort',
'JGLOBAL_TITLE', 'a.title', $listDirn, $listOrder);
?>
						</th>
						<th width="10%" class="nowrap
hidden-phone">
							<?php echo JHtml::_('searchtools.sort',
'JGRID_HEADING_ACCESS', 'a.access', $listDirn,
$listOrder); ?>
						</th>
						<th width="10%" class="nowrap
hidden-phone">
							<?php echo JHtml::_('searchtools.sort',
'JAUTHOR', 'a.created_by', $listDirn, $listOrder);
?>
						</th>
						<th width="10%" class="nowrap
hidden-phone">
							<?php echo JHtml::_('searchtools.sort',
'JGRID_HEADING_LANGUAGE', 'language', $listDirn,
$listOrder); ?>
						</th>
						<th width="10%" class="nowrap
hidden-phone">
							<?php echo JHtml::_('searchtools.sort',
'COM_CONTENT_HEADING_DATE_' . strtoupper($orderingColumn),
'a.' . $orderingColumn, $listDirn, $listOrder); ?>
						</th>
						<th width="1%" class="nowrap hidden-phone">
							<?php echo JHtml::_('searchtools.sort',
'JGLOBAL_HITS', 'a.hits', $listDirn, $listOrder); ?>
						</th>
						<?php if ($this->vote) : ?>
							<?php $columns++; ?>
							<th width="1%" class="nowrap
hidden-phone">
								<?php echo JHtml::_('searchtools.sort',
'JGLOBAL_VOTES', 'rating_count', $listDirn,
$listOrder); ?>
							</th>
							<?php $columns++; ?>
							<th width="1%" class="nowrap
hidden-phone">
								<?php echo JHtml::_('searchtools.sort',
'JGLOBAL_RATINGS', 'rating', $listDirn, $listOrder);
?>
							</th>
						<?php endif; ?>
						<th width="1%" class="nowrap hidden-phone">
							<?php echo JHtml::_('searchtools.sort',
'JGRID_HEADING_ID', 'a.id', $listDirn, $listOrder);
?>
						</th>
					</tr>
					</thead>
					<tfoot>
					<tr>
						<td colspan="<?php echo $columns; ?>">
							<?php echo $this->pagination->getListFooter(); ?>
						</td>
					</tr>
					</tfoot>
					<tbody>
					<?php $count = count($this->items); ?>
					<?php foreach ($this->items as $i => $item) :
						$item->max_ordering = 0;
						$ordering         = ($listOrder == 'fp.ordering');
						$assetId          = 'com_content.article.' . $item->id;
						$canCreate        = $user->authorise('core.create',
'com_content.category.' . $item->catid);
						$canEdit          = $user->authorise('core.edit',
'com_content.article.' . $item->id);
						$canCheckin       = $user->authorise('core.manage',
'com_checkin') || $item->checked_out == $userId ||
$item->checked_out == 0;
						$canChange        = $user->authorise('core.edit.state',
'com_content.article.' . $item->id) && $canCheckin;
						$canEditCat       = $user->authorise('core.edit',      
'com_content.category.' . $item->catid);
						$canEditOwnCat    = $user->authorise('core.edit.own',  
'com_content.category.' . $item->catid) &&
$item->category_uid == $userId;
						$canEditParCat    = $user->authorise('core.edit',      
'com_content.category.' . $item->parent_category_id);
						$canEditOwnParCat = $user->authorise('core.edit.own',  
'com_content.category.' . $item->parent_category_id)
&& $item->parent_category_uid == $userId;
						?>
						<tr class="row<?php echo $i % 2; ?>">
							<td class="order nowrap center hidden-phone">
								<?php
								$iconClass = '';

								if (!$canChange)
								{
									$iconClass = ' inactive';
								}
								elseif (!$saveOrder)
								{
									$iconClass = ' inactive tip-top hasTooltip"
title="' . JHtml::_('tooltipText',
'JORDERINGDISABLED');
								}
								?>
								<span class="sortable-handler<?php echo $iconClass
?>">
								<span class="icon-menu"
aria-hidden="true"></span>
							</span>
								<?php if ($canChange && $saveOrder) : ?>
									<input type="text" style="display:none"
name="order[]" size="5" value="<?php echo
$item->ordering; ?>" class="width-20 text-area-order"
/>
								<?php endif; ?>
							</td>
							<td class="center">
								<?php echo JHtml::_('grid.id', $i, $item->id);
?>
							</td>
							<td class="center">
								<div class="btn-group">
									<?php echo JHtml::_('jgrid.published',
$item->state, $i, 'articles.', $canChange, 'cb',
$item->publish_up, $item->publish_down); ?>
									<?php echo JHtml::_('contentadministrator.featured',
$item->featured, $i, $canChange); ?>
									<?php // Create dropdown items and render the dropdown list.
									if ($canChange)
									{
										JHtml::_('actionsdropdown.' . ((int) $item->state
=== 2 ? 'un' : '') . 'archive',
'cb' . $i, 'articles');
										JHtml::_('actionsdropdown.' . ((int) $item->state
=== -2 ? 'un' : '') . 'trash', 'cb'
. $i, 'articles');
										echo JHtml::_('actionsdropdown.render',
$this->escape($item->title));
									}
									?>
								</div>
							</td>
							<td class="has-context">
								<div class="pull-left break-word">
									<?php if ($item->checked_out) : ?>
										<?php echo JHtml::_('jgrid.checkedout', $i,
$item->editor, $item->checked_out_time, 'articles.',
$canCheckin); ?>
									<?php endif; ?>
									<?php if ($canEdit) : ?>
										<a class="hasTooltip" href="<?php echo
JRoute::_('index.php?option=com_content&task=article.edit&return=featured&id='
. $item->id); ?>" title="<?php echo
JText::_('JACTION_EDIT'); ?>">
											<?php echo $this->escape($item->title); ?></a>
									<?php else : ?>
										<span title="<?php echo
JText::sprintf('JFIELD_ALIAS_LABEL',
$this->escape($item->alias)); ?>"><?php echo
$this->escape($item->title); ?></span>
									<?php endif; ?>
									<span class="small break-word">
									<?php if (empty($item->note)) : ?>
										<?php echo JText::sprintf('JGLOBAL_LIST_ALIAS',
$this->escape($item->alias)); ?>
									<?php else : ?>
										<?php echo JText::sprintf('JGLOBAL_LIST_ALIAS_NOTE',
$this->escape($item->alias), $this->escape($item->note)); ?>
									<?php endif; ?>
									</span>
									<div class="small">
										<?php
										$ParentCatUrl =
JRoute::_('index.php?option=com_categories&task=category.edit&id='
. $item->parent_category_id . '&extension=com_content');
										$CurrentCatUrl =
JRoute::_('index.php?option=com_categories&task=category.edit&id='
. $item->catid . '&extension=com_content');
										$EditCatTxt = JText::_('COM_CONTENT_EDIT_CATEGORY');

										echo JText::_('JCATEGORY') . ': ';

										if ($item->category_level != '1') :
											if ($item->parent_category_level != '1') :
												echo ' &#187; ';
											endif;
										endif;

										if (JFactory::getLanguage()->isRtl())
										{
											if ($canEditCat || $canEditOwnCat) :
												echo '<a class="hasTooltip" href="'
. $CurrentCatUrl . '" title="' . $EditCatTxt .
'">';
											endif;
											echo $this->escape($item->category_title);
											if ($canEditCat || $canEditOwnCat) :
												echo '</a>';
											endif;

											if ($item->category_level != '1') :
												echo ' &#171; ';
												if ($canEditParCat || $canEditOwnParCat) :
													echo '<a class="hasTooltip"
href="' . $ParentCatUrl . '" title="' .
$EditCatTxt . '">';
												endif;
												echo $this->escape($item->parent_category_title);
												if ($canEditParCat || $canEditOwnParCat) :
													echo '</a>';
												endif;
											endif;
										}
										else
										{
											if ($item->category_level != '1') :
												if ($canEditParCat || $canEditOwnParCat) :
													echo '<a class="hasTooltip"
href="' . $ParentCatUrl . '" title="' .
$EditCatTxt . '">';
												endif;
												echo $this->escape($item->parent_category_title);
												if ($canEditParCat || $canEditOwnParCat) :
													echo '</a>';
												endif;
												echo ' &#187; ';
											endif;
											if ($canEditCat || $canEditOwnCat) :
												echo '<a class="hasTooltip" href="'
. $CurrentCatUrl . '" title="' . $EditCatTxt .
'">';
											endif;
											echo $this->escape($item->category_title);
											if ($canEditCat || $canEditOwnCat) :
												echo '</a>';
											endif;
										}
										?>
									</div>
								</div>
							</td>
							<td class="small hidden-phone">
								<?php echo $this->escape($item->access_level); ?>
							</td>
							<td class="small hidden-phone">
								<?php if ((int) $item->created_by != 0) : ?>
									<?php if ($item->created_by_alias) : ?>
										<a class="hasTooltip" href="<?php echo
JRoute::_('index.php?option=com_users&task=user.edit&id='
. (int) $item->created_by); ?>" title="<?php echo
JText::_('JAUTHOR'); ?>">
										<?php echo $this->escape($item->author_name);
?></a>
										<div class="smallsub"><?php echo
JText::sprintf('JGLOBAL_LIST_ALIAS',
$this->escape($item->created_by_alias)); ?></div>
									<?php else : ?>
										<a class="hasTooltip" href="<?php echo
JRoute::_('index.php?option=com_users&task=user.edit&id='
. (int) $item->created_by); ?>" title="<?php echo
JText::_('JAUTHOR'); ?>">
										<?php echo $this->escape($item->author_name);
?></a>
									<?php endif; ?>
								<?php else : ?>
									<?php if ($item->created_by_alias) : ?>
										<?php echo JText::_('JNONE'); ?>
										<div class="smallsub"><?php echo
JText::sprintf('JGLOBAL_LIST_ALIAS',
$this->escape($item->created_by_alias)); ?></div>
									<?php else : ?>
										<?php echo JText::_('JNONE'); ?>
									<?php endif; ?>
								<?php endif; ?>
							</td>
							<td class="small hidden-phone">
								<?php echo
JLayoutHelper::render('joomla.content.language', $item); ?>
							</td>
							<td class="nowrap small hidden-phone">
								<?php
								$date = $item->{$orderingColumn};
								echo $date > 0 ? JHtml::_('date', $date,
JText::_('DATE_FORMAT_LC4')) : '-';
								?>
							</td>
							<td class="center hidden-phone">
								<span class="badge badge-info">
								<?php echo (int) $item->hits; ?>
								</span>
							</td>
							<?php if ($this->vote) : ?>
								<td class="hidden-phone">
									<span class="badge badge-success" >
									<?php echo (int) $item->rating_count; ?>
									</span>
								</td>
								<td class="hidden-phone">
									<span class="badge badge-warning" >
									<?php echo (int) $item->rating; ?>
									</span>
								</td>
							<?php endif; ?>
							<td class="center hidden-phone">
								<?php echo (int) $item->id; ?>
							</td>
						</tr>
					<?php endforeach; ?>
					</tbody>
				</table>
			<?php endif; ?>

			<input type="hidden" name="task"
value="" />
			<input type="hidden" name="featured"
value="1" />
			<input type="hidden" name="boxchecked"
value="0" />
			<?php echo JHtml::_('form.token'); ?>
		</div>
</form>
views/featured/tmpl/default.xml000064400000000322151163734400012623
0ustar00<?xml version="1.0" encoding="utf-8"?>
<metadata>
	<layout title="COM_CONTENT_FEATURED_VIEW_DEFAULT_TITLE">
		<message>
			<![CDATA[COM_CONTENT_FEATURED_VIEW_DEFAULT_DESC]]>
		</message>
	</layout>
</metadata>
views/featured/view.html.php000064400000011046151163734400012134
0ustar00<?php
/**
 * @package     Joomla.Administrator
 * @subpackage  com_content
 *
 * @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;

/**
 * View class for a list of featured articles.
 *
 * @since  1.6
 */
class ContentViewFeatured extends JViewLegacy
{
	/**
	 * The item authors
	 *
	 * @var  stdClass
	 *
	 * @deprecated  4.0  To be removed with Hathor
	 */
	protected $authors;

	/**
	 * An array of items
	 *
	 * @var  array
	 */
	protected $items;

	/**
	 * The pagination object
	 *
	 * @var  JPagination
	 */
	protected $pagination;

	/**
	 * The model state
	 *
	 * @var  object
	 */
	protected $state;

	/**
	 * Form object for search filters
	 *
	 * @var  JForm
	 */
	public $filterForm;

	/**
	 * The active search filters
	 *
	 * @var  array
	 */
	public $activeFilters;

	/**
	 * The sidebar markup
	 *
	 * @var  string
	 */
	protected $sidebar;

	/**
	 * Display the view
	 *
	 * @param   string  $tpl  The name of the template file to parse;
automatically searches through the template paths.
	 *
	 * @return  mixed  A string if successful, otherwise an Error object.
	 */
	public function display($tpl = null)
	{
		ContentHelper::addSubmenu('featured');

		$this->items         = $this->get('Items');
		$this->pagination    = $this->get('Pagination');
		$this->state         = $this->get('State');
		$this->authors       = $this->get('Authors');
		$this->filterForm    = $this->get('FilterForm');
		$this->activeFilters = $this->get('ActiveFilters');
		$this->vote          = JPluginHelper::isEnabled('content',
'vote');

		// Check for errors.
		if (count($errors = $this->get('Errors')))
		{
			throw new Exception(implode("\n", $errors), 500);
		}

		// Levels filter - Used in Hathor.
		// @deprecated  4.0 To be removed with Hathor
		$this->f_levels = array(
			JHtml::_('select.option', '1',
JText::_('J1')),
			JHtml::_('select.option', '2',
JText::_('J2')),
			JHtml::_('select.option', '3',
JText::_('J3')),
			JHtml::_('select.option', '4',
JText::_('J4')),
			JHtml::_('select.option', '5',
JText::_('J5')),
			JHtml::_('select.option', '6',
JText::_('J6')),
			JHtml::_('select.option', '7',
JText::_('J7')),
			JHtml::_('select.option', '8',
JText::_('J8')),
			JHtml::_('select.option', '9',
JText::_('J9')),
			JHtml::_('select.option', '10',
JText::_('J10')),
		);

		$this->addToolbar();
		$this->sidebar = JHtmlSidebar::render();

		return parent::display($tpl);
	}

	/**
	 * Add the page title and toolbar.
	 *
	 * @return  void
	 *
	 * @since   1.6
	 */
	protected function addToolbar()
	{
		$state = $this->get('State');
		$canDo = JHelperContent::getActions('com_content',
'category',
$this->state->get('filter.category_id'));

		JToolbarHelper::title(JText::_('COM_CONTENT_FEATURED_TITLE'),
'star featured');

		if ($canDo->get('core.create'))
		{
			JToolbarHelper::addNew('article.add');
		}

		if ($canDo->get('core.edit'))
		{
			JToolbarHelper::editList('article.edit');
		}

		if ($canDo->get('core.edit.state'))
		{
			JToolbarHelper::publish('articles.publish',
'JTOOLBAR_PUBLISH', true);
			JToolbarHelper::unpublish('articles.unpublish',
'JTOOLBAR_UNPUBLISH', true);
			JToolbarHelper::custom('articles.unfeatured',
'unfeatured.png', 'featured_f2.png',
'JUNFEATURE', true);
			JToolbarHelper::archiveList('articles.archive');
			JToolbarHelper::checkin('articles.checkin');
		}

		if ($state->get('filter.published') == -2 &&
$canDo->get('core.delete'))
		{
			JToolbarHelper::deleteList('JGLOBAL_CONFIRM_DELETE',
'articles.delete', 'JTOOLBAR_EMPTY_TRASH');
		}
		elseif ($canDo->get('core.edit.state'))
		{
			JToolbarHelper::trash('articles.trash');
		}

		if ($canDo->get('core.admin') ||
$canDo->get('core.options'))
		{
			JToolbarHelper::preferences('com_content');
		}

		JToolbarHelper::help('JHELP_CONTENT_FEATURED_ARTICLES');
	}

	/**
	 * Returns an array of fields the table can be sorted by
	 *
	 * @return  array  Array containing the field name to sort by as the key
and display text as value
	 *
	 * @since   3.0
	 */
	protected function getSortFields()
	{
		return array(
			'fp.ordering'    =>
JText::_('JGRID_HEADING_ORDERING'),
			'a.state'        => JText::_('JSTATUS'),
			'a.title'        => JText::_('JGLOBAL_TITLE'),
			'category_title' => JText::_('JCATEGORY'),
			'access_level'   =>
JText::_('JGRID_HEADING_ACCESS'),
			'a.created_by'   => JText::_('JAUTHOR'),
			'language'       =>
JText::_('JGRID_HEADING_LANGUAGE'),
			'a.created'      => JText::_('JDATE'),
			'a.id'           => JText::_('JGRID_HEADING_ID'),
		);
	}
}