diff options
Diffstat (limited to 'data/example/channels.php')
-rw-r--r-- | data/example/channels.php | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/data/example/channels.php b/data/example/channels.php new file mode 100644 index 0000000..13a6b6a --- /dev/null +++ b/data/example/channels.php @@ -0,0 +1,15 @@ +<?php +/* + * @package AJAX_Chat + * @author Sebastian Tschan + * @copyright (c) Sebastian Tschan + * @license Modified MIT License + * @link https://blueimp.net/ajax/ + */ + +// List containing the custom channels: +$channels = array(); + +// Sample channel list: +$channels[0] = 'Public'; +$channels[1] = 'Private'; |