������������������������2����F��������A����������������@����I����(D����3��������;���� ��������K��������C��������'������������>������������T������������=����1*����:")������������B������������4����������������������������������������������������������������$����H7X%������������������������������������R������������������������������������������������������������������������ ��������5������������������������������������+��������V.���� ���� ����������������O����S��������������������������������Q������������������������������������0������������!U��������������������������������������������9������������������������#W6������������,����������������E����L������������������������������������MJ������������G����P<��������������������������������������������������������������������8�������� �����b�V�A���� ����;�=1����Ax��� �����J %R>̕P���p��� ����z3B��w�����h��� ����z����r�H��A`��� �����#��#$�����X��� ��������9���p��P��� ����e��l�ۀ���H��� �����(#� Q]�����@��� �����uR($���v��8��� ����K�B��w�X~'B0��� ���Xض`y��(��� ����Z )��i���A ��� ����b������������ �����!���c���$B��� ������ylpb��0������ �����6�⑔ }����� ����u�cL) N�`������� �����L��O���h� B���� e���Ck,��������� �����\�{� ���������� ����5&��Ck,�0������ ����̑D��S��`~������ ������Ip�؎��~������ �������r��i�P������ �������0�w��$�A���� �������r��i҈)������ ����:��_��i��,������ ����ɵ `/`���O�A���� ����Ulj�&�� ��A���� ����Z9��&��������� ����6�@(�����+������ ����'� ��N#��-����� ����� ��N#���Ax�� ;�c�&��`��Ap�� ����7�O $value ) { $this->{$key} = $value; } } /** * Return the global database interface. * * See: https://core.trac.wordpress.org/ticket/31556 * * @since 1.0.0 * * @return \wpdb|false Database interface, or False if not set */ protected function get_db() { // Default database return value (might change) $retval = false; // Look for a commonly used global database interface if ( isset( $GLOBALS[ $this->db_global ] ) ) { $retval = $GLOBALS[ $this->db_global ]; } /* * Developer note: * * It should be impossible for a database table to be interacted with * before the primary database interface is setup. * * However, because applications are complicated, it is unsafe to assume * anything, so this silently returns false instead of halting everything. * * If you are here because this method is returning false for you, that * means the database table is being invoked too early in the lifecycle * of the application. * * In WordPress, that means before the $wpdb global is created; in other * environments, you will need to adjust accordingly. */ // Return the database interface return $retval; } /** * Check if an operation succeeded. * * @since 1.0.0 * * @param mixed $result * @return bool */ protected function is_success( $result = false ) { // Bail if no row exists if ( empty( $result ) ) { $retval = false; // Bail if an error occurred } elseif ( is_wp_error( $result ) ) { $this->last_error = $result; $retval = false; // No errors } else { $retval = true; } // Return the result return (bool) $retval; } }