/
home
/
assocoweys
/
assoco
/
plugins
/
system
/
nrframework
/
NRFramework
/
Assignments
/
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; defined('_JEXEC') or die; use NRFramework\Assignment; use NRFramework\WebClient; class OS extends Assignment { /** * Check the client's operating system * * @return bool */ public function pass() { // backwards compatibility check // replace 'iphone' and 'ipad' selection values with 'ios' $this->selection = array_map(function($os_selection) { if ($os_selection === 'iphone' || $os_selection === 'ipad') { return 'ios'; } return $os_selection; }, $this->selection); return $this->passSimple($this->value(), $this->selection); } /** * Returns the assignment's value * * @return string OS name */ public function value() { return WebClient::getOS(); } }