idTop
string id
Get or set id of slidemenu child
Show/Hide Code
<?php
$child = new SlideMenuChild("child");
$child->id="thechild";//Change id from "child" to "thechild"
?>
Supported from version: 1.0.0.0
linkTop
string link
Get or set link of slidemenu child.
Show/Hide Code
<?php
$child = new SlideMenuChild("child");
$child->link = "childpage.php";//The browser will go to "childpage.php" when the child is clicked
?>
Supported from version: 1.0.0.0
targetTop
string target
Get or set target of slidemenu child link.
Show/Hide Code
<?php
$child = new SlideMenuChild("child");
$child->link = "childpage.php";
$child->target = "_blank";
//The browser will go to "childpage.php" on blank page when the child is clicked
?>
Supported from version: 1.4.0.0
textTop
string text
Get or set text of slidemenu child
Show/Hide Code
<?php
$child = new SlideMenuChild("child");
$child->text = "This is child";//Set the text content
?>
Supported from version: 1.0.0.0