/
home
/
assocoweys
/
assoco
/
plugins
/
system
/
nrframework
/
NRFramework
/
Assignments
/
Component
/
Upload File
HOME
<?php /** * @author Tassos.gr * @link http://www.tassos.gr * @copyright Copyright © 2021 Tassos Marinos All Rights Reserved * @license GNU GPLv3 <http://www.gnu.org/licenses/gpl.html> or later */ namespace NRFramework\Assignments\Component; defined('_JEXEC') or die; class ContentArticle extends ContentBase { /** * Pass check for Joomla! Articles * * @return bool */ public function pass() { return $this->passSinglePage(); } /** * Returns the assignment's value * * @return int Article ID */ public function value() { return $this->request->id; } }