Chamilo is a learning management system focused on ease of use and accessibility
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
chamilo-lms/main/lp/LpOrderItem.php

26 lines
492 B

<?php
/* For licensing terms, see /license.txt */
/**
* Class LpOrderItem.
*/
class LpOrderItem
{
public $id = 0;
public $parent_item_id = 0;
public $previous_item_id = 0;
public $next_item_id = 0;
public $display_order = 0;
/**
* LpOrderItem constructor.
*
* @param int $id
* @param int $parentId
*/
public function __construct($id = 0, $parentId = 0)
{
$this->id = $id;
$this->parent_item_id = $parentId;
}
}