HEX
Server: nginx/1.28.1
System: Linux 10-41-63-61 6.8.0-31-generic #31-Ubuntu SMP PREEMPT_DYNAMIC Sat Apr 20 00:40:06 UTC 2024 x86_64
User: www (1001)
PHP: 7.4.33
Disabled: passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv
Upload Files
File: /www/wwwroot/wwwshoopermcom/application/views/rss/rss_feeds.php
<?php defined('BASEPATH') OR exit('No direct script access allowed'); ?>
<!-- Wrapper -->
<div id="wrapper">
	<div class="container">
		<div class="row">
			<div class="col-12">
				<div class="blog-content">
					<nav class="nav-breadcrumb" aria-label="breadcrumb">
						<ol class="breadcrumb">
							<li class="breadcrumb-item"><a href="<?php echo lang_base_url(); ?>"><?php echo trans("home"); ?></a></li>
							<li class="breadcrumb-item active" aria-current="page"><?php echo html_escape($title); ?></li>
						</ol>
					</nav>
					<h1 class="page-title"><?php echo html_escape($title); ?></h1>
					<div class="row">
						<div class="col-sm-12">
							<div class="page-text-content">
								<div class="rss-item">
									<div class="left">
										<a href="<?php echo lang_base_url(); ?>rss/<?php echo get_route("latest_products"); ?>" target="_blank"><i class="icon-rss"></i>&nbsp;&nbsp;<?php echo trans("latest_products"); ?></a>
									</div>
									<div class="right">
										<p><?php echo lang_base_url() . "rss/" . get_route("latest_products"); ?></p>
									</div>
								</div>
								<div class="rss-item">
									<div class="left">
										<a href="<?php echo lang_base_url(); ?>rss/<?php echo get_route("featured_products"); ?>" target="_blank"><i class="icon-rss"></i>&nbsp;&nbsp;<?php echo trans("featured_products"); ?></a>
									</div>
									<div class="right">
										<p><?php echo lang_base_url() . "rss/" . get_route("featured_products"); ?></p>
									</div>
								</div>
								<?php if (!empty($this->parent_categories)):
									foreach ($this->parent_categories as $category): ?>
										<div class="rss-item">
											<div class="left">
												<a href="<?php echo lang_base_url(); ?>rss/<?php echo get_route("category"); ?>/<?php echo html_escape($category->slug); ?>" target="_blank"><i class="icon-rss"></i>&nbsp;&nbsp;<?php echo category_name($category); ?></a>
											</div>
											<div class="right">
												<p><?php echo lang_base_url(); ?>rss/<?php echo get_route("category"); ?>/<?php echo html_escape($category->slug); ?></p>
											</div>
										</div>
									<?php
									endforeach;
								endif; ?>
							</div>
						</div>
					</div>
				</div>
			</div>

		</div>
	</div>
</div>
<!-- Wrapper End-->