![]() |
TeamSpeak 3 PHP Framework
1.1.16
Copyright © Planet TeamSpeak. All rights reserved.
|
Class describing a TeamSpeak 3 channel and all it's parameters. More...
Public Member Functions | |
__construct (TeamSpeak3_Node_Server $server, array $info, $index="cid") | |
The TeamSpeak3_Node_Channel constructor. | |
subChannelList (array $filter=array()) | |
Returns an array filled with TeamSpeak3_Node_Channel objects. | |
subChannelGetById ($cid) | |
Returns the TeamSpeak3_Node_Channel object matching the given ID. | |
subChannelGetByName ($name) | |
Returns the TeamSpeak3_Node_Channel object matching the given name. | |
clientList (array $filter=array()) | |
Returns an array filled with TeamSpeak3_Node_Client objects. | |
clientGetById ($clid) | |
Returns the TeamSpeak3_Node_Client object matching the given ID. | |
clientGetByName ($name) | |
Returns the TeamSpeak3_Node_Client object matching the given name. | |
clientPermList ($cldbid, $permsid=FALSE) | |
Returns a list of permissions defined for a client in the channel. | |
clientPermAssign ($cldbid, $permid, $permvalue) | |
Adds a set of specified permissions to a client in a specific channel. | |
clientPermAssignByName ($cldbid, $permname, $permvalue) | |
Alias for clientPermAssign(). | |
clientPermRemove ($cldbid, $permid) | |
Removes a set of specified permissions from a client in the channel. | |
clientPermRemoveByName ($cldbid, $permname) | |
Alias for clientPermRemove(). | |
permList ($permsid=FALSE) | |
Returns a list of permissions defined for the channel. | |
permAssign ($permid, $permvalue) | |
Adds a set of specified permissions to the channel. | |
permAssignByName ($permname, $permvalue) | |
Alias for permAssign(). | |
permRemove ($permid) | |
Removes a set of specified permissions from the channel. | |
permRemoveByName ($permname) | |
Alias for permRemove(). | |
fileList ($cpw="", $path="/", $recursive=FALSE) | |
Returns a list of files and directories stored in the channels file repository. | |
fileInfo ($cpw="", $name="/") | |
Returns detailed information about the specified file stored in the channels file repository. | |
fileRename ($cpw="", $oldname="/", $newname="/", $tcid=null, $tcpw=null) | |
Renames a file in the channels file repository. | |
fileDelete ($cpw="", $name="/") | |
Deletes one or more files stored in the channels file repository. | |
dirCreate ($cpw="", $dirname="/") | |
Creates new directory in a channels file repository. | |
getLevel () | |
Returns the level of the channel. | |
getPathway () | |
Returns the pathway of the channel which can be used as a clients default channel. | |
spacerGetType () | |
Returns the possible spacer type of the channel. | |
spacerGetAlign () | |
Returns the possible spacer alignment of the channel. | |
isSpacer () | |
Returns TRUE if the channel is a spacer. | |
iconDownload () | |
Downloads and returns the channels icon file content. | |
modify (array $properties) | |
Changes the channel configuration using given properties. | |
message ($msg, $cpw=null) | |
Sends a text message to all clients in the channel. | |
delete ($force=FALSE) | |
Deletes the channel. | |
move ($pid, $order=null) | |
Moves the channel to the parent channel specified with $pid. | |
getUniqueId () | |
Returns a unique identifier for the node which can be used as a HTML property. | |
getIcon () | |
Returns the name of a possible icon to display the node object. | |
getSymbol () | |
Returns a symbol representing the node. | |
__toString () | |
Returns a string representation of this node. | |
request ($cmd) | |
Sends a prepared command to the server and returns the result. | |
prepare ($cmd, array $params=array()) | |
Uses given parameters and returns a prepared ServerQuery command. | |
execute ($cmd, array $params=array()) | |
Prepares and executes a ServerQuery command and returns the result. | |
getParent () | |
Returns the parent object of the current node. | |
getId () | |
Returns the primary ID of the current node. | |
iconIsLocal ($key) | |
Returns TRUE if the node icon has a local source. | |
iconGetName ($key) | |
Returns the internal path of the node icon. | |
getClass ($prefix="ts3_") | |
Returns a possible classname for the node which can be used as a HTML property. | |
getViewer (TeamSpeak3_Viewer_Interface $viewer) | |
Returns the HTML code to display a TeamSpeak 3 viewer. | |
getInfo ($extend=TRUE, $convert=FALSE) | |
Returns all information available on this node. | |
getProperty ($property, $default=null) | |
Returns the specified property or a pre-defined default value from the node info array. | |
toString () | |
Returns a string representation of this node. | |
toArray () | |
Returns an assoc array filled with current node info properties. | |
__call ($name, array $args) | |
Called whenever we're using an unknown method. | |
__sleep () | |
Commit pending data. | |
count () | |
| |
current () | |
| |
getChildren () | |
| |
hasChildren () | |
| |
hasNext () | |
| |
key () | |
| |
valid () | |
| |
next () | |
| |
rewind () | |
| |
offsetExists ($offset) | |
| |
offsetGet ($offset) | |
| |
offsetSet ($offset, $value) | |
| |
offsetUnset ($offset) | |
| |
__get ($offset) | |
| |
__set ($offset, $value) | |
| |
Protected Member Functions | |
fetchNodeList () | |
| |
fetchNodeInfo () | |
| |
filterList (array $nodes=array(), array $rules=array()) | |
Filters given node list array using specified filter rules. | |
setStorage ($key, $val) | |
Writes data to the internal storage array. | |
getStorage ($key, $default=null) | |
Returns data from the internal storage array. | |
delStorage ($key) | |
Deletes data from the internal storage array. | |
resetNodeInfo () | |
| |
verifyNodeList () | |
| |
resetNodeList () | |
| |
Protected Attributes | |
$parent = null | |
| |
$server = null | |
| |
$nodeId = 0x00 | |
| |
$nodeList = null | |
| |
$nodeInfo = array() | |
| |
$storage = array() | |
| |
Class describing a TeamSpeak 3 channel and all it's parameters.
Definition at line 32 of file Channel.php.
TeamSpeak3_Node_Channel::__construct | ( | TeamSpeak3_Node_Server | $server, |
array | $info, | ||
$index = "cid" |
|||
) |
The TeamSpeak3_Node_Channel constructor.
TeamSpeak3_Node_Server | $server | |
array | $info | |
string | $index |
TeamSpeak3_Adapter_ServerQuery_Exception |
Definition at line 43 of file Channel.php.
References TeamSpeak3_Node_Abstract\$server.
TeamSpeak3_Node_Channel::subChannelList | ( | array | $filter = array() | ) |
Returns an array filled with TeamSpeak3_Node_Channel objects.
array | $filter |
Definition at line 62 of file Channel.php.
References TeamSpeak3_Node_Abstract\filterList(), TeamSpeak3_Node_Abstract\getId(), and TeamSpeak3_Node_Abstract\getParent().
Referenced by fetchNodeList(), subChannelGetById(), and subChannelGetByName().
TeamSpeak3_Node_Channel::subChannelGetById | ( | $cid | ) |
Returns the TeamSpeak3_Node_Channel object matching the given ID.
integer | $cid |
TeamSpeak3_Adapter_ServerQuery_Exception |
Definition at line 84 of file Channel.php.
References subChannelList().
TeamSpeak3_Node_Channel::subChannelGetByName | ( | $name | ) |
Returns the TeamSpeak3_Node_Channel object matching the given name.
integer | $name |
TeamSpeak3_Adapter_ServerQuery_Exception |
Definition at line 101 of file Channel.php.
References subChannelList().
TeamSpeak3_Node_Channel::clientList | ( | array | $filter = array() | ) |
Returns an array filled with TeamSpeak3_Node_Client objects.
array | $filter |
Definition at line 117 of file Channel.php.
References TeamSpeak3_Node_Abstract\filterList(), TeamSpeak3_Node_Abstract\getId(), and TeamSpeak3_Node_Abstract\getParent().
Referenced by clientGetById(), clientGetByName(), and fetchNodeList().
TeamSpeak3_Node_Channel::clientGetById | ( | $clid | ) |
Returns the TeamSpeak3_Node_Client object matching the given ID.
integer | $clid |
TeamSpeak3_Adapter_ServerQuery_Exception |
Definition at line 139 of file Channel.php.
References clientList().
TeamSpeak3_Node_Channel::clientGetByName | ( | $name | ) |
Returns the TeamSpeak3_Node_Client object matching the given name.
integer | $name |
TeamSpeak3_Adapter_ServerQuery_Exception |
Definition at line 156 of file Channel.php.
References clientList().
TeamSpeak3_Node_Channel::clientPermList | ( | $cldbid, | |
$permsid = FALSE |
|||
) |
Returns a list of permissions defined for a client in the channel.
integer | $cldbid | |
boolean | $permsid |
Definition at line 173 of file Channel.php.
References TeamSpeak3_Node_Abstract\getId(), and TeamSpeak3_Node_Abstract\getParent().
TeamSpeak3_Node_Channel::clientPermAssign | ( | $cldbid, | |
$permid, | |||
$permvalue | |||
) |
Adds a set of specified permissions to a client in a specific channel.
Multiple permissions can be added by providing the two parameters of each permission.
integer | $cldbid | |
integer | $permid | |
integer | $permvalue |
Definition at line 187 of file Channel.php.
References TeamSpeak3_Node_Abstract\getId(), and TeamSpeak3_Node_Abstract\getParent().
Referenced by clientPermAssignByName().
TeamSpeak3_Node_Channel::clientPermAssignByName | ( | $cldbid, | |
$permname, | |||
$permvalue | |||
) |
Alias for clientPermAssign().
Definition at line 197 of file Channel.php.
References clientPermAssign().
TeamSpeak3_Node_Channel::clientPermRemove | ( | $cldbid, | |
$permid | |||
) |
Removes a set of specified permissions from a client in the channel.
Multiple permissions can be removed at once.
integer | $cldbid | |
integer | $permid |
Definition at line 209 of file Channel.php.
References TeamSpeak3_Node_Abstract\getId(), and TeamSpeak3_Node_Abstract\getParent().
Referenced by clientPermRemoveByName().
TeamSpeak3_Node_Channel::clientPermRemoveByName | ( | $cldbid, | |
$permname | |||
) |
Alias for clientPermRemove().
Definition at line 219 of file Channel.php.
References clientPermRemove().
TeamSpeak3_Node_Channel::permList | ( | $permsid = FALSE | ) |
Returns a list of permissions defined for the channel.
boolean | $permsid |
Definition at line 230 of file Channel.php.
References TeamSpeak3_Node_Abstract\getId(), and TeamSpeak3_Node_Abstract\getParent().
TeamSpeak3_Node_Channel::permAssign | ( | $permid, | |
$permvalue | |||
) |
Adds a set of specified permissions to the channel.
Multiple permissions can be added by providing the two parameters of each permission.
integer | $permid | |
integer | $permvalue |
Definition at line 243 of file Channel.php.
References TeamSpeak3_Node_Abstract\getId(), and TeamSpeak3_Node_Abstract\getParent().
Referenced by permAssignByName().
TeamSpeak3_Node_Channel::permAssignByName | ( | $permname, | |
$permvalue | |||
) |
TeamSpeak3_Node_Channel::permRemove | ( | $permid | ) |
Removes a set of specified permissions from the channel.
Multiple permissions can be removed at once.
integer | $permid |
Definition at line 264 of file Channel.php.
References TeamSpeak3_Node_Abstract\getId(), and TeamSpeak3_Node_Abstract\getParent().
Referenced by permRemoveByName().
TeamSpeak3_Node_Channel::permRemoveByName | ( | $permname | ) |
TeamSpeak3_Node_Channel::fileList | ( | $cpw = "" , |
|
$path = "/" , |
|||
$recursive = FALSE |
|||
) |
Returns a list of files and directories stored in the channels file repository.
string | $cpw | |
string | $path | |
boolean | $recursive |
Definition at line 287 of file Channel.php.
References TeamSpeak3_Node_Abstract\getId(), and TeamSpeak3_Node_Abstract\getParent().
TeamSpeak3_Node_Channel::fileInfo | ( | $cpw = "" , |
|
$name = "/" |
|||
) |
Returns detailed information about the specified file stored in the channels file repository.
string | $cpw | |
string | $name |
Definition at line 299 of file Channel.php.
References TeamSpeak3_Node_Abstract\getId(), and TeamSpeak3_Node_Abstract\getParent().
TeamSpeak3_Node_Channel::fileRename | ( | $cpw = "" , |
|
$oldname = "/" , |
|||
$newname = "/" , |
|||
$tcid = null , |
|||
$tcpw = null |
|||
) |
Renames a file in the channels file repository.
If the two parameters $tcid and $tcpw are specified, the file will be moved into another channels file repository.
string | $cpw | |
string | $oldname | |
string | $newname | |
integer | $tcid | |
string | $tcpw |
Definition at line 315 of file Channel.php.
References TeamSpeak3_Node_Abstract\getId(), and TeamSpeak3_Node_Abstract\getParent().
TeamSpeak3_Node_Channel::fileDelete | ( | $cpw = "" , |
|
$name = "/" |
|||
) |
Deletes one or more files stored in the channels file repository.
string | $cpw | |
string | $path |
Definition at line 327 of file Channel.php.
References TeamSpeak3_Node_Abstract\getId(), and TeamSpeak3_Node_Abstract\getParent().
TeamSpeak3_Node_Channel::dirCreate | ( | $cpw = "" , |
|
$dirname = "/" |
|||
) |
Creates new directory in a channels file repository.
string | $cpw | |
string | $dirname |
Definition at line 339 of file Channel.php.
References TeamSpeak3_Node_Abstract\getId(), and TeamSpeak3_Node_Abstract\getParent().
TeamSpeak3_Node_Channel::getLevel | ( | ) |
Returns the level of the channel.
Definition at line 349 of file Channel.php.
References TeamSpeak3_Node_Abstract\getId(), and TeamSpeak3_Node_Abstract\getParent().
TeamSpeak3_Node_Channel::getPathway | ( | ) |
Returns the pathway of the channel which can be used as a clients default channel.
Definition at line 359 of file Channel.php.
References TeamSpeak3_Node_Abstract\getId(), and TeamSpeak3_Node_Abstract\getParent().
TeamSpeak3_Node_Channel::spacerGetType | ( | ) |
Returns the possible spacer type of the channel.
Definition at line 369 of file Channel.php.
References TeamSpeak3_Node_Abstract\getId(), and TeamSpeak3_Node_Abstract\getParent().
TeamSpeak3_Node_Channel::spacerGetAlign | ( | ) |
Returns the possible spacer alignment of the channel.
Definition at line 379 of file Channel.php.
References TeamSpeak3_Node_Abstract\getId(), and TeamSpeak3_Node_Abstract\getParent().
TeamSpeak3_Node_Channel::isSpacer | ( | ) |
Returns TRUE if the channel is a spacer.
Definition at line 389 of file Channel.php.
References TeamSpeak3_Node_Abstract\getParent().
Referenced by TeamSpeak3_Viewer_Html\getCorpusClass(), TeamSpeak3_Viewer_Html\getCorpusIcon(), TeamSpeak3_Viewer_Html\getCorpusName(), TeamSpeak3_Viewer_Html\getCorpusTitle(), and TeamSpeak3_Viewer_Html\getSuffixIconChannel().
TeamSpeak3_Node_Channel::iconDownload | ( | ) |
Downloads and returns the channels icon file content.
Definition at line 399 of file Channel.php.
References TeamSpeak3\factory(), TeamSpeak3_Node_Abstract\getParent(), TeamSpeak3_Node_Abstract\iconGetName(), and TeamSpeak3_Node_Abstract\iconIsLocal().
TeamSpeak3_Node_Channel::modify | ( | array | $properties | ) |
Changes the channel configuration using given properties.
array | $properties |
Definition at line 415 of file Channel.php.
References TeamSpeak3_Node_Abstract\execute(), TeamSpeak3_Node_Abstract\getId(), and TeamSpeak3_Node_Abstract\resetNodeInfo().
TeamSpeak3_Node_Channel::message | ( | $msg, | |
$cpw = null |
|||
) |
Sends a text message to all clients in the channel.
string | $msg | |
string | $cpw |
Definition at line 430 of file Channel.php.
References TeamSpeak3_Node_Abstract\execute(), TeamSpeak3_Node_Abstract\getId(), TeamSpeak3_Node_Abstract\getParent(), and TeamSpeak3\TEXTMSG_CHANNEL.
TeamSpeak3_Node_Channel::delete | ( | $force = FALSE | ) |
Deletes the channel.
boolean | $force |
Definition at line 446 of file Channel.php.
References TeamSpeak3_Node_Abstract\getId(), and TeamSpeak3_Node_Abstract\getParent().
TeamSpeak3_Node_Channel::move | ( | $pid, | |
$order = null |
|||
) |
Moves the channel to the parent channel specified with $pid.
integer | $pid | |
integer | $order |
Definition at line 460 of file Channel.php.
References TeamSpeak3_Node_Abstract\getId(), and TeamSpeak3_Node_Abstract\getParent().
|
protected |
Definition at line 468 of file Channel.php.
References clientList(), TeamSpeak3_Node_Abstract\getId(), TeamSpeak3_Node_Abstract\getParent(), and subChannelList().
|
protected |
Definition at line 513 of file Channel.php.
References TeamSpeak3_Node_Abstract\execute(), and TeamSpeak3_Node_Abstract\getId().
TeamSpeak3_Node_Channel::getUniqueId | ( | ) |
Returns a unique identifier for the node which can be used as a HTML property.
Definition at line 523 of file Channel.php.
References TeamSpeak3_Node_Abstract\getId(), and TeamSpeak3_Node_Abstract\getParent().
TeamSpeak3_Node_Channel::getIcon | ( | ) |
Returns the name of a possible icon to display the node object.
Definition at line 533 of file Channel.php.
TeamSpeak3_Node_Channel::getSymbol | ( | ) |
Returns a symbol representing the node.
Definition at line 554 of file Channel.php.
TeamSpeak3_Node_Channel::__toString | ( | ) |
Returns a string representation of this node.
Definition at line 564 of file Channel.php.
|
inherited |
Sends a prepared command to the server and returns the result.
string | $cmd |
Definition at line 70 of file Abstract.php.
References TeamSpeak3_Node_Abstract\getParent().
Referenced by TeamSpeak3_Node_Host\bindingList(), TeamSpeak3_Node_Abstract\execute(), TeamSpeak3_Node_Host\fetchNodeInfo(), TeamSpeak3_Node_Host\logout(), TeamSpeak3_Node_Host\permissionList(), TeamSpeak3_Node_Host\serverList(), TeamSpeak3_Node_Host\version(), and TeamSpeak3_Node_Host\whoami().
|
inherited |
Uses given parameters and returns a prepared ServerQuery command.
string | $cmd | |
array | $params |
Definition at line 82 of file Abstract.php.
References TeamSpeak3_Node_Abstract\getParent().
Referenced by TeamSpeak3_Node_Abstract\execute().
|
inherited |
Prepares and executes a ServerQuery command and returns the result.
string | $cmd | |
array | $params |
Definition at line 94 of file Abstract.php.
References TeamSpeak3_Node_Abstract\prepare(), and TeamSpeak3_Node_Abstract\request().
Referenced by TeamSpeak3_Node_Server\banCreate(), TeamSpeak3_Node_Server\banDelete(), TeamSpeak3_Node_Server\channelClientPermAssign(), TeamSpeak3_Node_Server\channelClientPermList(), TeamSpeak3_Node_Server\channelClientPermRemove(), TeamSpeak3_Node_Server\channelCreate(), TeamSpeak3_Node_Server\channelDelete(), TeamSpeak3_Node_Server\channelDirCreate(), TeamSpeak3_Node_Server\channelFileDelete(), TeamSpeak3_Node_Server\channelFileInfo(), TeamSpeak3_Node_Server\channelFileList(), TeamSpeak3_Node_Server\channelFileRename(), TeamSpeak3_Node_Server\channelGroupClientList(), TeamSpeak3_Node_Server\channelGroupCopy(), TeamSpeak3_Node_Server\channelGroupCreate(), TeamSpeak3_Node_Server\channelGroupDelete(), TeamSpeak3_Node_Server\channelGroupPermAssign(), TeamSpeak3_Node_Server\channelGroupPermList(), TeamSpeak3_Node_Server\channelGroupPermRemove(), TeamSpeak3_Node_Server\channelGroupRename(), TeamSpeak3_Node_Server\channelMove(), TeamSpeak3_Node_Server\channelPermAssign(), TeamSpeak3_Node_Server\channelPermList(), TeamSpeak3_Node_Server\channelPermRemove(), TeamSpeak3_Node_Server\clientBan(), TeamSpeak3_Node_Server\clientCountDb(), TeamSpeak3_Node_Server\clientDeleteDb(), TeamSpeak3_Node_Server\clientFind(), TeamSpeak3_Node_Server\clientFindDb(), TeamSpeak3_Node_Server\clientGetIdsByUid(), TeamSpeak3_Node_Server\clientGetNameByDbid(), TeamSpeak3_Node_Server\clientGetNameByUid(), TeamSpeak3_Node_Server\clientGetServerGroupsByDbid(), TeamSpeak3_Node_Server\clientInfoDb(), TeamSpeak3_Node_Server\clientKick(), TeamSpeak3_Node_Server\clientListDb(), TeamSpeak3_Node_Server\clientModifyDb(), TeamSpeak3_Node_Server\clientMove(), TeamSpeak3_Node_Server\clientPermAssign(), TeamSpeak3_Node_Server\clientPermList(), TeamSpeak3_Node_Server\clientPermRemove(), TeamSpeak3_Node_Server\clientPoke(), TeamSpeak3_Node_Server\clientSetChannelGroup(), TeamSpeak3_Node_Server\complaintCreate(), TeamSpeak3_Node_Server\complaintDelete(), TeamSpeak3_Node_Server\complaintList(), TeamSpeak3_Node_Server\complaintListClear(), TeamSpeak3_Node_Server\customInfo(), TeamSpeak3_Node_Server\customSearch(), TeamSpeak3_Node_Client\fetchNodeInfo(), fetchNodeInfo(), TeamSpeak3_Node_Client\getClones(), TeamSpeak3_Node_Host\logAdd(), TeamSpeak3_Node_Server\logAdd(), TeamSpeak3_Node_Host\login(), TeamSpeak3_Node_Host\logView(), TeamSpeak3_Node_Server\logView(), TeamSpeak3_Node_Client\message(), TeamSpeak3_Node_Channelgroup\message(), TeamSpeak3_Node_Servergroup\message(), message(), TeamSpeak3_Node_Host\message(), TeamSpeak3_Node_Server\message(), TeamSpeak3_Node_Server\messageCreate(), TeamSpeak3_Node_Server\messageDelete(), TeamSpeak3_Node_Server\messageRead(), TeamSpeak3_Node_Client\modify(), modify(), TeamSpeak3_Node_Host\modify(), TeamSpeak3_Node_Server\modify(), TeamSpeak3_Node_Server\notifyRegister(), TeamSpeak3_Node_Host\permissionFind(), TeamSpeak3_Node_Client\permOverview(), TeamSpeak3_Node_Server\privilegeKeyCreate(), TeamSpeak3_Node_Server\privilegeKeyDelete(), TeamSpeak3_Node_Server\privilegeKeyUse(), TeamSpeak3_Node_Host\selfPermCheck(), TeamSpeak3_Node_Server\selfPermOverview(), TeamSpeak3_Node_Server\selfUpdate(), TeamSpeak3_Node_Server\selfUpdateLogin(), TeamSpeak3_Node_Host\serverCreate(), TeamSpeak3_Node_Host\serverDelete(), TeamSpeak3_Node_Server\serverGroupClientAdd(), TeamSpeak3_Node_Server\serverGroupClientDel(), TeamSpeak3_Node_Server\serverGroupClientList(), TeamSpeak3_Node_Server\serverGroupCopy(), TeamSpeak3_Node_Server\serverGroupCreate(), TeamSpeak3_Node_Server\serverGroupDelete(), TeamSpeak3_Node_Server\serverGroupPermAssign(), TeamSpeak3_Node_Host\serverGroupPermAutoAssign(), TeamSpeak3_Node_Host\serverGroupPermAutoRemove(), TeamSpeak3_Node_Server\serverGroupPermList(), TeamSpeak3_Node_Server\serverGroupPermRemove(), TeamSpeak3_Node_Server\serverGroupRename(), TeamSpeak3_Node_Host\serverIdGetByPort(), TeamSpeak3_Node_Host\serverSelect(), TeamSpeak3_Node_Host\serverSelectByPort(), TeamSpeak3_Node_Host\serverStart(), TeamSpeak3_Node_Host\serverStop(), TeamSpeak3_Node_Host\serverStopProcess(), TeamSpeak3_Node_Server\tempPasswordCreate(), TeamSpeak3_Node_Server\tempPasswordDelete(), TeamSpeak3_Node_Server\transferInitDownload(), TeamSpeak3_Node_Server\transferInitUpload(), and TeamSpeak3_Node_Server\transferStop().
|
inherited |
Returns the parent object of the current node.
Definition at line 105 of file Abstract.php.
References TeamSpeak3_Node_Abstract\$parent.
Referenced by TeamSpeak3_Node_Abstract\__call(), TeamSpeak3_Node_Client\addServerGroup(), TeamSpeak3_Node_Client\avatarDownload(), TeamSpeak3_Node_Client\ban(), TeamSpeak3_Node_Server\channelCreate(), TeamSpeak3_Node_Server\channelDelete(), TeamSpeak3_Node_Servergroup\clientAdd(), TeamSpeak3_Node_Servergroup\clientDel(), clientList(), TeamSpeak3_Node_Channelgroup\clientList(), TeamSpeak3_Node_Servergroup\clientList(), TeamSpeak3_Node_Server\clientList(), TeamSpeak3_Node_Server\clientMove(), clientPermAssign(), clientPermList(), clientPermRemove(), TeamSpeak3_Node_Servergroup\copy(), TeamSpeak3_Node_Channelgroup\copy(), TeamSpeak3_Node_Client\customInfo(), TeamSpeak3_Node_Servergroup\delete(), TeamSpeak3_Node_Channelgroup\delete(), delete(), TeamSpeak3_Node_Server\delete(), TeamSpeak3_Node_Client\deleteDb(), dirCreate(), TeamSpeak3_Node_Channelgroup\fetchNodeList(), TeamSpeak3_Node_Servergroup\fetchNodeList(), fetchNodeList(), fileDelete(), fileInfo(), fileList(), fileRename(), TeamSpeak3_Node_Host\getAdapter(), TeamSpeak3_Node_Host\getAdapterHost(), TeamSpeak3_Node_Host\getAdapterPort(), getLevel(), getPathway(), TeamSpeak3_Node_Channelgroup\getUniqueId(), TeamSpeak3_Node_Servergroup\getUniqueId(), TeamSpeak3_Node_Client\getUniqueId(), getUniqueId(), TeamSpeak3_Node_Server\getUniqueId(), TeamSpeak3_Node_Channelgroup\iconDownload(), TeamSpeak3_Node_Servergroup\iconDownload(), TeamSpeak3_Node_Client\iconDownload(), iconDownload(), TeamSpeak3_Node_Client\infoDb(), isSpacer(), TeamSpeak3_Node_Client\kick(), TeamSpeak3_Node_Client\memberOf(), message(), TeamSpeak3_Node_Client\modifyDb(), TeamSpeak3_Node_Client\move(), move(), TeamSpeak3_Node_Channelgroup\permAssign(), TeamSpeak3_Node_Servergroup\permAssign(), TeamSpeak3_Node_Client\permAssign(), permAssign(), TeamSpeak3_Node_Servergroup\permList(), TeamSpeak3_Node_Channelgroup\permList(), TeamSpeak3_Node_Client\permList(), permList(), TeamSpeak3_Node_Channelgroup\permRemove(), TeamSpeak3_Node_Servergroup\permRemove(), TeamSpeak3_Node_Client\permRemove(), permRemove(), TeamSpeak3_Node_Client\poke(), TeamSpeak3_Node_Abstract\prepare(), TeamSpeak3_Node_Channelgroup\privilegeKeyCreate(), TeamSpeak3_Node_Servergroup\privilegeKeyCreate(), TeamSpeak3_Node_Client\remServerGroup(), TeamSpeak3_Node_Channelgroup\rename(), TeamSpeak3_Node_Servergroup\rename(), TeamSpeak3_Node_Abstract\request(), TeamSpeak3_Node_Server\request(), TeamSpeak3_Node_Client\setChannelGroup(), TeamSpeak3_Node_Server\snapshotDeploy(), spacerGetAlign(), spacerGetType(), TeamSpeak3_Node_Server\start(), TeamSpeak3_Node_Server\stop(), subChannelList(), TeamSpeak3_Node_Server\transferInitDownload(), and TeamSpeak3_Node_Server\transferInitUpload().
|
inherited |
Returns the primary ID of the current node.
Definition at line 115 of file Abstract.php.
References TeamSpeak3_Node_Abstract\$nodeId.
Referenced by TeamSpeak3_Node_Client\ban(), TeamSpeak3_Node_Server\channelDelete(), TeamSpeak3_Node_Server\channelFileList(), TeamSpeak3_Node_Servergroup\clientAdd(), TeamSpeak3_Node_Servergroup\clientDel(), clientList(), TeamSpeak3_Node_Channelgroup\clientList(), TeamSpeak3_Node_Servergroup\clientList(), clientPermAssign(), clientPermList(), clientPermRemove(), TeamSpeak3_Node_Channelgroup\copy(), TeamSpeak3_Node_Servergroup\copy(), TeamSpeak3_Node_Servergroup\delete(), TeamSpeak3_Node_Channelgroup\delete(), delete(), TeamSpeak3_Node_Server\delete(), dirCreate(), TeamSpeak3_Node_Client\fetchNodeInfo(), fetchNodeInfo(), TeamSpeak3_Node_Channelgroup\fetchNodeList(), TeamSpeak3_Node_Servergroup\fetchNodeList(), fetchNodeList(), fileDelete(), fileInfo(), fileList(), fileRename(), getLevel(), getPathway(), TeamSpeak3_Node_Channelgroup\getUniqueId(), TeamSpeak3_Node_Servergroup\getUniqueId(), TeamSpeak3_Node_Client\getUniqueId(), getUniqueId(), TeamSpeak3_Node_Server\getUniqueId(), TeamSpeak3_Node_Client\kick(), TeamSpeak3_Node_Client\message(), message(), TeamSpeak3_Node_Server\message(), TeamSpeak3_Node_Client\modify(), modify(), TeamSpeak3_Node_Client\move(), move(), TeamSpeak3_Node_Channelgroup\permAssign(), TeamSpeak3_Node_Servergroup\permAssign(), permAssign(), TeamSpeak3_Node_Servergroup\permList(), TeamSpeak3_Node_Channelgroup\permList(), permList(), TeamSpeak3_Node_Channelgroup\permRemove(), TeamSpeak3_Node_Servergroup\permRemove(), permRemove(), TeamSpeak3_Node_Client\poke(), TeamSpeak3_Node_Channelgroup\privilegeKeyCreate(), TeamSpeak3_Node_Servergroup\privilegeKeyCreate(), TeamSpeak3_Node_Channelgroup\rename(), TeamSpeak3_Node_Servergroup\rename(), TeamSpeak3_Node_Server\request(), TeamSpeak3_Node_Server\sortGroupList(), spacerGetAlign(), spacerGetType(), TeamSpeak3_Node_Server\start(), TeamSpeak3_Node_Server\stop(), and subChannelList().
|
inherited |
Returns TRUE if the node icon has a local source.
string | $key |
Definition at line 126 of file Abstract.php.
Referenced by TeamSpeak3_Node_Channelgroup\iconDownload(), TeamSpeak3_Node_Servergroup\iconDownload(), TeamSpeak3_Node_Client\iconDownload(), iconDownload(), and TeamSpeak3_Node_Server\iconDownload().
|
inherited |
Returns the internal path of the node icon.
string | $key |
Definition at line 137 of file Abstract.php.
Referenced by TeamSpeak3_Node_Abstract\getInfo(), TeamSpeak3_Node_Channelgroup\iconDownload(), TeamSpeak3_Node_Servergroup\iconDownload(), TeamSpeak3_Node_Client\iconDownload(), iconDownload(), and TeamSpeak3_Node_Server\iconDownload().
|
inherited |
Returns a possible classname for the node which can be used as a HTML property.
string | $prefix |
Definition at line 150 of file Abstract.php.
References TeamSpeak3_Helper_String\factory().
|
inherited |
Returns the HTML code to display a TeamSpeak 3 viewer.
TeamSpeak3_Viewer_Interface | $viewer |
Definition at line 191 of file Abstract.php.
References TeamSpeak3_Viewer_Interface\fetchObject().
|
protectedinherited |
Filters given node list array using specified filter rules.
array | $nodes | |
array | $rules |
Definition at line 221 of file Abstract.php.
Referenced by TeamSpeak3_Node_Server\channelGroupList(), TeamSpeak3_Node_Server\channelList(), clientList(), TeamSpeak3_Node_Server\clientList(), TeamSpeak3_Node_Server\serverGroupList(), TeamSpeak3_Node_Host\serverList(), and subChannelList().
|
inherited |
Returns all information available on this node.
If $convert is enabled, some property values will be converted to human-readable values.
boolean | $extend | |
boolean | $convert |
Definition at line 263 of file Abstract.php.
References TeamSpeak3_Node_Abstract\$nodeInfo, TeamSpeak3_Helper_Convert\bytes(), TeamSpeak3_Helper_String\factory(), TeamSpeak3_Node_Abstract\fetchNodeInfo(), TeamSpeak3_Node_Abstract\iconGetName(), TeamSpeak3_Helper_Convert\seconds(), and TeamSpeak3_Helper_Convert\version().
|
inherited |
Returns the specified property or a pre-defined default value from the node info array.
string | $property | |
mixed | $default |
Definition at line 321 of file Abstract.php.
References TeamSpeak3_Node_Abstract\fetchNodeInfo(), and TeamSpeak3_Node_Abstract\offsetExists().
Referenced by TeamSpeak3_Node_Server\sortClientList(), and TeamSpeak3_Node_Server\sortGroupList().
|
inherited |
Returns a string representation of this node.
Definition at line 351 of file Abstract.php.
References TeamSpeak3_Node_Abstract\__toString().
|
inherited |
Returns an assoc array filled with current node info properties.
Definition at line 361 of file Abstract.php.
References TeamSpeak3_Node_Abstract\$nodeList.
Referenced by TeamSpeak3_Node_Server\channelFileInfo().
|
inherited |
Called whenever we're using an unknown method.
string | $name | |
array | $args |
TeamSpeak3_Node_Exception |
Definition at line 374 of file Abstract.php.
References TeamSpeak3_Node_Abstract\getParent().
|
protectedinherited |
Writes data to the internal storage array.
string | $key | |
mixed | $val |
Definition at line 391 of file Abstract.php.
Referenced by TeamSpeak3_Node_Host\login(), TeamSpeak3_Node_Host\serverSelect(), TeamSpeak3_Node_Host\serverSelectByPort(), TeamSpeak3_Node_Host\setExcludeQueryClients(), TeamSpeak3_Node_Host\setLoadClientlistFirst(), TeamSpeak3_Node_Host\setPredefinedQueryName(), and TeamSpeak3_Node_Host\setUseOfflineAsVirtual().
|
protectedinherited |
Returns data from the internal storage array.
string | $key | |
mixed | $default |
Definition at line 403 of file Abstract.php.
Referenced by TeamSpeak3_Node_Host\__wakeup().
|
protectedinherited |
Deletes data from the internal storage array.
string | $key |
Definition at line 414 of file Abstract.php.
Referenced by TeamSpeak3_Node_Host\logout(), and TeamSpeak3_Node_Host\serverDeselect().
|
inherited |
Commit pending data.
Definition at line 424 of file Abstract.php.
|
protectedinherited |
Definition at line 448 of file Abstract.php.
Referenced by TeamSpeak3_Node_Client\modify(), modify(), TeamSpeak3_Node_Host\modify(), and TeamSpeak3_Node_Server\modify().
|
protectedinherited |
Definition at line 456 of file Abstract.php.
References TeamSpeak3_Node_Abstract\fetchNodeList().
Referenced by TeamSpeak3_Node_Abstract\count(), TeamSpeak3_Node_Abstract\current(), TeamSpeak3_Node_Abstract\getChildren(), TeamSpeak3_Node_Abstract\hasChildren(), TeamSpeak3_Node_Abstract\hasNext(), TeamSpeak3_Node_Abstract\key(), TeamSpeak3_Node_Abstract\next(), TeamSpeak3_Node_Abstract\rewind(), and TeamSpeak3_Node_Abstract\valid().
|
protectedinherited |
Definition at line 467 of file Abstract.php.
Referenced by TeamSpeak3_Node_Server\channelList(), TeamSpeak3_Node_Server\channelListReset(), TeamSpeak3_Node_Server\clientList(), TeamSpeak3_Node_Server\clientListReset(), TeamSpeak3_Node_Host\serverList(), and TeamSpeak3_Node_Host\serverListReset().
|
inherited |
Definition at line 475 of file Abstract.php.
References TeamSpeak3_Node_Abstract\verifyNodeList().
Referenced by TeamSpeak3_Node_Server\channelFileList(), TeamSpeak3_Node_Server\channelGroupCopy(), TeamSpeak3_Node_Abstract\hasNext(), TeamSpeak3_Node_Server\permRemoveAny(), and TeamSpeak3_Node_Server\serverGroupCopy().
|
inherited |
Definition at line 485 of file Abstract.php.
References TeamSpeak3_Node_Abstract\verifyNodeList().
Referenced by TeamSpeak3_Node_Server\channelClientPermAssign(), TeamSpeak3_Node_Server\channelClientPermRemove(), TeamSpeak3_Node_Server\channelGroupPermAssign(), TeamSpeak3_Node_Server\channelGroupPermRemove(), TeamSpeak3_Node_Server\channelPermAssign(), TeamSpeak3_Node_Server\channelPermRemove(), TeamSpeak3_Node_Server\clientCountDb(), TeamSpeak3_Node_Server\clientPermAssign(), TeamSpeak3_Node_Server\clientPermRemove(), TeamSpeak3_Node_Abstract\getChildren(), TeamSpeak3_Node_Abstract\hasChildren(), TeamSpeak3_Node_Host\permissionFind(), TeamSpeak3_Node_Host\selfPermCheck(), TeamSpeak3_Node_Server\serverGroupPermAssign(), TeamSpeak3_Node_Host\serverGroupPermAutoAssign(), TeamSpeak3_Node_Host\serverGroupPermAutoRemove(), and TeamSpeak3_Node_Server\serverGroupPermRemove().
|
inherited |
Definition at line 495 of file Abstract.php.
References TeamSpeak3_Node_Abstract\current(), and TeamSpeak3_Node_Abstract\verifyNodeList().
|
inherited |
Definition at line 505 of file Abstract.php.
References TeamSpeak3_Node_Abstract\current(), and TeamSpeak3_Node_Abstract\verifyNodeList().
|
inherited |
Definition at line 515 of file Abstract.php.
References TeamSpeak3_Node_Abstract\count(), TeamSpeak3_Node_Abstract\key(), and TeamSpeak3_Node_Abstract\verifyNodeList().
|
inherited |
Definition at line 525 of file Abstract.php.
References TeamSpeak3_Node_Abstract\verifyNodeList().
Referenced by TeamSpeak3_Node_Abstract\hasNext(), and TeamSpeak3_Node_Abstract\valid().
|
inherited |
Definition at line 535 of file Abstract.php.
References TeamSpeak3_Node_Abstract\key(), and TeamSpeak3_Node_Abstract\verifyNodeList().
|
inherited |
Definition at line 545 of file Abstract.php.
References TeamSpeak3_Node_Abstract\verifyNodeList().
|
inherited |
Definition at line 555 of file Abstract.php.
References TeamSpeak3_Node_Abstract\verifyNodeList().
|
inherited |
Definition at line 565 of file Abstract.php.
Referenced by TeamSpeak3_Node_Abstract\getProperty(), and TeamSpeak3_Node_Abstract\offsetGet().
|
inherited |
Definition at line 573 of file Abstract.php.
References TeamSpeak3_Node_Abstract\fetchNodeInfo(), and TeamSpeak3_Node_Abstract\offsetExists().
Referenced by TeamSpeak3_Node_Abstract\__get().
|
inherited |
Definition at line 593 of file Abstract.php.
Referenced by TeamSpeak3_Node_Abstract\__set().
|
inherited |
Definition at line 606 of file Abstract.php.
|
inherited |
Definition at line 614 of file Abstract.php.
References TeamSpeak3_Node_Abstract\offsetGet().
|
inherited |
Definition at line 622 of file Abstract.php.
References TeamSpeak3_Node_Abstract\offsetSet().
|
protectedinherited |
Definition at line 37 of file Abstract.php.
Referenced by TeamSpeak3_Node_Abstract\getParent().
|
protectedinherited |
Definition at line 42 of file Abstract.php.
Referenced by __construct(), TeamSpeak3_Node_Channelgroup\__construct(), TeamSpeak3_Node_Client\__construct(), TeamSpeak3_Node_Servergroup\__construct(), TeamSpeak3_Node_Host\__wakeup(), TeamSpeak3_Node_Host\fetchNodeList(), TeamSpeak3_Node_Host\serverCreate(), TeamSpeak3_Node_Host\serverGetByName(), TeamSpeak3_Node_Host\serverGetByUid(), and TeamSpeak3_Node_Host\serverList().
|
protectedinherited |
Definition at line 47 of file Abstract.php.
Referenced by TeamSpeak3_Node_Abstract\getId().
|
protectedinherited |
Definition at line 52 of file Abstract.php.
Referenced by TeamSpeak3_Node_Abstract\toArray().
|
protectedinherited |
Definition at line 57 of file Abstract.php.
Referenced by TeamSpeak3_Node_Abstract\getInfo().
|
protectedinherited |
Definition at line 62 of file Abstract.php.