OXID eShop CE
4.9.6
Main Page
Related Pages
Classes
Files
File List
File Members
OXID eShop CE
Deprecated List
Classes
Files
File List
admin
application
components
controllers
admin
account.php
account_downloads.php
account_newsletter.php
account_noticelist.php
account_order.php
account_password.php
account_recommlist.php
account_user.php
account_wishlist.php
alist.php
basket.php
clearcookies.php
compare.php
contact.php
content.php
credits.php
details.php
download.php
exceptionerror.php
forgotpwd.php
guestbook.php
guestbookentry.php
invite.php
links.php
manufacturerlist.php
moredetails.php
news.php
newsletter.php
order.php
oxubase.php
payment.php
pricealarm.php
recommadd.php
recommlist.php
register.php
review.php
rss.php
search.php
start.php
suggest.php
tag.php
tags.php
thankyou.php
tpl.php
user.php
vendorlist.php
wishlist.php
wrapping.php
models
translations
bin
core
modules
index.php
bootstrap.php
config.inc.php
getimg.php
oxseo.php
widget.php
File Members
•
All
Classes
Files
Functions
Variables
Pages
tags.php
Go to the documentation of this file.
1
<?php
2
6
class
Tags
extends
oxUBase
7
{
8
14
protected
$_sThisTemplate
=
"page/tags/tags.tpl"
;
15
22
public
function
render
()
23
{
24
// if tags are off - showing 404 page
25
if
(!$this->
showTags
()) {
26
error_404_handler();
27
}
28
29
return
parent::render
();
30
}
31
37
public
function
getTagCloudManager
()
38
{
39
$oTagList =
oxNew
(
"oxTagList"
);
40
//$oTagList->loadList();
41
$oTagCloud =
oxNew
(
"oxTagCloud"
);
42
$oTagCloud->setTagList($oTagList);
43
$oTagCloud->setExtendedMode(
true
);
44
45
return
$oTagCloud;
46
}
47
51
public
function
getTitleSuffix
()
52
{
53
}
54
60
public
function
getTitlePageSuffix
()
61
{
62
if
(($iPage = $this->
getActPage
())) {
63
return
oxRegistry::getLang
()->translateString(
'PAGE'
) .
" "
. ($iPage + 1);
64
}
65
}
66
72
public
function
getBreadCrumb
()
73
{
74
$aPaths = array();
75
$aCatPath = array();
76
77
$iBaseLanguage =
oxRegistry::getLang
()->getBaseLanguage();
78
$aCatPath[
'title'
] =
oxRegistry::getLang
()->translateString(
'TAGS'
, $iBaseLanguage,
false
);
79
$aCatPath[
'link'
] = $this->
getLink
();
80
$aPaths[] = $aCatPath;
81
82
return
$aPaths;
83
}
84
}
application
controllers
tags.php
Generated by
1.8.1.2