├── .codeclimate.yml ├── .editorconfig ├── .github ├── CONTRIBUTING.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── BUG_REPORT.yml │ ├── FEATURE_REQUEST.yml │ ├── QUESTION.yml │ └── config.yml ├── PULL_REQUEST_TEMPLATE.md ├── codecov.yml └── workflows │ ├── build-release.yml │ ├── build-release │ ├── .gitignore │ ├── CoreImage.php │ ├── JsonCoreImage.php │ ├── JsonPharCoreImage.php │ ├── OsHelper.php │ ├── SqlpharCoreImage.php │ ├── e107_make.php │ └── make.ini │ ├── test-acceptance.yml │ └── test-unit.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── SECURITY.md ├── banner.php ├── class2.php ├── comment.php ├── composer.json ├── composer.lock ├── contact.php ├── credits.php ├── cron.php ├── download.php ├── e107.htaccess ├── e107.robots.txt ├── e107_admin ├── admin.php ├── admin_log.php ├── administrator.php ├── auth.php ├── banlist.php ├── banlist_export.php ├── boot.php ├── cache.php ├── comment.php ├── cpage.php ├── credits.php ├── cron.php ├── db.php ├── docs.php ├── e107_update.php ├── emoticon.php ├── eurl.php ├── fileinspector.php ├── filemanager.php ├── fla.php ├── footer.php ├── frontpage.php ├── header.php ├── history.php ├── image.php ├── includes │ ├── categories.php │ ├── classis.php │ ├── combo.php │ ├── compact.php │ ├── flexpanel.php │ ├── infopanel.php │ ├── layouts │ │ ├── flexpanel.php │ │ ├── flexpanel_default.php │ │ ├── flexpanel_default.png │ │ ├── flexpanel_one_col.php │ │ ├── flexpanel_one_col.png │ │ ├── flexpanel_three_col_bricks.php │ │ ├── flexpanel_three_col_bricks.png │ │ ├── flexpanel_three_col_stacked.php │ │ ├── flexpanel_three_col_stacked.png │ │ ├── flexpanel_two_col_bricks.php │ │ ├── flexpanel_two_col_bricks.png │ │ ├── flexpanel_two_col_stacked.php │ │ ├── flexpanel_two_col_stacked.png │ │ ├── flexpanel_wider_sidebar.php │ │ └── flexpanel_wider_sidebar.png │ └── tabbed.php ├── index.php ├── lancheck.php ├── language.php ├── links.php ├── mailout.php ├── menus.php ├── message.php ├── meta.php ├── modcomment.php ├── newspost.php ├── notify.php ├── phpinfo.php ├── plugin.php ├── prefs.php ├── search.php ├── theme.php ├── ugflag.php ├── update_routines.php ├── updateadmin.php ├── upload.php ├── userclass2.php ├── users.php ├── users_extended.php ├── ver.php └── wmessage.php ├── e107_core ├── bbcodes │ ├── _br.bb │ ├── b.bb │ ├── bb_alert.php │ ├── bb_block.php │ ├── bb_code.php │ ├── bb_glyph.php │ ├── bb_h.php │ ├── bb_img.php │ ├── bb_nobr.php │ ├── bb_p.php │ ├── bb_video.php │ ├── bb_youtube.php │ ├── blockquote.bb │ ├── br.bb │ ├── center.bb │ ├── color.bb │ ├── email.bb │ ├── file.bb │ ├── flash.bb │ ├── hide.bb │ ├── html.bb │ ├── i.bb │ ├── index.html │ ├── justify.bb │ ├── left.bb │ ├── link.bb │ ├── list.bb │ ├── quote.bb │ ├── right.bb │ ├── sanitised.bb │ ├── size.bb │ ├── spoiler.bb │ ├── stream.bb │ ├── table.bb │ ├── tbody.bb │ ├── td.bb │ ├── textarea.bb │ ├── th.bb │ ├── time.bb │ ├── tr.bb │ ├── u.bb │ └── url.bb ├── controllers │ ├── index │ │ └── index.php │ └── system │ │ ├── error.php │ │ ├── index.php │ │ └── xup.php ├── fonts │ ├── chaostimes.ttf │ ├── crazy_style.ttf │ └── puchakhonmagnifier3.ttf ├── index.html ├── override │ ├── controllers │ │ └── index.html │ └── url │ │ └── index.html ├── shortcodes │ ├── batch │ │ ├── admin_shortcodes.php │ │ ├── bbcode_shortcodes.php │ │ ├── comment_shortcodes.php │ │ ├── contact_shortcodes.php │ │ ├── error_shortcodes.php │ │ ├── fpw_shortcodes.php │ │ ├── index.html │ │ ├── login_shortcodes.php │ │ ├── membersonly_shortcodes.php │ │ ├── navigation_shortcodes.php │ │ ├── navigation_shortcodes_legacy.php │ │ ├── news_archive_shortcodes.php │ │ ├── news_shortcodes.php │ │ ├── news_shortcodes_legacy.php │ │ ├── page_shortcodes.php │ │ ├── search_shortcodes.php │ │ ├── signup_shortcodes.php │ │ ├── sitedown_shortcodes.php │ │ ├── user_shortcodes.php │ │ └── usersettings_shortcodes.php │ └── single │ │ ├── alerts.php │ │ ├── breadcrumb.sc │ │ ├── custom.php │ │ ├── e_image.sc │ │ ├── email.sc │ │ ├── email_item.sc │ │ ├── emailto.sc │ │ ├── extended.sc │ │ ├── extended_icon.sc │ │ ├── extended_text.sc │ │ ├── extended_value.sc │ │ ├── glyph.php │ │ ├── iconpicker.php │ │ ├── imagepreview.php │ │ ├── imageselector.php │ │ ├── imageselector.sc │ │ ├── index.html │ │ ├── lan.php │ │ ├── languagelinks.php │ │ ├── linkstyle.sc │ │ ├── menu.php │ │ ├── menuarea.php │ │ ├── navigation.php │ │ ├── news_categories.sc │ │ ├── news_category.sc │ │ ├── newsfile.sc │ │ ├── newsimage.sc │ │ ├── nextprev.php │ │ ├── picture.sc │ │ ├── plugin.php │ │ ├── print_item.sc │ │ ├── profile.sc │ │ ├── search.php │ │ ├── setimage.php │ │ ├── setstyle.php │ │ ├── sitecontactinfo.sc │ │ ├── sitelinks.sc │ │ ├── sitelinks_alt.php │ │ ├── stylesheet.sc │ │ ├── sublinks.php │ │ ├── theme.php │ │ ├── uploadfile.php │ │ ├── url.php │ │ ├── url.sc │ │ ├── user_avatar.php │ │ ├── user_extended.php │ │ ├── usersearch.php │ │ └── wmessage.php ├── sql │ ├── core_sql.php │ ├── db_field_defs.php │ ├── extended_country.php │ └── extended_timezones.php ├── templates │ ├── admin_icons_template.php │ ├── admin_template.php │ ├── bbcode_template.php │ ├── bootstrap4 │ │ ├── comment_template.php │ │ ├── navigation_template.php │ │ ├── user_template.php │ │ └── usersettings_template.php │ ├── bootstrap5 │ │ └── fpw_template.php │ ├── chapter_template.php │ ├── comment_template.php │ ├── contact_template.php │ ├── email_template.php │ ├── error_template.php │ ├── footer_default.php │ ├── fpw_template.php │ ├── header_default.php │ ├── index.html │ ├── legacy │ │ ├── fpw_template.php │ │ ├── search_template.php │ │ ├── signup_template.php │ │ ├── user_template.php │ │ └── usersettings_template.php │ ├── login_template.php │ ├── membersonly_template.php │ ├── menu_template.php │ ├── navigation_template.php │ ├── nextprev_template.php │ ├── online_template.php │ ├── page_template.php │ ├── print_template.php │ ├── search_template.php │ ├── signup_template.php │ ├── sitedown_template.php │ ├── user_template.php │ ├── userposts_template.php │ └── usersettings_template.php ├── url │ ├── news │ │ ├── sef_full_url.php │ │ ├── sef_noid_url.php │ │ ├── sef_url.php │ │ └── url.php │ ├── page │ │ ├── sef_chapters_url.php │ │ ├── sef_noid_url.php │ │ ├── sef_url.php │ │ └── url.php │ ├── search │ │ ├── rewrite_url.php │ │ └── url.php │ ├── system │ │ ├── rewrite_url.php │ │ └── url.php │ └── user │ │ ├── rewrite_url.php │ │ └── url.php └── xml │ ├── default_install.xml │ └── user_extended.xml ├── e107_docs ├── README.html ├── README_UPGRADE.html ├── gpl.txt ├── help │ └── English │ │ ├── Administrators │ │ ├── BBCode │ │ ├── Banlist │ │ ├── Banners │ │ ├── Cache │ │ ├── Chatbox │ │ ├── Classes │ │ ├── Downloads │ │ ├── Emoticons │ │ ├── Errors │ │ ├── Forums │ │ ├── Front_Page │ │ ├── Help! │ │ ├── Links │ │ ├── Maintainance │ │ ├── Menus │ │ ├── News │ │ ├── Preferences │ │ ├── Uploads │ │ ├── Users │ │ └── Welcome_Message ├── index.html └── style.css ├── e107_handlers ├── Shims │ ├── AllShims.php │ ├── Internal │ │ ├── GetParentClassTrait.php │ │ ├── ReadfileTrait.php │ │ ├── StrftimeTrait.php │ │ └── StrptimeTrait.php │ ├── InternalShims.php │ ├── InternalShimsTrait.php │ └── eShims.php ├── admin_handler.php ├── admin_log_class.php ├── admin_ui.php ├── application.php ├── arraystorage_class.php ├── avatar_handler.php ├── bbcode_handler.php ├── benchmark.php ├── bounce_handler.php ├── cache_handler.php ├── chart_class.php ├── cli_class.php ├── comment_class.php ├── core_functions.php ├── cron_class.php ├── date_handler.php ├── db_debug_class.php ├── db_table_admin_class.php ├── db_verify_class.php ├── debug_handler.php ├── e107Url.php ├── e107_class.php ├── e_ajax_class.php ├── e_customfields_class.php ├── e_db_interface.php ├── e_db_legacy_trait.php ├── e_db_pdo_class.php ├── e_emote_class.php ├── e_file_inspector.php ├── e_file_inspector_interface.php ├── e_file_inspector_json.php ├── e_file_inspector_json_phar.php ├── e_file_inspector_sqlphar.php ├── e_marketplace.php ├── e_parse_class.php ├── e_pluginbuilder_class.php ├── e_profanity_class.php ├── e_ranks_class.php ├── e_render_class.php ├── e_signup_class.php ├── e_thumbnail_class.php ├── e_upgrade_class.php ├── emailprint_class.php ├── emote.php ├── error_page_class.php ├── event_class.php ├── file_class.php ├── form_handler.php ├── index.html ├── iphandler_class.php ├── js_helper.php ├── js_manager.php ├── jslib_handler.php ├── language_class.php ├── library_manager.php ├── login.php ├── magpie_rss.php ├── mail.php ├── mail_manager_class.php ├── mail_template_class.php ├── mail_validation_class.php ├── mailout_admin_class.php ├── mailout_class.php ├── media_class.php ├── menu_class.php ├── menumanager_class.php ├── message_handler.php ├── model_class.php ├── mysql_class.php ├── news_class.php ├── notify_class.php ├── online_class.php ├── override_class.php ├── pclerror.lib.php ├── pcltar.lib.php ├── pcltrace.lib.php ├── pclzip.lib.php ├── php_compatibility_handler.php ├── plugin_class.php ├── pop3_class.php ├── pop_bounce_handler.php ├── pref_class.php ├── rate_class.php ├── redirection_class.php ├── ren_help.php ├── resize_handler.php ├── search │ ├── advanced_comment.php │ ├── advanced_news.php │ ├── advanced_pages.php │ ├── advanced_user.php │ ├── comments_download.php │ ├── comments_news.php │ ├── comments_page.php │ ├── comments_user.php │ ├── index.html │ ├── search_comment.php │ ├── search_event.php │ ├── search_news.php │ ├── search_pages.php │ └── search_user.php ├── search_class.php ├── secure_img_handler.php ├── session_handler.php ├── shortcode_handler.php ├── sitelinks_class.php ├── theme_handler.php ├── traffic_class.php ├── traffic_class_display.php ├── upload_handler.php ├── user_extended_class.php ├── user_handler.php ├── user_model.php ├── user_select_class.php ├── userclass_class.php ├── validator_class.php ├── vendor │ ├── .htaccess │ ├── README.md │ ├── autoload.php │ ├── composer │ │ ├── ClassLoader.php │ │ ├── InstalledVersions.php │ │ ├── LICENSE │ │ ├── autoload_classmap.php │ │ ├── autoload_files.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ ├── autoload_static.php │ │ ├── installed.json │ │ └── installed.php │ ├── guzzlehttp │ │ └── psr7 │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ ├── AppendStream.php │ │ │ ├── BufferStream.php │ │ │ ├── CachingStream.php │ │ │ ├── DroppingStream.php │ │ │ ├── FnStream.php │ │ │ ├── Header.php │ │ │ ├── InflateStream.php │ │ │ ├── LazyOpenStream.php │ │ │ ├── LimitStream.php │ │ │ ├── Message.php │ │ │ ├── MessageTrait.php │ │ │ ├── MimeType.php │ │ │ ├── MultipartStream.php │ │ │ ├── NoSeekStream.php │ │ │ ├── PumpStream.php │ │ │ ├── Query.php │ │ │ ├── Request.php │ │ │ ├── Response.php │ │ │ ├── Rfc7230.php │ │ │ ├── ServerRequest.php │ │ │ ├── Stream.php │ │ │ ├── StreamDecoratorTrait.php │ │ │ ├── StreamWrapper.php │ │ │ ├── UploadedFile.php │ │ │ ├── Uri.php │ │ │ ├── UriComparator.php │ │ │ ├── UriNormalizer.php │ │ │ ├── UriResolver.php │ │ │ └── Utils.php │ ├── hybridauth │ │ └── hybridauth │ │ │ ├── CHANGELOG.md │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ ├── CONTRIBUTING.md │ │ │ ├── COPYING.md │ │ │ ├── ISSUE_TEMPLATE.md │ │ │ ├── PULL_REQUEST_TEMPLATE.md │ │ │ ├── README.md │ │ │ └── src │ │ │ ├── Adapter │ │ │ ├── AbstractAdapter.php │ │ │ ├── AdapterInterface.php │ │ │ ├── DataStoreTrait.php │ │ │ ├── OAuth1.php │ │ │ ├── OAuth2.php │ │ │ └── OpenID.php │ │ │ ├── Data │ │ │ ├── Collection.php │ │ │ └── Parser.php │ │ │ ├── Exception │ │ │ ├── AuthorizationDeniedException.php │ │ │ ├── BadMethodCallException.php │ │ │ ├── Exception.php │ │ │ ├── ExceptionInterface.php │ │ │ ├── HttpClientFailureException.php │ │ │ ├── HttpRequestFailedException.php │ │ │ ├── InvalidAccessTokenException.php │ │ │ ├── InvalidApplicationCredentialsException.php │ │ │ ├── InvalidArgumentException.php │ │ │ ├── InvalidAuthorizationCodeException.php │ │ │ ├── InvalidAuthorizationStateException.php │ │ │ ├── InvalidOauthTokenException.php │ │ │ ├── InvalidOpenidIdentifierException.php │ │ │ ├── NotImplementedException.php │ │ │ ├── RuntimeException.php │ │ │ ├── UnexpectedApiResponseException.php │ │ │ └── UnexpectedValueException.php │ │ │ ├── HttpClient │ │ │ ├── Curl.php │ │ │ ├── Guzzle.php │ │ │ ├── HttpClientInterface.php │ │ │ └── Util.php │ │ │ ├── Hybridauth.php │ │ │ ├── Logger │ │ │ ├── Logger.php │ │ │ ├── LoggerInterface.php │ │ │ └── Psr3LoggerWrapper.php │ │ │ ├── Provider │ │ │ ├── AOLOpenID.php │ │ │ ├── Amazon.php │ │ │ ├── Apple.php │ │ │ ├── Authentiq.php │ │ │ ├── AutoDesk.php │ │ │ ├── BitBucket.php │ │ │ ├── Blizzard.php │ │ │ ├── BlizzardAPAC.php │ │ │ ├── BlizzardEU.php │ │ │ ├── DeviantArt.php │ │ │ ├── Discord.php │ │ │ ├── Disqus.php │ │ │ ├── Dribbble.php │ │ │ ├── Dropbox.php │ │ │ ├── Facebook.php │ │ │ ├── Foursquare.php │ │ │ ├── GitHub.php │ │ │ ├── GitLab.php │ │ │ ├── Google.php │ │ │ ├── Instagram.php │ │ │ ├── Keycloak.php │ │ │ ├── LinkedIn.php │ │ │ ├── LinkedInOpenID.php │ │ │ ├── Mastodon.php │ │ │ ├── Medium.php │ │ │ ├── MicrosoftGraph.php │ │ │ ├── ORCID.php │ │ │ ├── OpenID.php │ │ │ ├── Patreon.php │ │ │ ├── Paypal.php │ │ │ ├── PaypalOpenID.php │ │ │ ├── Pinterest.php │ │ │ ├── QQ.php │ │ │ ├── Reddit.php │ │ │ ├── Seznam.php │ │ │ ├── Slack.php │ │ │ ├── Spotify.php │ │ │ ├── StackExchange.php │ │ │ ├── StackExchangeOpenID.php │ │ │ ├── Steam.php │ │ │ ├── SteemConnect.php │ │ │ ├── Strava.php │ │ │ ├── Telegram.php │ │ │ ├── Tumblr.php │ │ │ ├── TwitchTV.php │ │ │ ├── Twitter.php │ │ │ ├── WeChat.php │ │ │ ├── WeChatChina.php │ │ │ ├── WindowsLive.php │ │ │ ├── WordPress.php │ │ │ └── Yahoo.php │ │ │ ├── Storage │ │ │ ├── Session.php │ │ │ └── StorageInterface.php │ │ │ ├── Thirdparty │ │ │ ├── OAuth │ │ │ │ ├── OAuthConsumer.php │ │ │ │ ├── OAuthRequest.php │ │ │ │ ├── OAuthSignatureMethod.php │ │ │ │ ├── OAuthSignatureMethodHMACSHA1.php │ │ │ │ ├── OAuthUtil.php │ │ │ │ └── README.md │ │ │ ├── OpenID │ │ │ │ ├── LightOpenID.php │ │ │ │ └── README.md │ │ │ └── readme.md │ │ │ ├── User │ │ │ ├── Activity.php │ │ │ ├── Contact.php │ │ │ └── Profile.php │ │ │ ├── autoload.php │ │ │ └── index.html │ ├── ifsnop │ │ └── mysqldump-php │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ └── Ifsnop │ │ │ └── Mysqldump │ │ │ └── Mysqldump.php │ ├── index.html │ ├── intervention │ │ └── image │ │ │ ├── LICENSE │ │ │ ├── composer.json │ │ │ ├── provides.json │ │ │ └── src │ │ │ ├── Intervention │ │ │ └── Image │ │ │ │ ├── AbstractColor.php │ │ │ │ ├── AbstractDecoder.php │ │ │ │ ├── AbstractDriver.php │ │ │ │ ├── AbstractEncoder.php │ │ │ │ ├── AbstractFont.php │ │ │ │ ├── AbstractShape.php │ │ │ │ ├── Commands │ │ │ │ ├── AbstractCommand.php │ │ │ │ ├── Argument.php │ │ │ │ ├── ChecksumCommand.php │ │ │ │ ├── CircleCommand.php │ │ │ │ ├── EllipseCommand.php │ │ │ │ ├── ExifCommand.php │ │ │ │ ├── IptcCommand.php │ │ │ │ ├── LineCommand.php │ │ │ │ ├── OrientateCommand.php │ │ │ │ ├── PolygonCommand.php │ │ │ │ ├── PsrResponseCommand.php │ │ │ │ ├── RectangleCommand.php │ │ │ │ ├── ResponseCommand.php │ │ │ │ ├── StreamCommand.php │ │ │ │ └── TextCommand.php │ │ │ │ ├── Constraint.php │ │ │ │ ├── Exception │ │ │ │ ├── ImageException.php │ │ │ │ ├── InvalidArgumentException.php │ │ │ │ ├── MissingDependencyException.php │ │ │ │ ├── NotFoundException.php │ │ │ │ ├── NotReadableException.php │ │ │ │ ├── NotSupportedException.php │ │ │ │ ├── NotWritableException.php │ │ │ │ └── RuntimeException.php │ │ │ │ ├── Facades │ │ │ │ └── Image.php │ │ │ │ ├── File.php │ │ │ │ ├── Filters │ │ │ │ ├── DemoFilter.php │ │ │ │ └── FilterInterface.php │ │ │ │ ├── Gd │ │ │ │ ├── Color.php │ │ │ │ ├── Commands │ │ │ │ │ ├── BackupCommand.php │ │ │ │ │ ├── BlurCommand.php │ │ │ │ │ ├── BrightnessCommand.php │ │ │ │ │ ├── ColorizeCommand.php │ │ │ │ │ ├── ContrastCommand.php │ │ │ │ │ ├── CropCommand.php │ │ │ │ │ ├── DestroyCommand.php │ │ │ │ │ ├── FillCommand.php │ │ │ │ │ ├── FitCommand.php │ │ │ │ │ ├── FlipCommand.php │ │ │ │ │ ├── GammaCommand.php │ │ │ │ │ ├── GetSizeCommand.php │ │ │ │ │ ├── GreyscaleCommand.php │ │ │ │ │ ├── HeightenCommand.php │ │ │ │ │ ├── InsertCommand.php │ │ │ │ │ ├── InterlaceCommand.php │ │ │ │ │ ├── InvertCommand.php │ │ │ │ │ ├── LimitColorsCommand.php │ │ │ │ │ ├── MaskCommand.php │ │ │ │ │ ├── OpacityCommand.php │ │ │ │ │ ├── PickColorCommand.php │ │ │ │ │ ├── PixelCommand.php │ │ │ │ │ ├── PixelateCommand.php │ │ │ │ │ ├── ResetCommand.php │ │ │ │ │ ├── ResizeCanvasCommand.php │ │ │ │ │ ├── ResizeCommand.php │ │ │ │ │ ├── RotateCommand.php │ │ │ │ │ ├── SharpenCommand.php │ │ │ │ │ ├── TrimCommand.php │ │ │ │ │ └── WidenCommand.php │ │ │ │ ├── Decoder.php │ │ │ │ ├── Driver.php │ │ │ │ ├── Encoder.php │ │ │ │ ├── Font.php │ │ │ │ └── Shapes │ │ │ │ │ ├── CircleShape.php │ │ │ │ │ ├── EllipseShape.php │ │ │ │ │ ├── LineShape.php │ │ │ │ │ ├── PolygonShape.php │ │ │ │ │ └── RectangleShape.php │ │ │ │ ├── Image.php │ │ │ │ ├── ImageManager.php │ │ │ │ ├── ImageManagerStatic.php │ │ │ │ ├── ImageServiceProvider.php │ │ │ │ ├── ImageServiceProviderLaravel4.php │ │ │ │ ├── ImageServiceProviderLaravelRecent.php │ │ │ │ ├── ImageServiceProviderLeague.php │ │ │ │ ├── ImageServiceProviderLumen.php │ │ │ │ ├── Imagick │ │ │ │ ├── Color.php │ │ │ │ ├── Commands │ │ │ │ │ ├── BackupCommand.php │ │ │ │ │ ├── BlurCommand.php │ │ │ │ │ ├── BrightnessCommand.php │ │ │ │ │ ├── ColorizeCommand.php │ │ │ │ │ ├── ContrastCommand.php │ │ │ │ │ ├── CropCommand.php │ │ │ │ │ ├── DestroyCommand.php │ │ │ │ │ ├── ExifCommand.php │ │ │ │ │ ├── FillCommand.php │ │ │ │ │ ├── FitCommand.php │ │ │ │ │ ├── FlipCommand.php │ │ │ │ │ ├── GammaCommand.php │ │ │ │ │ ├── GetSizeCommand.php │ │ │ │ │ ├── GreyscaleCommand.php │ │ │ │ │ ├── HeightenCommand.php │ │ │ │ │ ├── InsertCommand.php │ │ │ │ │ ├── InterlaceCommand.php │ │ │ │ │ ├── InvertCommand.php │ │ │ │ │ ├── LimitColorsCommand.php │ │ │ │ │ ├── MaskCommand.php │ │ │ │ │ ├── OpacityCommand.php │ │ │ │ │ ├── PickColorCommand.php │ │ │ │ │ ├── PixelCommand.php │ │ │ │ │ ├── PixelateCommand.php │ │ │ │ │ ├── ResetCommand.php │ │ │ │ │ ├── ResizeCanvasCommand.php │ │ │ │ │ ├── ResizeCommand.php │ │ │ │ │ ├── RotateCommand.php │ │ │ │ │ ├── SharpenCommand.php │ │ │ │ │ ├── TrimCommand.php │ │ │ │ │ └── WidenCommand.php │ │ │ │ ├── Decoder.php │ │ │ │ ├── Driver.php │ │ │ │ ├── Encoder.php │ │ │ │ ├── Font.php │ │ │ │ └── Shapes │ │ │ │ │ ├── CircleShape.php │ │ │ │ │ ├── EllipseShape.php │ │ │ │ │ ├── LineShape.php │ │ │ │ │ ├── PolygonShape.php │ │ │ │ │ └── RectangleShape.php │ │ │ │ ├── Point.php │ │ │ │ ├── Response.php │ │ │ │ └── Size.php │ │ │ └── config │ │ │ └── config.php │ ├── matthiasmullie │ │ ├── minify │ │ │ ├── LICENSE │ │ │ ├── bin │ │ │ │ ├── minifycss │ │ │ │ └── minifyjs │ │ │ ├── composer.json │ │ │ ├── data │ │ │ │ └── js │ │ │ │ │ ├── keywords_after.txt │ │ │ │ │ ├── keywords_before.txt │ │ │ │ │ ├── keywords_reserved.txt │ │ │ │ │ ├── operators.txt │ │ │ │ │ ├── operators_after.txt │ │ │ │ │ └── operators_before.txt │ │ │ ├── ruleset.xml │ │ │ └── src │ │ │ │ ├── CSS.php │ │ │ │ ├── Exception.php │ │ │ │ ├── Exceptions │ │ │ │ ├── BasicException.php │ │ │ │ ├── FileImportException.php │ │ │ │ └── IOException.php │ │ │ │ ├── JS.php │ │ │ │ └── Minify.php │ │ └── path-converter │ │ │ ├── LICENSE │ │ │ ├── composer.json │ │ │ └── src │ │ │ ├── Converter.php │ │ │ ├── ConverterInterface.php │ │ │ └── NoConverter.php │ ├── phpmailer │ │ └── phpmailer │ │ │ ├── COMMITMENT │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── SECURITY.md │ │ │ ├── VERSION │ │ │ ├── composer.json │ │ │ ├── get_oauth_token.php │ │ │ ├── language │ │ │ ├── phpmailer.lang-af.php │ │ │ ├── phpmailer.lang-ar.php │ │ │ ├── phpmailer.lang-as.php │ │ │ ├── phpmailer.lang-az.php │ │ │ ├── phpmailer.lang-ba.php │ │ │ ├── phpmailer.lang-be.php │ │ │ ├── phpmailer.lang-bg.php │ │ │ ├── phpmailer.lang-bn.php │ │ │ ├── phpmailer.lang-ca.php │ │ │ ├── phpmailer.lang-cs.php │ │ │ ├── phpmailer.lang-da.php │ │ │ ├── phpmailer.lang-de.php │ │ │ ├── phpmailer.lang-el.php │ │ │ ├── phpmailer.lang-eo.php │ │ │ ├── phpmailer.lang-es.php │ │ │ ├── phpmailer.lang-et.php │ │ │ ├── phpmailer.lang-fa.php │ │ │ ├── phpmailer.lang-fi.php │ │ │ ├── phpmailer.lang-fo.php │ │ │ ├── phpmailer.lang-fr.php │ │ │ ├── phpmailer.lang-gl.php │ │ │ ├── phpmailer.lang-he.php │ │ │ ├── phpmailer.lang-hi.php │ │ │ ├── phpmailer.lang-hr.php │ │ │ ├── phpmailer.lang-hu.php │ │ │ ├── phpmailer.lang-hy.php │ │ │ ├── phpmailer.lang-id.php │ │ │ ├── phpmailer.lang-it.php │ │ │ ├── phpmailer.lang-ja.php │ │ │ ├── phpmailer.lang-ka.php │ │ │ ├── phpmailer.lang-ko.php │ │ │ ├── phpmailer.lang-ku.php │ │ │ ├── phpmailer.lang-lt.php │ │ │ ├── phpmailer.lang-lv.php │ │ │ ├── phpmailer.lang-mg.php │ │ │ ├── phpmailer.lang-mn.php │ │ │ ├── phpmailer.lang-ms.php │ │ │ ├── phpmailer.lang-nb.php │ │ │ ├── phpmailer.lang-nl.php │ │ │ ├── phpmailer.lang-pl.php │ │ │ ├── phpmailer.lang-pt.php │ │ │ ├── phpmailer.lang-pt_br.php │ │ │ ├── phpmailer.lang-ro.php │ │ │ ├── phpmailer.lang-ru.php │ │ │ ├── phpmailer.lang-si.php │ │ │ ├── phpmailer.lang-sk.php │ │ │ ├── phpmailer.lang-sl.php │ │ │ ├── phpmailer.lang-sr.php │ │ │ ├── phpmailer.lang-sr_latn.php │ │ │ ├── phpmailer.lang-sv.php │ │ │ ├── phpmailer.lang-tl.php │ │ │ ├── phpmailer.lang-tr.php │ │ │ ├── phpmailer.lang-uk.php │ │ │ ├── phpmailer.lang-ur.php │ │ │ ├── phpmailer.lang-vi.php │ │ │ ├── phpmailer.lang-zh.php │ │ │ └── phpmailer.lang-zh_cn.php │ │ │ └── src │ │ │ ├── DSNConfigurator.php │ │ │ ├── Exception.php │ │ │ ├── OAuth.php │ │ │ ├── OAuthTokenProvider.php │ │ │ ├── PHPMailer.php │ │ │ ├── POP3.php │ │ │ └── SMTP.php │ ├── psr │ │ └── http-message │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ ├── MessageInterface.php │ │ │ ├── RequestInterface.php │ │ │ ├── ResponseInterface.php │ │ │ ├── ServerRequestInterface.php │ │ │ ├── StreamInterface.php │ │ │ ├── UploadedFileInterface.php │ │ │ └── UriInterface.php │ └── ralouphie │ │ └── getallheaders │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ └── getallheaders.php └── xml_class.php ├── e107_images ├── admin_images │ ├── admins_16.png │ ├── admins_32.png │ ├── credits_logo.png │ ├── delete_16.png │ ├── delete_32.png │ ├── edit_16.png │ ├── edit_32.png │ ├── facebook_16.png │ ├── failedlogin_16.png │ ├── false_16.png │ ├── false_32.png │ ├── github_16.png │ ├── info_16.png │ ├── info_32.png │ ├── lock_16.png │ ├── nopreview.png │ ├── true_16.png │ ├── true_32.png │ ├── twitter_16.png │ ├── undo_16.png │ ├── undo_32.png │ ├── users_16.png │ ├── users_32.png │ ├── warning_16.png │ └── warning_32.png ├── adminlogo.png ├── avatars │ └── index.html ├── bbcode │ ├── block.png │ ├── blockquote.png │ ├── bold.png │ ├── br.png │ ├── center.png │ ├── code.png │ ├── emotes.png │ ├── flash.png │ ├── fontcol.png │ ├── fontsize.png │ ├── image.png │ ├── italic.png │ ├── justify.png │ ├── left.png │ ├── link.png │ ├── list.png │ ├── newpage.png │ ├── nobr.png │ ├── paragraph.png │ ├── prefile.png │ ├── preimage.png │ ├── right.png │ ├── shortcode.png │ ├── table.png │ ├── template.png │ ├── underline.png │ └── youtube.png ├── button.png ├── e107_icon_16.png ├── e107_icon_32.png ├── emotes │ └── default │ │ ├── alien.png │ │ ├── amazed.png │ │ ├── angry.png │ │ ├── biglaugh.png │ │ ├── cheesey.png │ │ ├── confused.png │ │ ├── cry.png │ │ ├── dead.png │ │ ├── dodge.png │ │ ├── emoticons.xml │ │ ├── frown.png │ │ ├── gah.png │ │ ├── grin.png │ │ ├── heart.png │ │ ├── idea.png │ │ ├── ill.png │ │ ├── mad.png │ │ ├── mistrust.png │ │ ├── neutral.png │ │ ├── question.png │ │ ├── rolleyes.png │ │ ├── sad.png │ │ ├── shades.png │ │ ├── shy.png │ │ ├── smile.png │ │ ├── special.png │ │ ├── suprised.png │ │ ├── tongue.png │ │ └── wink.png ├── fileinspector │ ├── blank.png │ ├── close.png │ ├── contract.png │ ├── expand.png │ ├── file.png │ ├── file_check.png │ ├── file_core.png │ ├── file_fail.png │ ├── file_missing.png │ ├── file_old.png │ ├── file_uncalc.png │ ├── file_unknown.png │ ├── file_warning.png │ ├── fileinspector.png │ ├── folder.png │ ├── folder_check.png │ ├── folder_core.png │ ├── folder_fail.png │ ├── folder_missing.png │ ├── folder_old.png │ ├── folder_old_dir.png │ ├── folder_root.png │ ├── folder_unknown.png │ ├── folder_up.png │ ├── folder_warning.png │ ├── forward.png │ ├── info.png │ ├── integrity_fail.png │ ├── integrity_pass.png │ └── warning.png ├── filemanager │ ├── def.png │ ├── default.png │ ├── del.png │ ├── exe.png │ ├── folder.png │ ├── gif.png │ ├── home.png │ ├── htm.png │ ├── jpg.png │ ├── js.png │ ├── link.png │ ├── mp3.png │ ├── pdf.png │ ├── php.png │ ├── png.png │ ├── txt.png │ ├── updir.png │ ├── xml.png │ ├── zip.png │ └── zip_32.png ├── generic │ ├── answer.png │ ├── arrow.png │ ├── bar.png │ ├── bbcode │ │ ├── blockquote.png │ │ ├── bold.png │ │ ├── center.png │ │ ├── code.png │ │ ├── emotes.png │ │ ├── flash.png │ │ ├── fontcol.png │ │ ├── fontsize.png │ │ ├── image.png │ │ ├── italic.png │ │ ├── left.png │ │ ├── link.png │ │ ├── list.png │ │ ├── newpage.png │ │ ├── prefile.png │ │ ├── preimage.png │ │ ├── right.png │ │ ├── shortcode.png │ │ ├── template.png │ │ └── underline.png │ ├── blank.gif │ ├── blank_avatar.jpg │ ├── branch.gif │ ├── branchbottom.gif │ ├── branchtop.gif │ ├── check.png │ ├── code_bg.gif │ ├── code_bg.jpg │ ├── code_bg.png │ ├── cred.png │ ├── dark │ │ ├── answer.png │ │ ├── arrow.png │ │ ├── download.png │ │ ├── edit.png │ │ ├── email.png │ │ ├── file.png │ │ ├── image.png │ │ ├── new.png │ │ ├── new_comments.png │ │ ├── newsedit.png │ │ ├── nonew_comments.png │ │ ├── password.png │ │ ├── printer.png │ │ ├── question.png │ │ ├── search_advanced.png │ │ ├── search_basic.png │ │ ├── search_enhanced.png │ │ ├── sticky.png │ │ └── user_select.png │ ├── download.png │ ├── edit.png │ ├── email.png │ ├── folder.gif │ ├── line.gif │ ├── linebottom.gif │ ├── lite │ │ ├── answer.png │ │ ├── arrow.png │ │ ├── download.png │ │ ├── edit.png │ │ ├── email.png │ │ ├── file.png │ │ ├── image.png │ │ ├── new.png │ │ ├── new_comments.png │ │ ├── newsedit.png │ │ ├── nonew_comments.png │ │ ├── password.png │ │ ├── printer.png │ │ ├── question.png │ │ ├── search_advanced.png │ │ ├── search_basic.png │ │ ├── search_enhanced.png │ │ ├── sticky.png │ │ └── user_select.png │ ├── loading_16.gif │ ├── loading_32.gif │ ├── minus.gif │ ├── minusbottom.gif │ ├── minustop.gif │ ├── new.png │ ├── nomedia.png │ ├── password.png │ ├── php-small-trans-light.gif │ ├── playlist_120.png │ ├── plus.gif │ ├── plusbottom.gif │ ├── plustop.gif │ ├── poweredbymysql-88.png │ ├── printer.png │ ├── question.png │ ├── search_basic.png │ ├── sticky.png │ ├── topicon.png │ ├── user_select.png │ ├── valid-xhtml11.png │ ├── valid-xhtml11_small.png │ ├── vcss.png │ ├── vcss_small.png │ └── warning.png ├── icons │ ├── alarm_16.png │ ├── alarm_32.png │ ├── colors_16.png │ ├── colors_32.png │ ├── config_16.png │ ├── config_32.png │ ├── download_32.png │ ├── folder_32.png │ ├── folder_48.png │ ├── folderx_32.png │ ├── folderx_48.png │ ├── help_16.png │ ├── help_32.png │ ├── html_16.png │ ├── html_32.png │ ├── important_16.png │ ├── important_32.png │ ├── info_16.png │ ├── info_32.png │ ├── news_16.png │ ├── news_32.png │ ├── plug_16.png │ ├── plug_32.png │ ├── sound_16.png │ ├── sound_32.png │ ├── thumbnail_16.png │ ├── thumbnail_32.png │ ├── video_16.png │ ├── video_32.png │ ├── view_16.png │ ├── view_32.png │ ├── wizard_16.png │ └── wizard_32.png ├── index.html ├── logo.png ├── logoHD.png ├── logo_template.png ├── logo_template_large.png ├── ranks │ ├── English_admin.png │ ├── English_main_admin.png │ ├── English_moderator.png │ ├── index.htm │ ├── lev1.png │ ├── lev10.png │ ├── lev2.png │ ├── lev3.png │ ├── lev4.png │ ├── lev5.png │ ├── lev6.png │ ├── lev7.png │ ├── lev8.png │ └── lev9.png ├── rate │ ├── box.png │ ├── box │ │ ├── box1.png │ │ ├── box10.png │ │ ├── box2.png │ │ ├── box3.png │ │ ├── box4.png │ │ ├── box5.png │ │ ├── box6.png │ │ ├── box7.png │ │ ├── box8.png │ │ └── box9.png │ ├── boxend.png │ ├── dark │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ ├── 9.png │ │ ├── lev1.png │ │ ├── lev10.png │ │ ├── lev2.png │ │ ├── lev3.png │ │ ├── lev4.png │ │ ├── lev5.png │ │ ├── lev6.png │ │ ├── lev7.png │ │ ├── lev8.png │ │ ├── lev9.png │ │ └── star.png │ ├── dislike_16.png │ ├── like_16.png │ ├── lite │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ ├── 9.png │ │ ├── lev1.png │ │ ├── lev10.png │ │ ├── lev2.png │ │ ├── lev3.png │ │ ├── lev4.png │ │ ├── lev5.png │ │ ├── lev6.png │ │ ├── lev7.png │ │ ├── lev8.png │ │ ├── lev9.png │ │ └── star.png │ └── star.png ├── secimg.php ├── thumb.php ├── user_icons │ ├── realname_lite.png │ ├── user_aim.png │ ├── user_birthday_dark.png │ ├── user_birthday_lite.png │ ├── user_dark.png │ ├── user_homepage.png │ ├── user_icq.png │ ├── user_lite.png │ ├── user_location.png │ ├── user_msn.png │ ├── user_realname_dark.png │ ├── user_realname_lite.png │ ├── user_star_dark.png │ └── user_star_lite.png └── xup │ ├── alert.png │ ├── blogger.png │ ├── facebook.png │ ├── flickr.png │ ├── github.png │ ├── google.png │ ├── linkedin.png │ ├── livejournal.png │ ├── myspace.png │ ├── openid.png │ ├── twitter.png │ ├── wordpress.png │ └── yahoo.png ├── e107_languages ├── English │ ├── English.php │ ├── admin │ │ ├── help │ │ │ ├── admin_log.php │ │ │ ├── administrator.php │ │ │ ├── banlist.php │ │ │ ├── cache.php │ │ │ ├── cpage.php │ │ │ ├── cron.php │ │ │ ├── db.php │ │ │ ├── download.php │ │ │ ├── emoticon.php │ │ │ ├── fileinspector.php │ │ │ ├── filemanager.php │ │ │ ├── frontpage.php │ │ │ ├── image.php │ │ │ ├── index.html │ │ │ ├── language.php │ │ │ ├── links.php │ │ │ ├── mailout.php │ │ │ ├── menus.php │ │ │ ├── newspost.php │ │ │ ├── notify.php │ │ │ ├── phpinfo.php │ │ │ ├── prefs.php │ │ │ ├── search.php │ │ │ ├── ugflag.php │ │ │ ├── updateadmin.php │ │ │ ├── upload.php │ │ │ ├── userclass2.php │ │ │ ├── users.php │ │ │ ├── users_extended.php │ │ │ └── wmessage.php │ │ ├── lan_admin.php │ │ ├── lan_admin_log.php │ │ ├── lan_administrator.php │ │ ├── lan_banlist.php │ │ ├── lan_cache.php │ │ ├── lan_cpage.php │ │ ├── lan_credits.php │ │ ├── lan_cron.php │ │ ├── lan_db.php │ │ ├── lan_db_verify.php │ │ ├── lan_docs.php │ │ ├── lan_e107_update.php │ │ ├── lan_emoticon.php │ │ ├── lan_eurl.php │ │ ├── lan_fileinspector.php │ │ ├── lan_filemanager.php │ │ ├── lan_fla.php │ │ ├── lan_footer.php │ │ ├── lan_frontpage.php │ │ ├── lan_header.php │ │ ├── lan_image.php │ │ ├── lan_lancheck.php │ │ ├── lan_language.php │ │ ├── lan_links.php │ │ ├── lan_log_messages.php │ │ ├── lan_mailout.php │ │ ├── lan_menus.php │ │ ├── lan_message.php │ │ ├── lan_meta.php │ │ ├── lan_newspost.php │ │ ├── lan_notify.php │ │ ├── lan_phpinfo.php │ │ ├── lan_plugin.php │ │ ├── lan_prefs.php │ │ ├── lan_search.php │ │ ├── lan_theme.php │ │ ├── lan_ugflag.php │ │ ├── lan_updateadmin.php │ │ ├── lan_upload.php │ │ ├── lan_userclass2.php │ │ ├── lan_users.php │ │ ├── lan_users_extended.php │ │ ├── lan_validator.php │ │ └── lan_wmessage.php │ ├── lan_comment.php │ ├── lan_contact.php │ ├── lan_date.php │ ├── lan_email.php │ ├── lan_error.php │ ├── lan_form_handler.php │ ├── lan_fpw.php │ ├── lan_installer.php │ ├── lan_library_manager.php │ ├── lan_login.php │ ├── lan_mail_handler.php │ ├── lan_membersonly.php │ ├── lan_news.php │ ├── lan_notify.php │ ├── lan_np.php │ ├── lan_online.php │ ├── lan_page.php │ ├── lan_print.php │ ├── lan_rate.php │ ├── lan_ren_help.php │ ├── lan_search.php │ ├── lan_signup.php │ ├── lan_sitedown.php │ ├── lan_sitelinks.php │ ├── lan_submitnews.php │ ├── lan_top.php │ ├── lan_upload.php │ ├── lan_upload_handler.php │ ├── lan_user.php │ ├── lan_user_extended.php │ ├── lan_user_select.php │ ├── lan_userclass.php │ ├── lan_userposts.php │ └── lan_usersettings.php └── index.html ├── e107_media └── index.html ├── e107_plugins ├── _blank │ ├── _blank.php │ ├── _blank_menu.php │ ├── _blank_setup.php │ ├── _blank_shortcodes.php │ ├── _blank_sql.php │ ├── admin_config.php │ ├── css │ │ └── blank.css │ ├── e_admin.php │ ├── e_cron.php │ ├── e_dashboard.php │ ├── e_event.php │ ├── e_frontpage.php │ ├── e_header.php │ ├── e_library.php │ ├── e_menu.php │ ├── e_notify.php │ ├── e_parse.php │ ├── e_print.php │ ├── e_related.php │ ├── e_rss.php │ ├── e_search.php │ ├── e_shortcode.php │ ├── e_sitelink.php │ ├── e_url.php │ ├── e_user.php │ ├── images │ │ ├── blank_16.png │ │ ├── blank_32.png │ │ ├── icon_128.png │ │ ├── icon_16.png │ │ └── icon_32.png │ ├── languages │ │ └── English │ │ │ └── English_global.php │ ├── plugin.xml │ ├── templates │ │ └── _blank_template.php │ └── tests │ │ └── unit │ │ └── _blank_eventTest.php ├── admin_menu │ └── admin_menu.php ├── alt_auth │ ├── alt_auth_adminmenu.php │ ├── alt_auth_conf.php │ ├── alt_auth_login_class.php │ ├── alt_auth_sql.php │ ├── e107db_auth.php │ ├── e107db_conf.php │ ├── e_help.php │ ├── extended_password_handler.php │ ├── images │ │ ├── alt_auth_16.png │ │ └── alt_auth_32.png │ ├── importdb_auth.php │ ├── importdb_conf.php │ ├── languages │ │ └── English │ │ │ ├── English_log.php │ │ │ ├── admin_alt_auth.php │ │ │ ├── admin_e107db_conf.php │ │ │ ├── admin_importdb_conf.php │ │ │ ├── admin_ldap_conf.php │ │ │ ├── admin_otherdb_conf.php │ │ │ └── admin_radius_conf.php │ ├── ldap_auth.php │ ├── ldap_conf.php │ ├── otherdb_auth.php │ ├── otherdb_conf.php │ ├── plugin.xml │ ├── radius_auth.php │ └── radius_conf.php ├── banner │ ├── admin_banner.php │ ├── banner.php │ ├── banner_menu.php │ ├── banner_setup.php │ ├── banner_sql.php │ ├── banner_template.php │ ├── e_help.php │ ├── e_menu.php │ ├── e_shortcode.php │ ├── images │ │ ├── banner1.png │ │ ├── banners_16.png │ │ └── banners_32.png │ ├── languages │ │ ├── English_admin.php │ │ ├── English_front.php │ │ ├── English_global.php │ │ └── English_menu_banner.php │ └── plugin.xml ├── blogcalendar_menu │ ├── archive.php │ ├── blogcalendar_menu.php │ ├── calendar.php │ ├── config.php │ ├── functions.php │ ├── languages │ │ └── English.php │ └── styles.php ├── chatbox_menu │ ├── admin_chatbox.php │ ├── chat.php │ ├── chatbox_menu.php │ ├── chatbox_menu_shortcodes.php │ ├── chatbox_sql.php │ ├── e_dashboard.php │ ├── e_header.php │ ├── e_list.php │ ├── e_notify.php │ ├── e_rss.php │ ├── e_search.php │ ├── e_user.php │ ├── images │ │ ├── blocked.png │ │ ├── chatbox_16.png │ │ └── chatbox_32.png │ ├── languages │ │ └── English │ │ │ ├── English.php │ │ │ ├── English_global.php │ │ │ └── admin_chatbox_menu.php │ ├── plugin.xml │ └── templates │ │ └── chatbox_menu_template.php ├── comment_menu │ ├── comment_menu.php │ ├── comment_menu_shortcodes.php │ ├── config.php │ ├── languages │ │ └── English.php │ └── templates │ │ └── comment_menu_template.php ├── contact │ ├── contact_menu.php │ ├── e_url.php │ └── plugin.xml ├── download │ ├── admin_download.php │ ├── download.php │ ├── download_setup.php │ ├── download_shortcodes.php │ ├── download_sql.php │ ├── e_cron.php │ ├── e_dashboard.php │ ├── e_frontpage.php │ ├── e_gsitemap.php │ ├── e_help.php │ ├── e_list.php │ ├── e_notify.php │ ├── e_rss.php │ ├── e_search.php │ ├── e_sitelink.php │ ├── e_tagwords.php │ ├── e_upload.php │ ├── e_url.php │ ├── handlers │ │ ├── NginxSecureLinkMd5Decorator.php │ │ ├── SecureLinkDecorator.php │ │ ├── adminDownload_class.php │ │ ├── category_class.php │ │ └── download_class.php │ ├── images │ │ ├── downloads_16.png │ │ └── downloads_32.png │ ├── includes │ │ └── admin.php │ ├── index.html │ ├── languages │ │ └── English │ │ │ ├── English_admin.php │ │ │ ├── English_front.php │ │ │ ├── English_global.php │ │ │ └── English_log.php │ ├── plugin.xml │ ├── request.php │ ├── templates │ │ └── download_template.php │ └── vendor │ │ └── shim_http_build_url.php ├── faqs │ ├── admin_config.php │ ├── controllers │ │ └── e107.list.php │ ├── e_cron.php │ ├── e_meta.php │ ├── e_search.php │ ├── e_sitelink.php │ ├── e_url.php │ ├── faqs.css │ ├── faqs.php │ ├── faqs_search_menu.php │ ├── faqs_setup.php │ ├── faqs_shortcodes.php │ ├── faqs_sql.php │ ├── images │ │ ├── a.png │ │ ├── icon_16.png │ │ ├── icon_32.png │ │ └── q.png │ ├── languages │ │ └── English │ │ │ ├── English_admin.php │ │ │ ├── English_front.php │ │ │ └── English_global.php │ ├── plugin.xml │ └── templates │ │ └── faqs_template.php ├── featurebox │ ├── admin_config.php │ ├── e_header.php │ ├── e_rss.php │ ├── e_shortcode.php │ ├── featurebox.css │ ├── featurebox.js │ ├── featurebox.php │ ├── featurebox_menu.php │ ├── featurebox_setup.php │ ├── featurebox_sql.php │ ├── images │ │ ├── featurebox_16.png │ │ └── featurebox_32.png │ ├── includes │ │ ├── category.php │ │ ├── item.php │ │ └── tree.php │ ├── languages │ │ ├── English_admin_featurebox.php │ │ ├── English_front_featurebox.php │ │ └── English_global.php │ ├── plugin.xml │ └── templates │ │ ├── featurebox_category_template.php │ │ └── featurebox_template.php ├── forum │ ├── attachments │ │ ├── index.htm │ │ ├── index.html │ │ └── thumb │ │ │ ├── index.htm │ │ │ └── index.html │ ├── e_admin_events.php │ ├── e_dashboard.php │ ├── e_emailprint.php │ ├── e_event.php │ ├── e_frontpage.php │ ├── e_gsitemap.php │ ├── e_linkgen.php │ ├── e_list.php │ ├── e_menu.php │ ├── e_meta.php │ ├── e_notify.php │ ├── e_print.php │ ├── e_rss.php │ ├── e_search.php │ ├── e_url.php │ ├── e_user.php │ ├── forum.css │ ├── forum.php │ ├── forum_admin.php │ ├── forum_class.php │ ├── forum_mod.php │ ├── forum_post.php │ ├── forum_setup.php │ ├── forum_sql.php │ ├── forum_stats.php │ ├── forum_update.php │ ├── forum_uploads.php │ ├── forum_viewforum.php │ ├── forum_viewtopic.php │ ├── images │ │ ├── dark │ │ │ ├── English_admin.png │ │ │ ├── English_main_admin.png │ │ │ ├── English_moderator.png │ │ │ ├── English_newthread.png │ │ │ ├── English_reply.png │ │ │ ├── admin.png │ │ │ ├── admin_block.png │ │ │ ├── admin_delete.png │ │ │ ├── admin_edit.png │ │ │ ├── admin_lock.png │ │ │ ├── admin_move.png │ │ │ ├── admin_split.png │ │ │ ├── admin_stick.png │ │ │ ├── admin_unlock.png │ │ │ ├── admin_unstick.png │ │ │ ├── aim.png │ │ │ ├── announce.png │ │ │ ├── announce_small.png │ │ │ ├── attach.png │ │ │ ├── bar.jpg │ │ │ ├── closed.png │ │ │ ├── closed_small.png │ │ │ ├── delete.png │ │ │ ├── e.png │ │ │ ├── edit.png │ │ │ ├── email.png │ │ │ ├── icq.png │ │ │ ├── main_admin.png │ │ │ ├── moderator.png │ │ │ ├── msn.png │ │ │ ├── new.png │ │ │ ├── new_popular.png │ │ │ ├── new_popular_small.png │ │ │ ├── new_small.png │ │ │ ├── newthread.png │ │ │ ├── nonew.png │ │ │ ├── nonew_popular.png │ │ │ ├── nonew_popular_small.png │ │ │ ├── nonew_small.png │ │ │ ├── pm.png │ │ │ ├── post.png │ │ │ ├── post2.png │ │ │ ├── profile.png │ │ │ ├── quote.png │ │ │ ├── reply.png │ │ │ ├── report.png │ │ │ ├── sticky.png │ │ │ ├── sticky_closed.png │ │ │ ├── sticky_closed_small.png │ │ │ ├── sticky_small.png │ │ │ ├── track.png │ │ │ ├── untrack.png │ │ │ └── website.png │ │ ├── fcap.png │ │ ├── fcap2.png │ │ ├── finfobar.png │ │ ├── forums_16.png │ │ ├── forums_32.png │ │ ├── icons │ │ │ ├── English_admin.png │ │ │ ├── English_main_admin.png │ │ │ ├── English_moderator.png │ │ │ ├── English_newthread.png │ │ │ ├── English_reply.png │ │ │ ├── admin.png │ │ │ ├── admin_block.png │ │ │ ├── admin_delete.png │ │ │ ├── admin_edit.png │ │ │ ├── admin_lock.png │ │ │ ├── admin_move.png │ │ │ ├── admin_split.png │ │ │ ├── admin_stick.png │ │ │ ├── admin_unlock.png │ │ │ ├── admin_unstick.png │ │ │ ├── aim.png │ │ │ ├── announce.png │ │ │ ├── announce_small.png │ │ │ ├── attach.png │ │ │ ├── bar.jpg │ │ │ ├── closed.png │ │ │ ├── closed_small.png │ │ │ ├── delete.png │ │ │ ├── e.png │ │ │ ├── edit.png │ │ │ ├── email.png │ │ │ ├── icq.png │ │ │ ├── main_admin.png │ │ │ ├── moderator.png │ │ │ ├── msn.png │ │ │ ├── new.png │ │ │ ├── new_popular.png │ │ │ ├── new_popular_small.png │ │ │ ├── new_small.png │ │ │ ├── newthread.png │ │ │ ├── nonew.png │ │ │ ├── nonew_popular.png │ │ │ ├── nonew_popular_small.png │ │ │ ├── nonew_small.png │ │ │ ├── pm.png │ │ │ ├── post.png │ │ │ ├── post2.png │ │ │ ├── profile.png │ │ │ ├── quote.png │ │ │ ├── reply.png │ │ │ ├── report.png │ │ │ ├── sticky.png │ │ │ ├── sticky_closed.png │ │ │ ├── sticky_closed_small.png │ │ │ ├── sticky_small.png │ │ │ ├── track.png │ │ │ ├── untrack.png │ │ │ └── website.png │ │ ├── lite │ │ │ ├── English_admin.png │ │ │ ├── English_main_admin.png │ │ │ ├── English_moderator.png │ │ │ ├── English_newthread.png │ │ │ ├── English_reply.png │ │ │ ├── admin.png │ │ │ ├── admin_block.png │ │ │ ├── admin_delete.png │ │ │ ├── admin_edit.png │ │ │ ├── admin_lock.png │ │ │ ├── admin_move.png │ │ │ ├── admin_split.png │ │ │ ├── admin_stick.png │ │ │ ├── admin_unlock.png │ │ │ ├── admin_unstick.png │ │ │ ├── aim.png │ │ │ ├── announce.png │ │ │ ├── announce_small.png │ │ │ ├── attach.png │ │ │ ├── bar.jpg │ │ │ ├── closed.png │ │ │ ├── closed_small.png │ │ │ ├── delete.png │ │ │ ├── e.png │ │ │ ├── edit.png │ │ │ ├── email.png │ │ │ ├── icq.png │ │ │ ├── main_admin.png │ │ │ ├── moderator.png │ │ │ ├── msn.png │ │ │ ├── new.png │ │ │ ├── new_popular.png │ │ │ ├── new_popular_small.png │ │ │ ├── new_small.png │ │ │ ├── newthread.png │ │ │ ├── nonew.png │ │ │ ├── nonew_popular.png │ │ │ ├── nonew_popular_small.png │ │ │ ├── nonew_small.png │ │ │ ├── pm.png │ │ │ ├── post.png │ │ │ ├── post2.png │ │ │ ├── profile.png │ │ │ ├── quote.png │ │ │ ├── reply.png │ │ │ ├── report.png │ │ │ ├── sticky.png │ │ │ ├── sticky_closed.png │ │ │ ├── sticky_closed_small.png │ │ │ ├── sticky_small.png │ │ │ ├── track.png │ │ │ ├── untrack.png │ │ │ └── website.png │ │ └── sub_forums_16.png │ ├── index.php │ ├── js │ │ └── forum.js │ ├── languages │ │ └── English │ │ │ ├── English_admin.php │ │ │ ├── English_front.php │ │ │ ├── English_global.php │ │ │ ├── English_menu.php │ │ │ ├── English_notify.php │ │ │ └── English_search.php │ ├── newforumposts_menu.php │ ├── plugin.xml │ ├── shortcodes │ │ └── batch │ │ │ ├── forum_shortcodes.php │ │ │ ├── post_shortcodes.php │ │ │ ├── view_shortcodes.php │ │ │ └── viewforum_shortcodes.php │ └── templates │ │ ├── bbcode_template.php │ │ ├── forum_icons_template.php │ │ ├── forum_poll_template.php │ │ ├── forum_post_template.php │ │ ├── forum_posted_template.php │ │ ├── forum_preview_template.php │ │ ├── forum_template.php │ │ ├── forum_viewforum_template.php │ │ ├── forum_viewtopic_template.php │ │ └── newforumposts_menu_template.php ├── gallery │ ├── admin_gallery.php │ ├── controllers │ │ └── index.php │ ├── css │ │ └── gallery.css │ ├── e_header.php │ ├── e_library.php │ ├── e_shortcode.php │ ├── e_url.php │ ├── gallery.php │ ├── gallery_setup.php │ ├── images │ │ ├── beach.webp │ │ ├── butterfly.jpg │ │ ├── close.png │ │ ├── gallery_16.png │ │ ├── gallery_32.png │ │ ├── horse.jpg │ │ ├── lake-and-forest.jpg │ │ └── loading.gif │ ├── includes │ │ └── gallery_load.php │ ├── js │ │ ├── gallery.cycle.js │ │ └── gallery.js │ ├── languages │ │ └── English │ │ │ ├── English_admin.php │ │ │ ├── English_front.php │ │ │ └── English_global.php │ ├── plugin.xml │ ├── shortcodes │ │ └── batch │ │ │ └── gallery_shortcodes.php │ ├── slideshow_menu.php │ ├── templates │ │ └── gallery_template.php │ └── url │ │ ├── rewrite_url.php │ │ └── url.php ├── gsitemap │ ├── admin_config.php │ ├── e_cron.php │ ├── e_event.php │ ├── e_header.php │ ├── e_module.php │ ├── e_url.php │ ├── gsitemap_sql.php │ ├── images │ │ ├── icon.png │ │ └── icon_16.png │ ├── languages │ │ ├── English_admin.php │ │ ├── English_front.php │ │ ├── English_global.php │ │ └── English_log.php │ ├── plugin.xml │ └── weblog_pinger.php ├── hero │ ├── admin_config.php │ ├── css │ │ ├── bootstrap-iconpicker.min.css │ │ └── hero.css │ ├── e_header.php │ ├── e_shortcode.php │ ├── hero_menu.php │ ├── hero_setup.php │ ├── hero_shortcodes.php │ ├── hero_sql.php │ ├── js │ │ ├── bootstrap-iconpicker-iconset-all.min.js │ │ └── bootstrap-iconpicker.min.js │ ├── languages │ │ └── English │ │ │ ├── English_admin.php │ │ │ └── English_global.php │ ├── plugin.xml │ ├── templates │ │ └── hero_template.php │ └── xml │ │ └── install.xml ├── import │ ├── admin_import.php │ ├── csv_import.txt │ ├── images │ │ ├── blogger.png │ │ ├── coppermine.png │ │ ├── csv.png │ │ ├── drupal.png │ │ ├── e107.png │ │ ├── html.png │ │ ├── ikonboard.png │ │ ├── import_16.png │ │ ├── import_32.png │ │ ├── joomla.png │ │ ├── livejournal.png │ │ ├── mambo.png │ │ ├── phpbb3.png │ │ ├── phpfusion.png │ │ ├── phpnuke.png │ │ ├── rss.png │ │ ├── smf.png │ │ ├── wordpress.png │ │ └── xoops.png │ ├── import_classes.php │ ├── import_forum_class.php │ ├── import_links_class.php │ ├── import_news_class.php │ ├── import_page_class.php │ ├── import_readme.txt │ ├── import_user_class.php │ ├── index.html │ ├── languages │ │ ├── English_admin.php │ │ └── English_global.php │ ├── plugin.xml │ └── providers │ │ ├── PHPFusion_import_class.php │ │ ├── PHPNuke_import_class.php │ │ ├── blogger_import_class.php │ │ ├── coppermine_import_class.php │ │ ├── drupal_import_class.php │ │ ├── e107_import_class.php │ │ ├── html_import_class.php │ │ ├── ikonboard_import_class.php │ │ ├── joomla_import_class.php │ │ ├── livejournal_import_class.php │ │ ├── mambo_import_class.php │ │ ├── phpbb3_import_class.php │ │ ├── rss_import_class.php │ │ ├── smf_import_class.php │ │ ├── template_import_class.php │ │ ├── wordpress_import_class.php │ │ └── xoops_import_class.php ├── index.html ├── linkwords │ ├── admin_config.php │ ├── e_admin.php │ ├── e_header.php │ ├── e_help.php │ ├── e_parse.php │ ├── e_tohtml.php │ ├── images │ │ ├── linkwords_16.png │ │ └── linkwords_32.png │ ├── languages │ │ ├── English_admin.php │ │ ├── English_global.php │ │ └── English_log.php │ ├── linkwords.css │ ├── linkwords.php │ ├── linkwords_setup.php │ ├── linkwords_sql.php │ └── plugin.xml ├── list_new │ ├── admin_list_config.php │ ├── icon │ │ ├── list_16.png │ │ └── list_32.png │ ├── images │ │ ├── icon1.gif │ │ ├── icon10.gif │ │ ├── icon11.gif │ │ ├── icon2.gif │ │ ├── icon3.gif │ │ ├── icon4.gif │ │ ├── icon5.gif │ │ ├── icon6.gif │ │ ├── icon7.gif │ │ ├── icon8.gif │ │ └── icon9.gif │ ├── languages │ │ ├── English.php │ │ ├── English_admin_list_new.php │ │ └── English_global.php │ ├── list.php │ ├── list_admin_class.php │ ├── list_class.php │ ├── list_new_menu.php │ ├── list_recent_menu.php │ ├── list_shortcodes.php │ ├── list_template.php │ ├── plugin.xml │ └── section │ │ ├── list_comment.php │ │ ├── list_members.php │ │ └── list_news.php ├── login_menu │ ├── config.php │ ├── languages │ │ └── English.php │ ├── login_menu.php │ ├── login_menu_class.php │ ├── login_menu_shortcodes.php │ └── login_menu_template.php ├── navigation │ ├── e_menu.php │ ├── languages │ │ └── English │ │ │ └── English_global.php │ ├── navigation_menu.php │ └── plugin.xml ├── newforumposts_main │ ├── admin_config.php │ ├── images │ │ ├── logo.png │ │ ├── new_forum_16.png │ │ └── new_forum_32.png │ ├── languages │ │ └── English.php │ ├── newforumposts.sc │ ├── newforumposts_main.php │ └── plugin.php ├── news │ ├── e_event.php │ ├── e_featurebox.php │ ├── e_frontpage.php │ ├── e_gsitemap.php │ ├── e_header.php │ ├── e_menu.php │ ├── e_related.php │ ├── e_rss.php │ ├── e_search.php │ ├── e_sitelink.php │ ├── e_url.php │ ├── languages │ │ ├── English.php │ │ ├── English_admin.php │ │ └── English_global.php │ ├── latestnews_menu.php │ ├── news.php │ ├── news_archive_menu.php │ ├── news_carousel.css │ ├── news_carousel_menu.php │ ├── news_categories_menu.php │ ├── news_grid_menu.php │ ├── news_months_menu.php │ ├── other_news2_menu.php │ ├── other_news_menu.php │ ├── plugin.xml │ └── templates │ │ ├── news_grid_template.php │ │ ├── news_menu_template.php │ │ ├── news_template.php │ │ └── news_view_template.php ├── newsfeed │ ├── admin_config.php │ ├── e_frontpage.php │ ├── e_help.php │ ├── e_url.php │ ├── images │ │ ├── newsfeed_16.png │ │ └── newsfeed_32.png │ ├── languages │ │ ├── English_admin.php │ │ ├── English_frontpage.php │ │ ├── English_global.php │ │ └── English_newsfeed.php │ ├── newsfeed.php │ ├── newsfeed_functions.php │ ├── newsfeed_menu.php │ ├── newsfeed_sql.php │ ├── plugin.xml │ └── templates │ │ ├── newsfeed_menu_template.php │ │ └── newsfeed_template.php ├── newsletter │ ├── admin_config.php │ ├── e_mailout.php │ ├── images │ │ ├── nl_16.png │ │ └── nl_32.png │ ├── languages │ │ ├── English.php │ │ ├── English_admin.php │ │ └── English_global.php │ ├── newsletter_legacy_menu.php │ ├── newsletter_menu.php │ ├── newsletter_sql.php │ ├── nl_archive.php │ └── plugin.xml ├── online │ ├── config.php │ ├── images │ │ └── user.png │ ├── languages │ │ └── English.php │ ├── lastseen_menu.php │ ├── online_menu.php │ ├── online_shortcodes.php │ └── templates │ │ └── online_menu_template.php ├── page │ ├── chapter_menu.php │ ├── css │ │ └── page.navigation.css │ ├── e_frontpage.php │ ├── e_menu.php │ ├── e_related.php │ ├── e_search.php │ ├── e_shortcode.php │ ├── e_sitelink.php │ ├── img │ │ ├── collapsed.png │ │ └── expanded.png │ ├── includes │ │ └── pageHelper.php │ ├── js │ │ └── jquery.page.navigation.js │ ├── languages │ │ └── English │ │ │ └── English_global.php │ ├── page_menu.php │ ├── page_navigation_menu.php │ └── plugin.xml ├── pm │ ├── admin_config.php │ ├── e_cron.php │ ├── e_shortcode.php │ ├── e_url.php │ ├── images │ │ ├── attach.png │ │ ├── mail_block.png │ │ ├── mail_delete.png │ │ ├── mail_get.png │ │ ├── mail_send.png │ │ ├── mail_unblock.png │ │ ├── newpm.gif │ │ ├── pm.png │ │ ├── pvt_message_16.png │ │ ├── pvt_message_32.png │ │ ├── read.png │ │ └── unread.png │ ├── index.html │ ├── languages │ │ ├── English.php │ │ ├── English_admin.php │ │ ├── English_global.php │ │ ├── English_log.php │ │ └── English_mailer.php │ ├── plugin.xml │ ├── pm.css │ ├── pm.php │ ├── pm_class.php │ ├── pm_conf.php │ ├── pm_default.php │ ├── pm_func.php │ ├── pm_menu.php │ ├── pm_notes.txt │ ├── pm_setup.php │ ├── pm_shortcodes.php │ ├── pm_sql.php │ └── templates │ │ ├── pm_menu_template.php │ │ └── pm_template.php ├── poll │ ├── admin_config.php │ ├── images │ │ ├── bar.png │ │ ├── barl.png │ │ ├── barr.png │ │ ├── polls_16.png │ │ └── polls_32.png │ ├── languages │ │ ├── English.php │ │ ├── English_admin_poll.php │ │ └── English_global.php │ ├── oldpolls.php │ ├── plugin.xml │ ├── poll.php │ ├── poll_class.php │ ├── poll_menu.php │ ├── poll_sql.php │ ├── search │ │ └── search_comments.php │ └── templates │ │ └── poll_template.php ├── rss_menu │ ├── admin_prefs.php │ ├── e_meta.php │ ├── e_url.php │ ├── images │ │ ├── rss1.png │ │ ├── rss2.png │ │ ├── rss3.png │ │ ├── rss4.png │ │ ├── rss_16.png │ │ └── rss_32.png │ ├── languages │ │ ├── English_admin_rss_menu.php │ │ └── English_global.php │ ├── plugin.xml │ ├── rss.php │ ├── rss_menu.php │ ├── rss_setup.php │ ├── rss_shortcodes.php │ ├── rss_sql.php │ └── templates │ │ └── rss_template.php ├── search_menu │ ├── images │ │ ├── search.png │ │ └── search_32.png │ └── search_menu.php ├── signin │ ├── e_shortcode.php │ ├── plugin.xml │ ├── signin_shortcodes.php │ └── templates │ │ └── signin_template.php ├── siteinfo │ ├── compliance_menu.php │ ├── counter_menu.php │ ├── e_shortcode.php │ ├── images │ │ ├── valid-xhtml11.png │ │ └── vcss.png │ ├── languages │ │ └── English.php │ ├── plugin.xml │ ├── powered_by_menu.php │ └── sitebutton_menu.php ├── social │ ├── admin_config.php │ ├── config.json │ ├── css │ │ └── social.css │ ├── e_admin.php │ ├── e_comment.php │ ├── e_event.php │ ├── e_menu.php │ ├── e_module.php │ ├── e_shortcode.php │ ├── fb_like_menu.php │ ├── fonts │ │ ├── social.eot │ │ ├── social.svg │ │ ├── social.ttf │ │ └── social.woff │ ├── ie7 │ │ ├── ie7.css │ │ └── ie7.js │ ├── images │ │ ├── icon_16.png │ │ └── icon_32.png │ ├── includes │ │ └── social_login_config.php │ ├── languages │ │ └── English │ │ │ ├── English_admin.php │ │ │ ├── English_front.php │ │ │ └── English_global.php │ ├── plugin.xml │ ├── social_setup.php │ ├── style.css │ ├── svg │ │ ├── android.svg │ │ ├── apple.svg │ │ ├── behance.svg │ │ ├── blogger.svg │ │ ├── delicious.svg │ │ ├── digg.svg │ │ ├── discord.svg │ │ ├── dribbble.svg │ │ ├── dropbox.svg │ │ ├── export.svg │ │ ├── facebook-square.svg │ │ ├── facebook.svg │ │ ├── flattr.svg │ │ ├── flickr.svg │ │ ├── foursquare.svg │ │ ├── github-square.svg │ │ ├── github.svg │ │ ├── google.svg │ │ ├── gplus.svg │ │ ├── instagram.svg │ │ ├── instapaper.svg │ │ ├── linkedin-rect.svg │ │ ├── linkedin.svg │ │ ├── mail-alt.svg │ │ ├── mail.svg │ │ ├── map-o.svg │ │ ├── map.svg │ │ ├── meetup.svg │ │ ├── mobile.svg │ │ ├── phone-square.svg │ │ ├── phone.svg │ │ ├── pinterest.svg │ │ ├── pocketpocket.svg │ │ ├── pushpin.svg │ │ ├── reddit-alien.svg │ │ ├── reddit.svg │ │ ├── rss.svg │ │ ├── share.svg │ │ ├── skype.svg │ │ ├── sms.svg │ │ ├── snapchat.svg │ │ ├── soundcloud-alt.svg │ │ ├── soundcloud.svg │ │ ├── spotify.svg │ │ ├── squarespace.svg │ │ ├── steam.svg │ │ ├── stumbleupon.svg │ │ ├── telegram.svg │ │ ├── thumbs-up-solid.svg │ │ ├── thumbs-up.svg │ │ ├── tiktok.svg │ │ ├── tumblr.svg │ │ ├── twitch.svg │ │ ├── twitter-old.svg │ │ ├── twitter.svg │ │ ├── vimeo.svg │ │ ├── vine.svg │ │ ├── vk.svg │ │ ├── whatsapp.svg │ │ ├── wordpress.svg │ │ ├── yelp.svg │ │ ├── youtube-play.svg │ │ └── youtube.svg │ ├── templates │ │ └── social_xurl_template.php │ ├── twitter_menu.php │ ├── xurl_menu.php │ └── xurls.json ├── tagcloud │ ├── e_header.php │ ├── e_menu.php │ ├── images │ │ ├── icon_16.png │ │ └── icon_32.png │ ├── languages │ │ └── English │ │ │ ├── English_admin.php │ │ │ └── English_global.php │ ├── plugin.xml │ ├── tagcloud.css │ ├── tagcloud_class.php │ ├── tagcloud_menu.php │ └── templates │ │ └── tagcloud_menu_template.php ├── tinymce4 │ ├── admin_config.php │ ├── e_footer.php │ ├── e_header.php │ ├── editor.css │ ├── images │ │ ├── icon_16.png │ │ └── icon_32.png │ ├── langs │ │ └── en_GB.js │ ├── languages │ │ └── English_admin.php │ ├── plugin.xml │ ├── plugins │ │ ├── bbcode │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ ├── compat3x │ │ │ ├── css │ │ │ │ └── dialog.css │ │ │ ├── img │ │ │ │ ├── buttons.png │ │ │ │ ├── icons.gif │ │ │ │ ├── items.gif │ │ │ │ ├── menu_arrow.gif │ │ │ │ ├── menu_check.gif │ │ │ │ ├── progress.gif │ │ │ │ └── tabs.gif │ │ │ ├── plugin.js │ │ │ ├── plugin.min.js │ │ │ ├── tiny_mce_popup.js │ │ │ └── utils │ │ │ │ ├── editable_selects.js │ │ │ │ ├── form_utils.js │ │ │ │ ├── mctabs.js │ │ │ │ └── validate.js │ │ ├── e107 │ │ │ ├── dialog.htm │ │ │ ├── dialog.php │ │ │ ├── img │ │ │ │ └── logo-bootstrap.png │ │ │ ├── mediamanager.php │ │ │ ├── parser.php │ │ │ └── plugin.js │ │ ├── example │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ │ └── smileys │ │ │ ├── img │ │ │ ├── angel.png │ │ │ ├── confused.png │ │ │ ├── cry.png │ │ │ ├── devil.png │ │ │ ├── frown.png │ │ │ ├── gasp.png │ │ │ ├── glasses.png │ │ │ ├── grin.png │ │ │ ├── grumpy.png │ │ │ ├── heart.png │ │ │ ├── kiki.png │ │ │ ├── kiss.png │ │ │ ├── pacman.png │ │ │ ├── penguin.gif │ │ │ ├── putnam.gif │ │ │ ├── robot.gif │ │ │ ├── shark.gif │ │ │ ├── smile.png │ │ │ ├── squint.png │ │ │ ├── sunglasses.png │ │ │ ├── tongue.png │ │ │ ├── unsure.png │ │ │ └── upset.png │ │ │ ├── plugin.js │ │ │ └── plugin.min.js │ ├── snippets │ │ ├── bootstrap_row48.htm │ │ └── bootstrap_table.htm │ ├── templates │ │ ├── admin.xml │ │ ├── mainadmin.xml │ │ ├── member.xml │ │ └── public.xml │ ├── tinymce4_setup.php │ ├── wysiwyg.php │ └── wysiwyg_class.php └── user │ ├── e_dashboard.php │ ├── e_mailout.php │ ├── e_search.php │ ├── e_user.php │ ├── languages │ ├── English.php │ └── English_global.php │ ├── plugin.xml │ ├── userlanguage_menu.php │ ├── usertheme_menu.php │ └── usertheme_menu_config.php ├── e107_system ├── .htaccess ├── core_image.phar └── index.html ├── e107_tests ├── .gitignore ├── .htaccess ├── README.md ├── codeception.yml ├── composer.json ├── composer.lock ├── config.sample.yml ├── index.html ├── lib │ ├── PriorityCallbacks.php │ ├── ci │ │ ├── config.acceptance.ci.yml │ │ ├── config.unit.ci.yml │ │ └── salt │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── Saltfile │ │ │ ├── master │ │ │ ├── pillars │ │ │ ├── config-local.sls │ │ │ ├── config-sample.sls │ │ │ ├── config.sls │ │ │ └── top.sls │ │ │ ├── roster │ │ │ ├── salt-bootstrap.go │ │ │ └── states │ │ │ ├── e107-dev.sls │ │ │ └── files │ │ │ └── etc │ │ │ └── mysql │ │ │ └── mariadb.conf.d │ │ │ └── 99-overrides.cnf │ ├── config.php │ ├── deployers │ │ ├── Deployer.php │ │ ├── DeployerFactory.php │ │ ├── LocalDeployer.php │ │ ├── NoopDeployer.php │ │ ├── SFTPDeployer.php │ │ └── cPanelDeployer.php │ └── preparers │ │ ├── E107Preparer.php │ │ ├── GitPreparer.php │ │ ├── Preparer.php │ │ └── PreparerFactory.php ├── phpunit.xml └── tests │ ├── _bootstrap.php │ ├── _data │ ├── .gitkeep │ ├── basic-light │ │ ├── favicon.ico │ │ ├── fullpreview.jpg │ │ ├── images │ │ │ ├── bullet.png │ │ │ ├── carousel │ │ │ │ ├── img01.jpg │ │ │ │ ├── img02.jpg │ │ │ │ ├── img03.jpg │ │ │ │ ├── img04.jpg │ │ │ │ └── img05.jpg │ │ │ └── index.html │ │ ├── languages │ │ │ ├── English.php │ │ │ └── index.html │ │ ├── maw │ │ │ ├── css │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ ├── ie10-viewport-bug-workaround.css │ │ │ │ ├── index.html │ │ │ │ └── theme.min.css │ │ │ ├── index.html │ │ │ └── js │ │ │ │ ├── ie10-viewport-bug-workaround.js │ │ │ │ └── index.html │ │ ├── preview.jpg │ │ ├── style.css │ │ ├── templates │ │ │ ├── index.html │ │ │ └── news │ │ │ │ ├── news_menu_template.php │ │ │ │ └── news_template.php │ │ ├── theme.php │ │ ├── theme.xml │ │ └── theme_config.php │ ├── comments │ │ └── commentsSetup.xml │ ├── e107_config.php.sample │ ├── e107_v2.3.0.sample.sql │ ├── e_admin_ui │ │ └── _modifyListQrySearch │ │ │ ├── 603f353c7194e85260343c1fb838e5a0e6e0565f.json │ │ │ ├── a1b5f76b94de63038b10913bf22b0538c30b1fb1.json │ │ │ └── d75574c0326e90c5a9eb6c187ba7c75f45a0cf70.json │ ├── ecache │ │ ├── content │ │ │ ├── C_wmessage_0800fc577294c34e0b28ad2839435945.cache.php_ │ │ │ ├── S_Config_test.cache.php_ │ │ │ └── S_Update_core.cache.php_ │ │ └── db │ │ │ └── online.php_ │ ├── eml │ │ └── bounced_01.eml │ ├── fileTest │ │ └── corrupted_image.webp │ ├── icon_64.png │ ├── mediaTest │ │ └── vulnerable.png.svg │ ├── testcore │ │ ├── calendar_template.php │ │ ├── comment_menu_template.php │ │ ├── favicon.ico │ │ ├── forum │ │ │ ├── admin.png │ │ │ ├── index.html │ │ │ ├── main_admin.png │ │ │ ├── moderator.png │ │ │ ├── newthread.png │ │ │ └── reply.png │ │ ├── fs_custom.sc │ │ ├── fs_functions.php │ │ ├── fs_login.sc │ │ ├── fs_sitelinks.sc │ │ ├── images │ │ │ ├── admin_nav_bkg.png │ │ │ ├── adminbg.png │ │ │ ├── adminnavbg.png │ │ │ ├── admintopbg.png │ │ │ ├── bottom_xhtml.png │ │ │ ├── bullet.png │ │ │ ├── bullet2.gif │ │ │ ├── contentbg.png │ │ │ ├── e_adminlogo.png │ │ │ ├── e_logo.png │ │ │ ├── e_logo_small.png │ │ │ ├── file.png │ │ │ ├── footerbor.png │ │ │ ├── headerbg.png │ │ │ ├── index.html │ │ │ ├── login_logo.png │ │ │ ├── mail.png │ │ │ ├── mainbg.png │ │ │ ├── nav_hover.png │ │ │ ├── nav_sep.png │ │ │ ├── navbg.png │ │ │ ├── newsedit.png │ │ │ ├── pdf.png │ │ │ ├── print.png │ │ │ ├── regl.png │ │ │ ├── regm.png │ │ │ ├── regr.png │ │ │ ├── rightbox_title_bg.png │ │ │ ├── search-icon.png │ │ │ └── titlebg.png │ │ ├── index.html │ │ ├── js │ │ │ ├── index.html │ │ │ └── menu.js │ │ ├── languages │ │ │ ├── English.php │ │ │ └── index.html │ │ ├── login_template.php │ │ ├── preview.jpg │ │ ├── source │ │ │ ├── admin_mainadmin_moderator.png │ │ │ ├── forum_images.png │ │ │ ├── index.html │ │ │ └── reply_new_thread.png │ │ ├── style.css │ │ ├── theme.php │ │ └── usersettings_template.php │ ├── testkubrick │ │ ├── images │ │ │ ├── 01_linkbg1.gif │ │ │ ├── 01_linkbg2.gif │ │ │ ├── bar.jpg │ │ │ ├── bullet2.gif │ │ │ ├── kubrickbg.jpg │ │ │ ├── kubrickbgcolor.jpg │ │ │ ├── kubrickbgwide.jpg │ │ │ ├── kubrickfooter.jpg │ │ │ ├── kubrickheader.jpg │ │ │ └── tileage.jpg │ │ ├── index.html │ │ ├── languages │ │ │ └── English.php │ │ ├── preview.jpg │ │ ├── style.css │ │ ├── theme.js │ │ ├── theme.php │ │ └── ul.sc │ ├── thumbnailTest │ │ ├── image_0.jpg │ │ ├── image_1.jpg │ │ ├── image_10.jpg │ │ ├── image_11.jpg │ │ ├── image_12.png │ │ ├── image_13.png │ │ ├── image_14.png │ │ ├── image_15.jpg │ │ ├── image_16.webp │ │ ├── image_17.jpg │ │ ├── image_2.jpg │ │ ├── image_3.jpg │ │ ├── image_4.jpg │ │ ├── image_5.jpg │ │ ├── image_6.jpg │ │ ├── image_7.jpg │ │ ├── image_8.jpg │ │ └── image_9.jpg │ ├── unserializeTest.log │ └── unserializeTest2.log │ ├── _support │ ├── AcceptanceTester.php │ ├── FunctionalTester.php │ ├── Helper │ │ ├── Acceptance.php │ │ ├── Base.php │ │ ├── DelayedDb.php │ │ ├── E107Base.php │ │ ├── Functional.php │ │ └── Unit.php │ └── UnitTester.php │ ├── acceptance.suite.yml │ ├── acceptance │ ├── 0000_InstallCest.php │ ├── 0001_AdminLoginCest.php │ ├── 0002_UserSignupCest.php │ ├── 0010_ThumbCest.php │ └── _bootstrap.php │ ├── functional.suite.yml │ ├── functional │ └── _bootstrap.php │ ├── unit.suite.yml │ └── unit │ ├── ArrayDataTest.php │ ├── ConstantsTest.php │ ├── CronParserTest.php │ ├── PathsTest.php │ ├── TreeModelTest.php │ ├── UserHandlerTest.php │ ├── _bootstrap.php │ ├── bbcodes │ └── bb_imgTest.php │ ├── class2Test.php │ ├── commentTest.php │ ├── core_functionsTest.php │ ├── db_table_adminTest.php │ ├── db_verifyTest.php │ ├── e107 │ └── Shims │ │ ├── Internal │ │ └── e_dateAlternateTest.php │ │ ├── InternalAlternateTest.php │ │ ├── StrptimeTest.php │ │ └── eShimsTest.php │ ├── e107BounceTest.php │ ├── e107EmailTest.php │ ├── e107Test.php │ ├── e107_db_debugTest.php │ ├── e107_eventTest.php │ ├── e107_user_extendedTest.php │ ├── e107pluginTest.php │ ├── e107tableTest.php │ ├── eHelperTest.php │ ├── eIPHandlerTest.php │ ├── eMessageTest.php │ ├── eResponseTest.php │ ├── e_admin_controller_uiTest.php │ ├── e_admin_dispatcherTest.php │ ├── e_admin_logTest.php │ ├── e_admin_requestTest.php │ ├── e_admin_uiTest.php │ ├── e_arrayTest.php │ ├── e_bbcodeTest.php │ ├── e_customfieldsTest.php │ ├── e_dateTest.php │ ├── e_db_abstractTest.php │ ├── e_db_mysqlTest.php │ ├── e_db_pdoTest.php │ ├── e_fileTest.php │ ├── e_file_inspectorTest.php │ ├── e_formTest.php │ ├── e_front_modelTest.php │ ├── e_jsmanagerTest.php │ ├── e_library_managerTest.php │ ├── e_marketplaceTest.php │ ├── e_mediaTest.php │ ├── e_menu_layoutTest.php │ ├── e_navigationTest.php │ ├── e_onlineTest.php │ ├── e_parseTest.php │ ├── e_parse_shortcodeTest.php │ ├── e_pluginTest.php │ ├── e_pluginbuilderTest.php │ ├── e_prefTest.php │ ├── e_renderTest.php │ ├── e_searchTest.php │ ├── e_sessionTest.php │ ├── e_shortcodeTest.php │ ├── e_signup_classTest.php │ ├── e_themeTest.php │ ├── e_thumbnailTest.php │ ├── e_userTest.php │ ├── e_user_modelTest.php │ ├── e_user_providerTest.php │ ├── e_userpermsTest.php │ ├── ecacheTest.php │ ├── lancheckTest.php │ ├── languageTest.php │ ├── notifyTest.php │ ├── plugins │ ├── e107TinyMceParserTest.php │ ├── linkwords │ │ └── e_tohtml_linkwordsTest.php │ ├── news │ │ └── PluginNewsTest.php │ ├── page │ │ └── page_sitelinkTest.php │ ├── siteinfo │ │ └── siteinfo_shortcodesTest.php │ ├── social │ │ ├── SocialLoginConfigManagerTest.php │ │ └── social_setupTest.php │ └── tinymce4 │ │ └── wysiwygTest.php │ ├── pluginsTest.php │ ├── redirectionTest.php │ ├── scriptsTest.php │ ├── secure_imageTest.php │ ├── themeHandlerTest.php │ ├── user_classTest.php │ ├── userloginTest.php │ ├── validatorClassTest.php │ └── xmlClassTest.php ├── e107_themes ├── _blank │ ├── blank.sc │ ├── images │ │ └── index.html │ ├── index.html │ ├── languages │ │ └── English.php │ ├── style.css │ ├── templates │ │ ├── download │ │ │ └── download_template.php │ │ └── featurebox │ │ │ └── featurebox_category_template.php │ ├── theme.php │ ├── theme.xml │ └── theme_config.php ├── bootstrap3 │ ├── admin_style.css │ ├── admin_theme.php │ ├── css │ │ ├── bootstrap-dark.min.css │ │ ├── corporate.css │ │ ├── kadmin.css │ │ ├── modern-dark-2.css │ │ ├── modern-dark.css │ │ └── modern-light.css │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.svg │ │ ├── glyphicons-halflings-regular.ttf │ │ ├── glyphicons-halflings-regular.woff │ │ └── glyphicons-halflings-regular.woff2 │ ├── images │ │ ├── admin_bootstrap-dark.webp │ │ ├── admin_corporate.webp │ │ ├── admin_flatly.webp │ │ ├── admin_kadmin.webp │ │ ├── admin_modern-dark-2.webp │ │ ├── admin_modern-dark.webp │ │ ├── admin_modern-light.webp │ │ ├── admin_sandstone.webp │ │ ├── admin_superhero.webp │ │ ├── adminicons_16.webp │ │ ├── adminicons_32.webp │ │ ├── browsers.webp │ │ ├── glyphicons-halflings.png │ │ └── logo.webp │ ├── install │ │ └── install.xml │ ├── languages │ │ └── English_admin.php │ ├── layouts │ │ ├── jumbotron_full_layout.html │ │ ├── jumbotron_home_layout.html │ │ ├── jumbotron_sidebar_right_layout.html │ │ └── modern_business_home_layout.html │ ├── preview_frontend.png │ ├── style.css │ ├── templates │ │ ├── gallery │ │ │ └── gallery_template.php │ │ ├── menu_template.php │ │ └── page_template.php │ ├── theme.html │ ├── theme.php │ ├── theme.xml │ ├── theme_config.php │ ├── theme_library.php │ └── theme_shortcodes.php ├── bootstrap5 │ ├── README.md │ ├── images │ │ ├── journal.png │ │ ├── lumen.png │ │ ├── lux.png │ │ ├── quartz.png │ │ ├── sketchy.png │ │ ├── slate.png │ │ └── superhero.png │ ├── install │ │ └── install.xml │ ├── languages │ │ ├── English.php │ │ └── English_admin.php │ ├── layouts │ │ ├── bare_layout.html │ │ ├── full_layout.html │ │ ├── home_layout.html │ │ ├── sidebar_left_layout.html │ │ ├── sidebar_right_layout.html │ │ └── splash_layout.html │ ├── preview_frontend.png │ ├── style.css │ ├── theme.html │ ├── theme.php │ ├── theme.xml │ ├── theme_config.php │ └── theme_shortcodes.php ├── index.html └── voux │ ├── install │ ├── 2_.jpg │ ├── 8.jpg │ ├── DeathtoStock_NYC5-840x512.jpg │ ├── DeathtoStock_Portraits-4-840x512.jpg │ ├── gasmask.jpg │ ├── install.xml │ ├── logo2B252832529.png │ ├── post5-1080x720.jpg │ ├── post8-1080x715.jpg │ └── sketch-subscribe.png │ ├── preview.jpg │ ├── style.css │ ├── templates │ ├── menu_template.php │ └── news │ │ ├── news_menu_template.php │ │ └── news_template.php │ ├── theme.php │ ├── theme.xml │ ├── theme_config.php │ └── theme_shortcodes.php ├── e107_web ├── cache │ └── index.html ├── css │ ├── backcompat.css │ └── e107.css ├── index.html ├── js │ ├── bootstrap-datetimepicker │ │ ├── css │ │ │ └── bootstrap-datetimepicker.min.css │ │ └── js │ │ │ ├── bootstrap-datetimepicker.init.js │ │ │ ├── bootstrap-datetimepicker.min.js │ │ │ └── locales │ │ │ ├── bootstrap-datetimepicker.ar.js │ │ │ ├── bootstrap-datetimepicker.az.js │ │ │ ├── bootstrap-datetimepicker.bg.js │ │ │ ├── bootstrap-datetimepicker.bn.js │ │ │ ├── bootstrap-datetimepicker.ca.js │ │ │ ├── bootstrap-datetimepicker.cs.js │ │ │ ├── bootstrap-datetimepicker.da.js │ │ │ ├── bootstrap-datetimepicker.de.js │ │ │ ├── bootstrap-datetimepicker.ee.js │ │ │ ├── bootstrap-datetimepicker.el.js │ │ │ ├── bootstrap-datetimepicker.es.js │ │ │ ├── bootstrap-datetimepicker.fi.js │ │ │ ├── bootstrap-datetimepicker.fr.js │ │ │ ├── bootstrap-datetimepicker.he.js │ │ │ ├── bootstrap-datetimepicker.hr.js │ │ │ ├── bootstrap-datetimepicker.hu.js │ │ │ ├── bootstrap-datetimepicker.hy.js │ │ │ ├── bootstrap-datetimepicker.id.js │ │ │ ├── bootstrap-datetimepicker.is.js │ │ │ ├── bootstrap-datetimepicker.it.js │ │ │ ├── bootstrap-datetimepicker.ja.js │ │ │ ├── bootstrap-datetimepicker.ka.js │ │ │ ├── bootstrap-datetimepicker.ko.js │ │ │ ├── bootstrap-datetimepicker.lt.js │ │ │ ├── bootstrap-datetimepicker.lv.js │ │ │ ├── bootstrap-datetimepicker.ms.js │ │ │ ├── bootstrap-datetimepicker.nb.js │ │ │ ├── bootstrap-datetimepicker.nl.js │ │ │ ├── bootstrap-datetimepicker.no.js │ │ │ ├── bootstrap-datetimepicker.pl.js │ │ │ ├── bootstrap-datetimepicker.pt-BR.js │ │ │ ├── bootstrap-datetimepicker.pt.js │ │ │ ├── bootstrap-datetimepicker.ro.js │ │ │ ├── bootstrap-datetimepicker.rs-latin.js │ │ │ ├── bootstrap-datetimepicker.rs.js │ │ │ ├── bootstrap-datetimepicker.ru.js │ │ │ ├── bootstrap-datetimepicker.sk.js │ │ │ ├── bootstrap-datetimepicker.sl.js │ │ │ ├── bootstrap-datetimepicker.sv.js │ │ │ ├── bootstrap-datetimepicker.sw.js │ │ │ ├── bootstrap-datetimepicker.th.js │ │ │ ├── bootstrap-datetimepicker.tr.js │ │ │ ├── bootstrap-datetimepicker.ua.js │ │ │ ├── bootstrap-datetimepicker.uk.js │ │ │ ├── bootstrap-datetimepicker.zh-CN.js │ │ │ └── bootstrap-datetimepicker.zh-TW.js │ ├── bootstrap-jasny │ │ ├── img │ │ │ ├── glyphicons-halflings-white.png │ │ │ └── glyphicons-halflings.png │ │ └── js │ │ │ └── jasny-bootstrap.js │ ├── bootstrap-multiselect │ │ ├── css │ │ │ └── bootstrap-multiselect.css │ │ └── js │ │ │ └── bootstrap-multiselect.js │ ├── bootstrap-notify │ │ ├── css │ │ │ └── bootstrap-notify.css │ │ └── js │ │ │ └── bootstrap-notify.js │ ├── bootstrap-select │ │ ├── bootstrap-select.min.css │ │ └── bootstrap-select.min.js │ ├── bootstrap-tag │ │ └── bootstrap-tag.js │ ├── bootstrap.switch.init.js │ ├── bootstrap3-editable │ │ ├── css │ │ │ ├── bootstrap-editable.css │ │ │ └── bootstrap-editable.min.css │ │ ├── img │ │ │ ├── clear.png │ │ │ └── loading.gif │ │ └── js │ │ │ ├── bootstrap-editable.js │ │ │ └── bootstrap-editable.min.js │ ├── chap_script.js │ ├── chart │ │ ├── Chart.min.js │ │ ├── ChartNew.js │ │ └── mathFunctions.js │ ├── core │ │ ├── admin.flexpanel.js │ │ ├── admin.jquery.css │ │ ├── admin.jquery.js │ │ ├── all.jquery.css │ │ ├── all.jquery.js │ │ ├── backcompat.js │ │ ├── draggable.js │ │ ├── front.jquery.js │ │ ├── mediaManager.js │ │ └── settings.jquery.php │ ├── e_ajax.php │ ├── e_js.php │ ├── e_jslib.php │ ├── font-awesome │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ ├── font-awesome.css.map │ │ │ └── font-awesome.min.css │ │ └── font │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ ├── index.html │ ├── inline.php │ ├── jquery.at.caret.min.js │ ├── jquery.contenteditable.js │ ├── jquery.elastic.js │ ├── jquery.h5validate.min.js │ ├── jquery.mailcheck.min.js │ ├── nav_menu.js │ ├── nav_menu_alt.js │ ├── password │ │ └── jquery.pwdMeter.js │ ├── plupload │ │ ├── Moxie.swf │ │ ├── Moxie.xap │ │ ├── i18n │ │ │ └── en.js │ │ ├── jquery.plupload.queue │ │ │ ├── css │ │ │ │ └── jquery.plupload.queue.css │ │ │ ├── img │ │ │ │ ├── backgrounds.gif │ │ │ │ ├── buttons-disabled.png │ │ │ │ ├── buttons.png │ │ │ │ ├── delete.gif │ │ │ │ ├── done.gif │ │ │ │ ├── error.gif │ │ │ │ ├── throbber.gif │ │ │ │ └── transp50.png │ │ │ ├── jquery.plupload.queue.js │ │ │ └── jquery.plupload.queue.min.js │ │ ├── jquery.ui.plupload │ │ │ ├── css │ │ │ │ └── jquery.ui.plupload.css │ │ │ ├── img │ │ │ │ ├── loading.gif │ │ │ │ ├── plupload-bw.png │ │ │ │ └── plupload.png │ │ │ └── jquery.ui.plupload.js │ │ ├── moxie.js │ │ ├── moxie.min.js │ │ ├── plupload.dev.js │ │ ├── plupload.full.min.js │ │ ├── plupload.min.js │ │ └── upload.php │ ├── rate │ │ ├── img │ │ │ ├── cancel-off.png │ │ │ ├── cancel-on.png │ │ │ ├── star-half.png │ │ │ ├── star-off.png │ │ │ └── star-on.png │ │ ├── index.html │ │ └── js │ │ │ └── jquery.raty.js │ └── selectize │ │ ├── css │ │ ├── selectize.bootstrap2.css │ │ ├── selectize.bootstrap3.css │ │ ├── selectize.bootstrap4.css │ │ ├── selectize.bootstrap5.css │ │ ├── selectize.css │ │ ├── selectize.default.css │ │ └── selectize.legacy.css │ │ └── js │ │ ├── selectize.init.js │ │ ├── selectize.js │ │ └── selectize.min.js ├── lib │ ├── animate.css │ │ └── animate.min.css │ ├── bootstrap-suggest │ │ ├── LICENSE │ │ ├── README.md │ │ └── dist │ │ │ ├── bootstrap-suggest.css │ │ │ ├── bootstrap-suggest.js │ │ │ └── bootstrap-suggest.min.js │ ├── bootstrap-switch │ │ └── dist │ │ │ ├── css │ │ │ ├── bootstrap2 │ │ │ │ ├── bootstrap-switch.css │ │ │ │ └── bootstrap-switch.min.css │ │ │ └── bootstrap3 │ │ │ │ ├── bootstrap-switch.css │ │ │ │ └── bootstrap-switch.min.css │ │ │ └── js │ │ │ ├── bootstrap-switch.js │ │ │ └── bootstrap-switch.min.js │ ├── bootstrap │ │ ├── 3 │ │ │ ├── css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap-theme.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── npm.js │ │ ├── 4 │ │ │ ├── css │ │ │ │ ├── bootstrap.css │ │ │ │ └── bootstrap.min.css │ │ │ └── js │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ └── bootstrap.bundle.min.js │ │ └── 5 │ │ │ ├── css │ │ │ └── bootstrap.min.css │ │ │ └── js │ │ │ └── bootstrap.bundle.min.js │ ├── dropzone │ │ ├── dropzone.min.css │ │ └── dropzone.min.js │ ├── font-awesome │ │ ├── 5 │ │ │ ├── VERSION.txt │ │ │ ├── css │ │ │ │ ├── all.css │ │ │ │ ├── all.min.css │ │ │ │ ├── svg-with-js.min.css │ │ │ │ ├── v4-shims.css │ │ │ │ └── v4-shims.min.css │ │ │ ├── js │ │ │ │ ├── all.min.js │ │ │ │ └── v4-shims.min.js │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.eot │ │ │ │ ├── fa-brands-400.svg │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.eot │ │ │ │ ├── fa-regular-400.svg │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.eot │ │ │ │ ├── fa-solid-900.svg │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff │ │ │ │ └── fa-solid-900.woff2 │ │ ├── 6 │ │ │ ├── LICENSE.txt │ │ │ ├── css │ │ │ │ ├── all.css │ │ │ │ ├── all.min.css │ │ │ │ ├── v4-shims.css │ │ │ │ └── v4-shims.min.css │ │ │ ├── js │ │ │ │ ├── all.min.js │ │ │ │ └── v4-shims.min.js │ │ │ └── webfonts │ │ │ │ ├── fa-brands-400.ttf │ │ │ │ ├── fa-brands-400.woff2 │ │ │ │ ├── fa-regular-400.ttf │ │ │ │ ├── fa-regular-400.woff2 │ │ │ │ ├── fa-solid-900.ttf │ │ │ │ ├── fa-solid-900.woff2 │ │ │ │ ├── fa-v4compatibility.ttf │ │ │ │ └── fa-v4compatibility.woff2 │ │ └── 4.7.0 │ │ │ ├── css │ │ │ ├── font-awesome.css │ │ │ ├── font-awesome.css.map │ │ │ └── font-awesome.min.css │ │ │ └── fonts │ │ │ ├── FontAwesome.otf │ │ │ ├── fontawesome-webfont.eot │ │ │ ├── fontawesome-webfont.svg │ │ │ ├── fontawesome-webfont.ttf │ │ │ ├── fontawesome-webfont.woff │ │ │ └── fontawesome-webfont.woff2 │ ├── index.html │ ├── jquery-once │ │ ├── jquery.once.js │ │ ├── jquery.once.min.js │ │ └── jquery.once.min.js.map │ ├── jquery-ui │ │ ├── images │ │ │ ├── ui-icons_444444_256x240.png │ │ │ ├── ui-icons_555555_256x240.png │ │ │ ├── ui-icons_777620_256x240.png │ │ │ ├── ui-icons_777777_256x240.png │ │ │ ├── ui-icons_cc0000_256x240.png │ │ │ └── ui-icons_ffffff_256x240.png │ │ ├── jquery-ui.css │ │ ├── jquery-ui.js │ │ ├── jquery-ui.min.css │ │ ├── jquery-ui.min.js │ │ ├── jquery-ui.structure.css │ │ ├── jquery-ui.structure.min.css │ │ ├── jquery-ui.theme.css │ │ └── jquery-ui.theme.min.css │ ├── jquery.cycle │ │ └── jquery.cycle.all.js │ ├── jquery.prettyPhoto │ │ ├── css │ │ │ └── prettyPhoto.css │ │ ├── images │ │ │ └── prettyPhoto │ │ │ │ ├── dark_rounded │ │ │ │ ├── btnNext.png │ │ │ │ ├── btnPrevious.png │ │ │ │ ├── contentPattern.png │ │ │ │ ├── default_thumbnail.gif │ │ │ │ ├── loader.gif │ │ │ │ └── sprite.png │ │ │ │ ├── dark_square │ │ │ │ ├── btnNext.png │ │ │ │ ├── btnPrevious.png │ │ │ │ ├── contentPattern.png │ │ │ │ ├── default_thumbnail.gif │ │ │ │ ├── loader.gif │ │ │ │ └── sprite.png │ │ │ │ ├── default │ │ │ │ ├── default_thumb.png │ │ │ │ ├── loader.gif │ │ │ │ ├── sprite.png │ │ │ │ ├── sprite_next.png │ │ │ │ ├── sprite_prev.png │ │ │ │ ├── sprite_x.png │ │ │ │ └── sprite_y.png │ │ │ │ ├── facebook │ │ │ │ ├── btnNext.png │ │ │ │ ├── btnPrevious.png │ │ │ │ ├── contentPatternBottom.png │ │ │ │ ├── contentPatternLeft.png │ │ │ │ ├── contentPatternRight.png │ │ │ │ ├── contentPatternTop.png │ │ │ │ ├── default_thumbnail.gif │ │ │ │ ├── loader.gif │ │ │ │ └── sprite.png │ │ │ │ ├── light_rounded │ │ │ │ ├── btnNext.png │ │ │ │ ├── btnPrevious.png │ │ │ │ ├── default_thumbnail.gif │ │ │ │ ├── loader.gif │ │ │ │ └── sprite.png │ │ │ │ └── light_square │ │ │ │ ├── btnNext.png │ │ │ │ ├── btnPrevious.png │ │ │ │ ├── default_thumbnail.gif │ │ │ │ ├── loader.gif │ │ │ │ └── sprite.png │ │ └── js │ │ │ └── jquery.prettyPhoto.js │ └── jquery │ │ ├── 3 │ │ └── jquery.min.js │ │ └── 2.2.4 │ │ └── dist │ │ ├── jquery.js │ │ ├── jquery.min.js │ │ └── jquery.min.map └── utilities │ ├── dbgen.php │ ├── passcalc.php │ ├── passconv.php │ └── style.css ├── email.php ├── error.php ├── favicon.ico ├── fpw.php ├── gsitemap.php ├── index.php ├── install.php ├── login.php ├── membersonly.php ├── metaweblog.php ├── news.php ├── online.php ├── page.php ├── print.php ├── rate.php ├── request.php ├── search.php ├── signup.php ├── sitedown.php ├── submitnews.php ├── thumb.php ├── top.php ├── unsubscribe.php ├── upload.php ├── user.php ├── userposts.php └── usersettings.php /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/QUESTION.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/.github/ISSUE_TEMPLATE/QUESTION.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/.github/codecov.yml -------------------------------------------------------------------------------- /.github/workflows/build-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/.github/workflows/build-release.yml -------------------------------------------------------------------------------- /.github/workflows/build-release/.gitignore: -------------------------------------------------------------------------------- 1 | target/ -------------------------------------------------------------------------------- /.github/workflows/test-unit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/.github/workflows/test-unit.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/SECURITY.md -------------------------------------------------------------------------------- /banner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/banner.php -------------------------------------------------------------------------------- /class2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/class2.php -------------------------------------------------------------------------------- /comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/comment.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/composer.lock -------------------------------------------------------------------------------- /contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/contact.php -------------------------------------------------------------------------------- /credits.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/credits.php -------------------------------------------------------------------------------- /cron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/cron.php -------------------------------------------------------------------------------- /download.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/download.php -------------------------------------------------------------------------------- /e107.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107.htaccess -------------------------------------------------------------------------------- /e107.robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107.robots.txt -------------------------------------------------------------------------------- /e107_admin/admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/admin.php -------------------------------------------------------------------------------- /e107_admin/admin_log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/admin_log.php -------------------------------------------------------------------------------- /e107_admin/administrator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/administrator.php -------------------------------------------------------------------------------- /e107_admin/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/auth.php -------------------------------------------------------------------------------- /e107_admin/banlist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/banlist.php -------------------------------------------------------------------------------- /e107_admin/banlist_export.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/banlist_export.php -------------------------------------------------------------------------------- /e107_admin/boot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/boot.php -------------------------------------------------------------------------------- /e107_admin/cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/cache.php -------------------------------------------------------------------------------- /e107_admin/comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/comment.php -------------------------------------------------------------------------------- /e107_admin/cpage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/cpage.php -------------------------------------------------------------------------------- /e107_admin/credits.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/credits.php -------------------------------------------------------------------------------- /e107_admin/cron.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/cron.php -------------------------------------------------------------------------------- /e107_admin/db.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/db.php -------------------------------------------------------------------------------- /e107_admin/docs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/docs.php -------------------------------------------------------------------------------- /e107_admin/e107_update.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/e107_update.php -------------------------------------------------------------------------------- /e107_admin/emoticon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/emoticon.php -------------------------------------------------------------------------------- /e107_admin/eurl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/eurl.php -------------------------------------------------------------------------------- /e107_admin/fileinspector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/fileinspector.php -------------------------------------------------------------------------------- /e107_admin/filemanager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/filemanager.php -------------------------------------------------------------------------------- /e107_admin/fla.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/fla.php -------------------------------------------------------------------------------- /e107_admin/footer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/footer.php -------------------------------------------------------------------------------- /e107_admin/frontpage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/frontpage.php -------------------------------------------------------------------------------- /e107_admin/header.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/header.php -------------------------------------------------------------------------------- /e107_admin/history.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/history.php -------------------------------------------------------------------------------- /e107_admin/image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/image.php -------------------------------------------------------------------------------- /e107_admin/includes/categories.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/includes/categories.php -------------------------------------------------------------------------------- /e107_admin/includes/classis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/includes/classis.php -------------------------------------------------------------------------------- /e107_admin/includes/combo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/includes/combo.php -------------------------------------------------------------------------------- /e107_admin/includes/compact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/includes/compact.php -------------------------------------------------------------------------------- /e107_admin/includes/flexpanel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/includes/flexpanel.php -------------------------------------------------------------------------------- /e107_admin/includes/infopanel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/includes/infopanel.php -------------------------------------------------------------------------------- /e107_admin/includes/tabbed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/includes/tabbed.php -------------------------------------------------------------------------------- /e107_admin/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/index.php -------------------------------------------------------------------------------- /e107_admin/lancheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/lancheck.php -------------------------------------------------------------------------------- /e107_admin/language.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/language.php -------------------------------------------------------------------------------- /e107_admin/links.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/links.php -------------------------------------------------------------------------------- /e107_admin/mailout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/mailout.php -------------------------------------------------------------------------------- /e107_admin/menus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/menus.php -------------------------------------------------------------------------------- /e107_admin/message.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/message.php -------------------------------------------------------------------------------- /e107_admin/meta.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/meta.php -------------------------------------------------------------------------------- /e107_admin/modcomment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/modcomment.php -------------------------------------------------------------------------------- /e107_admin/newspost.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/newspost.php -------------------------------------------------------------------------------- /e107_admin/notify.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/notify.php -------------------------------------------------------------------------------- /e107_admin/phpinfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/phpinfo.php -------------------------------------------------------------------------------- /e107_admin/plugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/plugin.php -------------------------------------------------------------------------------- /e107_admin/prefs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/prefs.php -------------------------------------------------------------------------------- /e107_admin/search.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/search.php -------------------------------------------------------------------------------- /e107_admin/theme.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/theme.php -------------------------------------------------------------------------------- /e107_admin/ugflag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/ugflag.php -------------------------------------------------------------------------------- /e107_admin/update_routines.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/update_routines.php -------------------------------------------------------------------------------- /e107_admin/updateadmin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/updateadmin.php -------------------------------------------------------------------------------- /e107_admin/upload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/upload.php -------------------------------------------------------------------------------- /e107_admin/userclass2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/userclass2.php -------------------------------------------------------------------------------- /e107_admin/users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/users.php -------------------------------------------------------------------------------- /e107_admin/users_extended.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/users_extended.php -------------------------------------------------------------------------------- /e107_admin/ver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/ver.php -------------------------------------------------------------------------------- /e107_admin/wmessage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_admin/wmessage.php -------------------------------------------------------------------------------- /e107_core/bbcodes/_br.bb: -------------------------------------------------------------------------------- 1 | return '
'; -------------------------------------------------------------------------------- /e107_core/bbcodes/b.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_core/bbcodes/b.bb -------------------------------------------------------------------------------- /e107_core/bbcodes/bb_alert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_core/bbcodes/bb_alert.php -------------------------------------------------------------------------------- /e107_core/bbcodes/bb_block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_core/bbcodes/bb_block.php -------------------------------------------------------------------------------- /e107_core/bbcodes/bb_code.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_core/bbcodes/bb_code.php -------------------------------------------------------------------------------- /e107_core/bbcodes/bb_glyph.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_core/bbcodes/bb_glyph.php -------------------------------------------------------------------------------- /e107_core/bbcodes/bb_h.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_core/bbcodes/bb_h.php -------------------------------------------------------------------------------- /e107_core/bbcodes/bb_img.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_core/bbcodes/bb_img.php -------------------------------------------------------------------------------- /e107_core/bbcodes/bb_nobr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_core/bbcodes/bb_nobr.php -------------------------------------------------------------------------------- /e107_core/bbcodes/bb_p.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_core/bbcodes/bb_p.php -------------------------------------------------------------------------------- /e107_core/bbcodes/bb_video.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_core/bbcodes/bb_video.php -------------------------------------------------------------------------------- /e107_core/bbcodes/bb_youtube.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_core/bbcodes/bb_youtube.php -------------------------------------------------------------------------------- /e107_core/bbcodes/blockquote.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_core/bbcodes/blockquote.bb -------------------------------------------------------------------------------- /e107_core/bbcodes/br.bb: -------------------------------------------------------------------------------- 1 | return '
'; -------------------------------------------------------------------------------- /e107_core/bbcodes/center.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_core/bbcodes/center.bb -------------------------------------------------------------------------------- /e107_core/bbcodes/color.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_core/bbcodes/color.bb -------------------------------------------------------------------------------- /e107_core/bbcodes/email.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_core/bbcodes/email.bb -------------------------------------------------------------------------------- /e107_core/bbcodes/file.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_core/bbcodes/file.bb -------------------------------------------------------------------------------- /e107_core/bbcodes/flash.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_core/bbcodes/flash.bb -------------------------------------------------------------------------------- /e107_core/bbcodes/hide.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_core/bbcodes/hide.bb -------------------------------------------------------------------------------- /e107_core/bbcodes/html.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_core/bbcodes/html.bb -------------------------------------------------------------------------------- /e107_core/bbcodes/i.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_core/bbcodes/i.bb -------------------------------------------------------------------------------- /e107_core/bbcodes/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e107_core/bbcodes/justify.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_core/bbcodes/justify.bb -------------------------------------------------------------------------------- /e107_core/bbcodes/left.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_core/bbcodes/left.bb -------------------------------------------------------------------------------- /e107_core/bbcodes/link.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_core/bbcodes/link.bb -------------------------------------------------------------------------------- /e107_core/bbcodes/list.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_core/bbcodes/list.bb -------------------------------------------------------------------------------- /e107_core/bbcodes/quote.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_core/bbcodes/quote.bb -------------------------------------------------------------------------------- /e107_core/bbcodes/right.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_core/bbcodes/right.bb -------------------------------------------------------------------------------- /e107_core/bbcodes/sanitised.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_core/bbcodes/sanitised.bb -------------------------------------------------------------------------------- /e107_core/bbcodes/size.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_core/bbcodes/size.bb -------------------------------------------------------------------------------- /e107_core/bbcodes/spoiler.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_core/bbcodes/spoiler.bb -------------------------------------------------------------------------------- /e107_core/bbcodes/stream.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_core/bbcodes/stream.bb -------------------------------------------------------------------------------- /e107_core/bbcodes/table.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_core/bbcodes/table.bb -------------------------------------------------------------------------------- /e107_core/bbcodes/tbody.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_core/bbcodes/tbody.bb -------------------------------------------------------------------------------- /e107_core/bbcodes/td.bb: -------------------------------------------------------------------------------- 1 | //".$code_text.""; 4 | -------------------------------------------------------------------------------- /e107_core/bbcodes/textarea.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_core/bbcodes/textarea.bb -------------------------------------------------------------------------------- /e107_core/bbcodes/th.bb: -------------------------------------------------------------------------------- 1 | //".$code_text.""; 4 | -------------------------------------------------------------------------------- /e107_core/bbcodes/time.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_core/bbcodes/time.bb -------------------------------------------------------------------------------- /e107_core/bbcodes/tr.bb: -------------------------------------------------------------------------------- 1 | //".$code_text.""; 4 | -------------------------------------------------------------------------------- /e107_core/bbcodes/u.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_core/bbcodes/u.bb -------------------------------------------------------------------------------- /e107_core/bbcodes/url.bb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_core/bbcodes/url.bb -------------------------------------------------------------------------------- /e107_core/fonts/chaostimes.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_core/fonts/chaostimes.ttf -------------------------------------------------------------------------------- /e107_core/fonts/crazy_style.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_core/fonts/crazy_style.ttf -------------------------------------------------------------------------------- /e107_core/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e107_core/override/controllers/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e107_core/override/url/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e107_core/shortcodes/batch/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e107_core/shortcodes/single/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /e107_core/shortcodes/single/lan.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e107inc/e107/HEAD/e107_core/shortcodes/single/lan.php -------------------------------------------------------------------------------- /e107_core/shortcodes/single/sitecontactinfo.sc: -------------------------------------------------------------------------------- 1 | //