gurl_o/themes/gurlushyk/pages/user-profile.htm

41 lines
690 B
HTML
Raw Normal View History

2023-10-03 12:00:10 +00:00
title = "Ulanyjy Profil sahypasy"
url = "/user-profile/:id/:slug?"
layout = "default"
is_hidden = 0
2023-10-22 13:08:31 +00:00
robot_index = "index"
robot_follow = "follow"
2023-10-03 12:00:10 +00:00
2023-10-15 20:26:14 +00:00
[session]
security = "all"
2023-10-03 12:00:10 +00:00
[userOffers]
2023-10-15 20:26:14 +00:00
perPage = 24
2023-10-03 12:00:10 +00:00
slug = "{{ :slug }}"
id = "{{ :id }}"
2023-10-22 13:08:31 +00:00
[messages]
[session session2]
security = "all"
2023-10-03 12:00:10 +00:00
==
2023-10-15 20:26:14 +00:00
<?php
function onStart(){
$this["slugq"] = $this->param("slug");
$currentC = TPS\Birzha\Models\Category::where("slug", $this["slugq"])->first();
if($currentC){
$this["currentC"] = "Harytlar / ".$currentC->name;
}else{
$this["currentC"] = "Hemme Harytlar";
}
}
?>
==
2023-10-03 12:00:10 +00:00
{% component 'userOffers' %}