| Server IP : 127.0.1.1 / Your IP : 216.73.216.83 Web Server : Apache/2.4.58 (Ubuntu) System : Linux nepub 6.8.0-88-generic #89-Ubuntu SMP PREEMPT_DYNAMIC Sat Oct 11 01:02:46 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.2.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /var/www/html/public_html/lib/pkp/classes/navigationMenu/ |
Upload File : |
<?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);
}
}