1
0
Fork 0
mirror of https://github.com/DanielnetoDotCom/YouPHPTube synced 2025-10-03 09:49:28 +02:00

Allow also create actions menu

also users can now customize the action menu links on their videos
This commit is contained in:
DanielnetoDotCom 2021-06-02 14:12:47 -03:00
parent 2c2638c172
commit 48c6e8ca2c
9 changed files with 344 additions and 8 deletions

View file

@ -5,6 +5,17 @@ require_once dirname(__FILE__) . '/../../../objects/bootGrid.php';
require_once dirname(__FILE__) . '/../../../objects/user.php';
class Menu extends ObjectYPT {
static $typeLeftMenu = 1;
static $typeTopMenu = 2;
static $typeActionMenu = 3;
static $typeActionMenuCustomURL = 4;
static $typeName = array(
1=>'Left',
2=>'Top',
3=>'Action',
4=>'Action Custom URL Per Video');
protected $id, $menuName, $categories_id, $users_groups_id, $menu_order, $status, $position, $type, $icon, $menuSeoUrl;