One Hat Cyber Team
Your IP :
216.73.216.182
Server IP :
203.175.9.166
Server :
Linux tanggamus.iixcp.rumahweb.net 5.14.0-427.28.1.el9_4.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 2 03:44:10 EDT 2024 x86_64
Server Software :
LiteSpeed
PHP Version :
7.4.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
cite5577
/
www
/
lib
/
pkp
/
classes
/
navigationMenu
/
Edit File:
NavigationMenuItemAssignment.inc.php
<?php /** * @file classes/navigationMenu/NavigationMenuItemAssignment.inc.php * * Copyright (c) 2014-2021 Simon Fraser University * Copyright (c) 2000-2021 John Willinsky * Distributed under the GNU GPL v3. For full terms see the file docs/COPYING. * * @class NavigationMenuItemAssignment * @ingroup navigationMenu * @see NavigationMenuItemAssignmentDAO * * @brief Basic class describing a NavigationMenuItemAssignment. Each * assignment describes a NavigationMenuItem assigned to a NavigationMenu, * including it's position and if it's nested within another NavigationMenuItem */ class NavigationMenuItemAssignment extends DataObject { /** @var $navigationMenuItem NavigationMenuItem The object this assignment refers to */ var $navigationMenuItem = null; /** @var $children array List of NavigationMenuItem objects nested under this one. */ var $children = array(); // // Get/set methods // /** * Get menuId for this navigation menu item assignment. * @return int */ public function getMenuId() { return $this->getData('menuId'); } /** * Set menuId for this navigation menu item assignment. * @param $menuId int */ public function setMenuId($menuId) { $this->setData('menuId', $menuId); } /** * Get menuItemId for this navigation menu item assignment. * @return int */ public function getMenuItemId() { return $this->getData('menuItemId'); } /** * Set menuItemId for this navigation menu item assignment. * @param $menuItemId int */ public function setMenuItemId($menuItemId) { $this->setData('menuItemId', $menuItemId); } /** * Get parent menu item ID * @return int */ public function getParentId() { return $this->getData('parentId'); } /** * Set parent menu item ID * @param $parentId int */ public function setParentId($parentId) { $this->setData('parentId', $parentId); } /** * Get seq for this navigation menu item. * @return int */ public function getSequence() { return $this->getData('seq'); } /** * Set seq for this navigation menu item. * @param $seq int */ public function setSequence($seq) { $this->setData('seq', $seq); } /** * Get the NavigationMenuItem this assignment represents. * * This object is only available in some cases, when the NavigationMenuItem * has been stored for re-use. * * @return int */ public function getMenuItem() { return $this->navigationMenuItem; } /** * Set the NavigationMenuItem this assignment represents * @param $seq int */ public function setMenuItem($obj) { $this->navigationMenuItem = is_a($obj, 'NavigationMenuItem') ? $obj : null; } /** * Get the title of the object. * @return string */ function getLocalizedTitle() { return $this->getLocalizedData('title'); } /** * Get the title of the object. * @param $locale string * @return string */ function getTitle($locale) { return $this->getData('title', $locale); } /** * Set the title of the object. * @param $title string * @param $locale string */ function setTitle($title, $locale) { $this->setData('title', $title, $locale); } }
Simpan