$82 GRAYBYTE WORDPRESS FILE MANAGER $83

SERVER : premium201.web-hosting.com #1 SMP Wed Mar 26 12:08:09 UTC 2025
SERVER IP : 172.67.162.162 | ADMIN IP 216.73.216.51
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : NONE

/home/bravetechrwanda/itiministry.org/plugins/wpr-addons-pro/freemius/includes/

HOME
Current File : /home/bravetechrwanda/itiministry.org/plugins/wpr-addons-pro/freemius/includes//class-fs-lock.php
<?php
    /**
     * @package     Freemius
     * @copyright   Copyright (c) 2015, Freemius, Inc.
     * @license     https://www.gnu.org/licenses/gpl-3.0.html GNU General Public License Version 3
     * @since       2.5.1
     */

    if ( ! defined( 'ABSPATH' ) ) {
        exit;
    }

    /**
     * Class FS_Lock
     *
     * @author Vova Feldman (@svovaf)
     * @since  2.5.1
     */
    class FS_Lock {
        /**
         * @var int Random ID representing the current PHP thread.
         */
        private static $_thread_id;
        /**
         * @var string
         */
        private $_lock_id;

        /**
         * @param string $lock_id
         */
        function __construct( $lock_id ) {
            if ( ! fs_starts_with( $lock_id, WP_FS___OPTION_PREFIX ) ) {
                $lock_id = WP_FS___OPTION_PREFIX . $lock_id;
            }

            $this->_lock_id = $lock_id;

            if ( ! isset( self::$_thread_id ) ) {
                self::$_thread_id = mt_rand( 0, 32000 );
            }
        }

        /**
         * Try to acquire lock. If the lock is already set or is being acquired by another locker, don't do anything.
         *
         * @param int $expiration
         *
         * @return bool TRUE if successfully acquired lock.
         */
        function try_lock( $expiration = 0 ) {
            if ( $this->is_locked() ) {
                // Already locked.
                return false;
            }

            set_site_transient( $this->_lock_id, self::$_thread_id, $expiration );

            if ( $this->has_lock() ) {
                $this->lock($expiration);

                return true;
            }

            return false;
        }

        /**
         * Acquire lock regardless if it's already acquired by another locker or not.
         *
         * @author Vova Feldman (@svovaf)
         * @since  2.1.0
         *
         * @param int $expiration
         */
        function lock( $expiration = 0 ) {
            set_site_transient( $this->_lock_id, true, $expiration );
        }

        /**
         * Checks if lock is currently acquired.
         *
         * @author Vova Feldman (@svovaf)
         * @since  2.1.0
         *
         * @return bool
         */
        function is_locked() {
            return ( false !== get_site_transient( $this->_lock_id ) );
        }

        /**
         * Unlock the lock.
         *
         * @author Vova Feldman (@svovaf)
         * @since  2.1.0
         */
        function unlock() {
            delete_site_transient( $this->_lock_id );
        }

        /**
         * Checks if lock is currently acquired by the current locker.
         *
         * @return bool
         */
        protected function has_lock() {
            return ( self::$_thread_id == get_site_transient( $this->_lock_id ) );
        }
    }

Current_dir [ WRITEABLE ] Document_root [ NOT WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
25 May 2026 4.20 PM
bravetechrwanda / bravetechrwanda
0755
customizer
--
25 May 2026 4.20 PM
bravetechrwanda / bravetechrwanda
0755
debug
--
25 May 2026 4.20 PM
bravetechrwanda / bravetechrwanda
0755
entities
--
25 May 2026 4.20 PM
bravetechrwanda / bravetechrwanda
0755
managers
--
25 May 2026 4.20 PM
bravetechrwanda / bravetechrwanda
0755
sdk
--
25 May 2026 4.20 PM
bravetechrwanda / bravetechrwanda
0755
supplements
--
25 May 2026 4.20 PM
bravetechrwanda / bravetechrwanda
0755
class-freemius-abstract.php
12.51 KB
2 Jun 2025 7.29 AM
bravetechrwanda / bravetechrwanda
0644
class-freemius.php
991.245 KB
2 Jun 2025 7.29 AM
bravetechrwanda / bravetechrwanda
0644
class-fs-admin-notices.php
11.96 KB
2 Jun 2025 7.29 AM
bravetechrwanda / bravetechrwanda
0644
class-fs-api.php
21.936 KB
2 Jun 2025 7.29 AM
bravetechrwanda / bravetechrwanda
0644
class-fs-lock.php
2.896 KB
2 Jun 2025 7.29 AM
bravetechrwanda / bravetechrwanda
0644
class-fs-logger.php
17.441 KB
2 Jun 2025 7.29 AM
bravetechrwanda / bravetechrwanda
0644
class-fs-options.php
16.567 KB
2 Jun 2025 7.29 AM
bravetechrwanda / bravetechrwanda
0644
class-fs-plugin-updater.php
63.256 KB
2 Jun 2025 7.29 AM
bravetechrwanda / bravetechrwanda
0644
class-fs-security.php
1.809 KB
2 Jun 2025 7.29 AM
bravetechrwanda / bravetechrwanda
0644
class-fs-storage.php
22.656 KB
2 Jun 2025 7.29 AM
bravetechrwanda / bravetechrwanda
0644
class-fs-user-lock.php
2.355 KB
2 Jun 2025 7.29 AM
bravetechrwanda / bravetechrwanda
0644
fs-core-functions.php
51.062 KB
2 Jun 2025 7.29 AM
bravetechrwanda / bravetechrwanda
0644
fs-essential-functions.php
12.959 KB
2 Jun 2025 7.29 AM
bravetechrwanda / bravetechrwanda
0644
fs-html-escaping-functions.php
4.113 KB
2 Jun 2025 7.29 AM
bravetechrwanda / bravetechrwanda
0644
fs-plugin-info-dialog.php
82.079 KB
2 Jun 2025 7.29 AM
bravetechrwanda / bravetechrwanda
0644
index.php
0.087 KB
2 Jun 2025 7.29 AM
bravetechrwanda / bravetechrwanda
0644
l10n.php
1.141 KB
2 Jun 2025 7.29 AM
bravetechrwanda / bravetechrwanda
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME
Static GIF Static GIF