You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
672 B
PHP
26 lines
672 B
PHP
<?php
|
|
function createChannel($server, $name, $parent, $options) {
|
|
$id = $server->channelCreate(array(
|
|
'channel_name' => $name,
|
|
'channel_flag_semi_permanent' => TRUE,
|
|
'cpid' => $parent->getId()
|
|
));
|
|
if($options['inherit_icons']) {
|
|
$icon = $parent->getProperty('channel_icon_id');
|
|
|
|
// check if parent channel actually has an icon
|
|
if($icon !== 0) {
|
|
$server->channelPermAssign($id, "i_icon_id", $icon);
|
|
}
|
|
}
|
|
}
|
|
|
|
function catchExceptions($name, $excpetions) {
|
|
foreach($excpetions as $exception) {
|
|
if($name == $exception) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|