Warning: file_get_contents(https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/ru.json): Failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in /home/monara/public_html/test.athavaneng.com/themes.php on line 99

Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 226

Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 227

Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 228

Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 229

Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 230

Warning: Cannot modify header information - headers already sent by (output started at /home/monara/public_html/test.athavaneng.com/themes.php:1) in /home/monara/public_html/test.athavaneng.com/themes.php on line 231
. namespace mod_bigbluebuttonbn; /** * Class plugin. * * @package mod_bigbluebuttonbn * @copyright 2019 onwards, Blindside Networks Inc * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later * @author Darko Miletic (darko.miletic [at] gmail [dt] com) */ abstract class plugin { /** * Component name. */ const COMPONENT = 'mod_bigbluebuttonbn'; /** * Helper function to convert an html string to plain text. * * @param string $html * @param int $len * * @return string */ public static function html2text($html, $len = 0) { $text = strip_tags($html); $text = str_replace(' ', ' ', $text); $textlen = strlen($text); $text = mb_substr($text, 0, $len); if ($textlen > $len) { $text .= '...'; } return $text; } /** * Helper generates a random password. * * @param int $length * @param string $unique * * @return string */ public static function random_password($length = 8, $unique = "") { $chars = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'; do { $password = substr(str_shuffle($chars), 0, $length); } while ($unique == $password); return $password; } /** * Generate random credentials for guest access * * @return array */ public static function generate_guest_meeting_credentials(): array { $password = self::random_password(); $guestlinkuid = sha1(self::random_password(1024)); return [$guestlinkuid, $password]; } }