Plugin Directory

Changeset 2834933


Ignore:
Timestamp:
12/16/2022 08:39:44 AM (3 years ago)
Author:
darklrd
Message:

WordPress compatibility check with 6.0

Location:
iflychat/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • iflychat/trunk/iflychat.php

    r2670176 r2834933  
    66 * Description: One on one chat, Multiple chatrooms, Embedded chatrooms
    77 * Author: iFlyChat Team
    8  * Version: 4.7.0
     8 * Version: 4.7.1
    99 * Author URI: https://iflychat.com/
    1010 *
    1111 * @package iflychat
    12  * @version 4.7.0
     12 * @version 4.7.1
    1313 *
    1414 * Exit if accessed directly
     
    6767}
    6868
    69 define( 'IFLYCHAT_PLUGIN_VERSION', 'WP-4.7.0' );
     69define( 'IFLYCHAT_PLUGIN_VERSION', 'WP-4.7.1' );
    7070if ( ! defined( 'IFLYCHAT_DEBUG' ) ) {
    7171    define( 'IFLYCHAT_DEBUG', false );
     
    8686 * Function to get Session Token.
    8787 *
    88  * @since 4.7.0
     88 * @since 4.7.1
    8989 * @return String $session_token as String.
    9090 */
     
    107107 * Function to get User ID.
    108108 *
    109  * @since 4.7.0
     109 * @since 4.7.1
    110110 * @return String user ID as String.
    111111 */
     
    122122 * Function to get User's Display Name.
    123123 *
    124  * @since 4.7.0
     124 * @since 4.7.1
    125125 * @return String user's Display Name as String or false.
    126126 */
     
    148148 * Function to load script Async.
    149149 *
    150  * @since 4.7.0
     150 * @since 4.7.1
    151151 * @param String $url String.
    152152 * @return String $url String.
     
    166166 * Function to Initialise the plugin.
    167167 *
    168  * @since 4.7.0
     168 * @since 4.7.1
    169169 */
    170170function iflychat_init() {
     
    220220 * Function to get user_details
    221221 *
    222  * @since 4.7.0
     222 * @since 4.7.1
    223223 */
    224224function _iflychat_get_user_auth() {
     
    308308 * Function to get User authentication
    309309 *
    310  * @since 4.7.0
     310 * @since 4.7.1
    311311 */
    312312function _iflychat_get_auth() {
     
    452452 * Function to get mobile authentication
    453453 *
    454  * @since 4.7.0
     454 * @since 4.7.1
    455455 */
    456456function iflychat_mobile_auth() {
     
    481481 * Function to Submit chat
    482482 *
    483  * @since 4.7.0
     483 * @since 4.7.1
    484484 */
    485485function iflychat_submit_uth() {
     
    497497 * Function to Install plugin
    498498 *
    499  * @since 4.7.0
     499 * @since 4.7.1
    500500 */
    501501function iflychat_install() {
     
    506506 * Function to uninstall plugin
    507507 *
    508  * @since 4.7.0
     508 * @since 4.7.1
    509509 */
    510510function iflychat_uninstall() {
     
    515515 * Function to Set Settings option
    516516 *
    517  * @since 4.7.0
     517 * @since 4.7.1
    518518 */
    519519function iflychat_set_options() {
     
    648648 * Function to create Settings page
    649649 *
    650  * @since 4.7.0
     650 * @since 4.7.1
    651651 */
    652652function iflychat_settings() {
     
    860860 * Function to check if iflychat is installed
    861861 *
    862  * @since 4.7.0
     862 * @since 4.7.1
    863863 */
    864864function iflychat_is_installed() {
     
    875875 * Function to array of settings options.
    876876 *
    877  * @since 4.7.0
     877 * @since 4.7.1
    878878 * @return Array settings options as Array.
    879879 */
     
    895895 * Function to get url method.
    896896 *
    897  * @since 4.7.0
     897 * @since 4.7.1
    898898 * @return String URL method as String.
    899899 */
     
    911911 * Function to add settings page.
    912912 *
    913  * @since 4.7.0
     913 * @since 4.7.1
    914914 */
    915915function iflychat_settings_page() {
     
    924924 * Function to register settings loops through options.
    925925 *
    926  * @since 4.7.0
     926 * @since 4.7.1
    927927 */
    928928function iflychat_register_settings() {
     
    946946 * Function to Validate form fields.
    947947 *
    948  * @since 4.7.0
     948 * @since 4.7.1
    949949 * @return Boolean true or false as Boolean.
    950950 */
     
    967967 * Function to Update site options.
    968968 *
    969  * @since 4.7.0
     969 * @since 4.7.1
    970970 */
    971971function iflychat_network_settings() {
     
    10221022 * Function to check path match or not.
    10231023 *
    1024  * @since 4.7.0
     1024 * @since 4.7.1
    10251025 * @param String $path path name as string.
    10261026 * @param String $patterns path name as string.
     
    10451045 * Function to check path check.
    10461046 *
    1047  * @since 4.7.0
     1047 * @since 4.7.1
    10481048 * @return Boolean $page_match true or false Boolean.
    10491049 */
     
    10771077 * Function to return content type.
    10781078 *
    1079  * @since 4.7.0
     1079 * @since 4.7.1
    10801080 * @return string content type as string.
    10811081 */
     
    10871087 * Function to send ofline message.
    10881088 *
    1089  * @since 4.7.0
     1089 * @since 4.7.1
    10901090 */
    10911091function iflychat_send_offline_message() {
     
    11141114 * Function to check admin chat.
    11151115 *
    1116  * @since 4.7.0
     1116 * @since 4.7.1
    11171117 * @return Boolean admin chat true or false as Boolean.
    11181118 */
     
    11401140 * Function to check chat is moderator.
    11411141 *
    1142  * @since 4.7.0
     1142 * @since 4.7.1
    11431143 * @return Boolean chat moderator true or false as Boolean.
    11441144 */
     
    11621162 * Function to destroy session ( session unset ).
    11631163 *
    1164  * @since 4.7.0
     1164 * @since 4.7.1
    11651165 */
    11661166function iflychat_token_destroy() {
     
    11881188 * Function to set cookie for user login.
    11891189 *
    1190  * @since 4.7.0
     1190 * @since 4.7.1
    11911191 */
    11921192function iflychat_user_login() {
     
    11991199 * Function to set cookie and destroy token for user logout.
    12001200 *
    1201  * @since 4.7.0
     1201 * @since 4.7.1
    12021202 */
    12031203function iflychat_user_logout() {
     
    12111211 * Function to get Inbox.
    12121212 *
    1213  * @since 4.7.0
     1213 * @since 4.7.1
    12141214 * @return string $output messages content as string.
    12151215 */
     
    12511251 * Function to get Message thread.
    12521252 *
    1253  * @since 4.7.0
     1253 * @since 4.7.1
    12541254 * @param Array $atts attributes as Array.
    12551255 * @return string $output messages content as string.
     
    13141314 * Function to get Embed code.
    13151315 *
    1316  * @since 4.7.0
     1316 * @since 4.7.1
    13171317 * @param Array $atts attributes as Array.
    13181318 * @return string $output messages content as string.
     
    13691369 * Function to get Embed code.
    13701370 *
    1371  * @since 4.7.0
     1371 * @since 4.7.1
    13721372 * @return string $url URL as string.
    13731373 */
     
    14421442 * Function to get user profile url.
    14431443 *
    1444  * @since 4.7.0
     1444 * @since 4.7.1
    14451445 * @return string url as string.
    14461446 */
     
    14681468 * Function to get option by name.
    14691469 *
    1470  * @since 4.7.0
     1470 * @since 4.7.1
    14711471 * @param string $name as option name string.
    14721472 * @return string option value string.
     
    14831483 * Function to Add a new option.
    14841484 *
    1485  * @since 4.7.0
     1485 * @since 4.7.1
    14861486 * @param string  $name as option name string.
    14871487 * @param string  $value as option value string.
     
    15011501 * Function to update a option.
    15021502 *
    1503  * @since 4.7.0
     1503 * @since 4.7.1
    15041504 * @param string $name as option name string.
    15051505 * @param string $value as option value string.
     
    15171517 * Function to check user access.
    15181518 *
    1519  * @since 4.7.0
     1519 * @since 4.7.1
    15201520 * @return Boolean Access true or false Boolean.
    15211521 */
     
    15341534 * Function to get avtar url from html.
    15351535 *
    1536  * @since 4.7.0
     1536 * @since 4.7.1
    15371537 * @param String $source html as String.
    15381538 * @return String avtar url as String.
     
    15541554 * Function to return host name (url) .
    15551555 *
    1556  * @since 4.7.0
     1556 * @since 4.7.1
    15571557 * @param Boolean $https is tru or false as boolean.
    15581558 * @return String url as String.
     
    15771577 * Function to get string.
    15781578 *
    1579  * @since 4.7.0
     1579 * @since 4.7.1
    15801580 * @param String $words as String.
    15811581 * @return String $final word as String.
     
    15901590 * Function to check chat camp.
    15911591 *
    1592  * @since 4.7.0
     1592 * @since 4.7.1
    15931593 * @return Boolean true or false as Boolean.
    15941594 */
     
    16061606 * Function to add chatcamp userdata.
    16071607 *
    1608  * @since 4.7.0
     1608 * @since 4.7.1
    16091609 * @param Array $data users data as Array.
    16101610 * @return Array $data users data as Array.
     
    16251625 * Function to check user update or not.
    16261626 *
    1627  * @since 4.7.0
     1627 * @since 4.7.1
    16281628 * @param Array  $new users data as Array.
    16291629 * @param Object $old users data as Object.
  • iflychat/trunk/readme.txt

    r2670175 r2834933  
    33Contributors: darklrd, shubhamgupta
    44Requires at least: 3.0
    5 Tested up to: 5.9
    6 Stable tag: 4.7.0
     5Tested up to: 6.1
     6Stable tag: 4.7.1
    77Tags: buddypress, chat, chat room, community, embed chat, friends, group chat, html5 chat, one to one chat, live chat, popup chat, mobile chat, multisite, wordpress chat, wp chat, ultimate member
    88License: GPLv2 or later
     
    138138== Changelog ==
    139139
     140= 4.7.1 =
     141
     14216/12/2022: WordPress compatibility check with 6.0.
     143
    140144= 4.7.0 =
    141145
     
    453457== Upgrade Notice ==
    454458
     459= 4.7.1 =
     460After updating, go to iFlyChat Settings page and click on Update button.
     461
    455462= 4.7.0 =
    456463After updating, go to iFlyChat Settings page and click on Update button.
Note: See TracChangeset for help on using the changeset viewer.