Plugin Directory

Changeset 2282431


Ignore:
Timestamp:
04/13/2020 01:19:56 PM (6 years ago)
Author:
matto3c
Message:

4.0.49

Location:
extrawatch/trunk
Files:
20 edited

Legend:

Unmodified
Added
Removed
  • extrawatch/trunk/ew-plg-common/ExtraWatchAPI.php

    r2153274 r2282431  
    55 * @package ExtraWatch
    66 * @version 4.0
    7  * @revision 46
     7 * @revision 49
    88 * @license http://www.gnu.org/licenses/gpl-3.0.txt     GNU General Public License v3
    9  * @copyright (C) 2019 by CodeGravity.com - All rights reserved!
     9 * @copyright (C) 2020 by CodeGravity.com - All rights reserved!
    1010 * @website http://www.extrawatch.com
    1111 */
  • extrawatch/trunk/ew-plg-common/ExtraWatchConfig.php

    r2153274 r2282431  
    55 * @package ExtraWatch
    66 * @version 4.0
    7  * @revision 46
     7 * @revision 49
    88 * @license http://www.gnu.org/licenses/gpl-3.0.txt     GNU General Public License v3
    9  * @copyright (C) 2019 by CodeGravity.com - All rights reserved!
     9 * @copyright (C) 2020 by CodeGravity.com - All rights reserved!
    1010 * @website http://www.extrawatch.com
    1111 */
  • extrawatch/trunk/ew-plg-common/ExtraWatchController.php

    r2153274 r2282431  
    55 * @package ExtraWatch
    66 * @version 4.0
    7  * @revision 46
     7 * @revision 49
    88 * @license http://www.gnu.org/licenses/gpl-3.0.txt     GNU General Public License v3
    9  * @copyright (C) 2019 by CodeGravity.com - All rights reserved!
     9 * @copyright (C) 2020 by CodeGravity.com - All rights reserved!
    1010 * @website http://www.extrawatch.com
    1111 */
  • extrawatch/trunk/ew-plg-common/ExtraWatchLogin.php

    r2153274 r2282431  
    55 * @package ExtraWatch
    66 * @version 4.0
    7  * @revision 46
     7 * @revision 49
    88 * @license http://www.gnu.org/licenses/gpl-3.0.txt     GNU General Public License v3
    9  * @copyright (C) 2019 by CodeGravity.com - All rights reserved!
     9 * @copyright (C) 2020 by CodeGravity.com - All rights reserved!
    1010 * @website http://www.extrawatch.com
    1111 */
  • extrawatch/trunk/ew-plg-common/ExtraWatchPrerequisites.php

    r2153274 r2282431  
    55 * @package ExtraWatch
    66 * @version 4.0
    7  * @revision 46
     7 * @revision 49
    88 * @license http://www.gnu.org/licenses/gpl-3.0.txt     GNU General Public License v3
    9  * @copyright (C) 2019 by CodeGravity.com - All rights reserved!
     9 * @copyright (C) 2020 by CodeGravity.com - All rights reserved!
    1010 * @website http://www.extrawatch.com
    1111 */
  • extrawatch/trunk/ew-plg-common/ExtraWatchProject.php

    r2153274 r2282431  
    55 * @package ExtraWatch
    66 * @version 4.0
    7  * @revision 46
     7 * @revision 49
    88 * @license http://www.gnu.org/licenses/gpl-3.0.txt     GNU General Public License v3
    9  * @copyright (C) 2019 by CodeGravity.com - All rights reserved!
     9 * @copyright (C) 2020 by CodeGravity.com - All rights reserved!
    1010 * @website http://www.extrawatch.com
    1111 */
  • extrawatch/trunk/ew-plg-common/ExtraWatchRenderer.php

    r2153274 r2282431  
    55 * @package ExtraWatch
    66 * @version 4.0
    7  * @revision 46
     7 * @revision 49
    88 * @license http://www.gnu.org/licenses/gpl-3.0.txt     GNU General Public License v3
    9  * @copyright (C) 2019 by CodeGravity.com - All rights reserved!
     9 * @copyright (C) 2020 by CodeGravity.com - All rights reserved!
    1010 * @website http://www.extrawatch.com
    1111 */
     
    3333
    3434
    35         <script type="text/javascript">
     35     <script type="text/javascript">
    3636            var _extraWatchParams = _extraWatchParams || [];
    3737            _extraWatchParams.projectId = '<?php echo $this->extraWatchCMSSpecific->escapeOutput($projectId);?>';
    3838            (function() {
    39                 var ew = document.createElement('script'); ew.type = 'text/javascript'; ew.async = true;
    40                 ew.src = '<?php echo ExtraWatchConfig::AGENT_URL;?>/agent/js/ew.js';
    41                 var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ew, s);
     39               var ewHead = document.getElementsByTagName('head')[0];
     40               var ewInsertScript = document.createElement('script');
     41               ewInsertScript.type = 'text/javascript';
     42               ewInsertScript.async = true;
     43               ewInsertScript.src = '<?php echo ExtraWatchConfig::AGENT_URL;?>/agent/js/ew.js'
     44               ewHead.appendChild(ewInsertScript);
    4245            })();
    43         </script>
     46     </script>
     47
    4448
    4549        <?php
  • extrawatch/trunk/ew-plg-common/ExtraWatchRequestHelper.php

    r2153274 r2282431  
    55 * @package ExtraWatch
    66 * @version 4.0
    7  * @revision 46
     7 * @revision 49
    88 * @license http://www.gnu.org/licenses/gpl-3.0.txt     GNU General Public License v3
    9  * @copyright (C) 2019 by CodeGravity.com - All rights reserved!
     9 * @copyright (C) 2020 by CodeGravity.com - All rights reserved!
    1010 * @website http://www.extrawatch.com
    1111 */
  • extrawatch/trunk/ew-plg-common/ExtraWatchSettings.php

    r2153274 r2282431  
    55 * @package ExtraWatch
    66 * @version 4.0
    7  * @revision 46
     7 * @revision 49
    88 * @license http://www.gnu.org/licenses/gpl-3.0.txt     GNU General Public License v3
    9  * @copyright (C) 2019 by CodeGravity.com - All rights reserved!
     9 * @copyright (C) 2020 by CodeGravity.com - All rights reserved!
    1010 * @website http://www.extrawatch.com
    1111 */
  • extrawatch/trunk/ew-plg-common/ExtraWatchURLHelper.php

    r2153274 r2282431  
    55 * @package ExtraWatch
    66 * @version 4.0
    7  * @revision 46
     7 * @revision 49
    88 * @license http://www.gnu.org/licenses/gpl-3.0.txt     GNU General Public License v3
    9  * @copyright (C) 2019 by CodeGravity.com - All rights reserved!
     9 * @copyright (C) 2020 by CodeGravity.com - All rights reserved!
    1010 * @website http://www.extrawatch.com
    1111 */
  • extrawatch/trunk/ew-plg-common/auth/ExtraWatchAuth.php

    r2153274 r2282431  
    55 * @package ExtraWatch
    66 * @version 4.0
    7  * @revision 46
     7 * @revision 49
    88 * @license http://www.gnu.org/licenses/gpl-3.0.txt     GNU General Public License v3
    9  * @copyright (C) 2019 by CodeGravity.com - All rights reserved!
     9 * @copyright (C) 2020 by CodeGravity.com - All rights reserved!
    1010 * @website http://www.extrawatch.com
    1111 */
  • extrawatch/trunk/ew-plg-common/auth/ExtraWatchOAuth2Request.php

    r2153274 r2282431  
    55 * @package ExtraWatch
    66 * @version 4.0
    7  * @revision 46
     7 * @revision 49
    88 * @license http://www.gnu.org/licenses/gpl-3.0.txt     GNU General Public License v3
    9  * @copyright (C) 2019 by CodeGravity.com - All rights reserved!
     9 * @copyright (C) 2020 by CodeGravity.com - All rights reserved!
    1010 * @website http://www.extrawatch.com
    1111 */
  • extrawatch/trunk/ew-plg-common/cms/ExtraWatchCMSEnum.php

    r2153274 r2282431  
    55 * @package ExtraWatch
    66 * @version 4.0
    7  * @revision 46
     7 * @revision 49
    88 * @license http://www.gnu.org/licenses/gpl-3.0.txt     GNU General Public License v3
    9  * @copyright (C) 2019 by CodeGravity.com - All rights reserved!
     9 * @copyright (C) 2020 by CodeGravity.com - All rights reserved!
    1010 * @website http://www.extrawatch.com
    1111 */
  • extrawatch/trunk/ew-plg-common/cms/ExtraWatchCMSSpecific.php

    r2153274 r2282431  
    55 * @package ExtraWatch
    66 * @version 4.0
    7  * @revision 46
     7 * @revision 49
    88 * @license http://www.gnu.org/licenses/gpl-3.0.txt     GNU General Public License v3
    9  * @copyright (C) 2019 by CodeGravity.com - All rights reserved!
     9 * @copyright (C) 2020 by CodeGravity.com - All rights reserved!
    1010 * @website http://www.extrawatch.com
    1111 */
  • extrawatch/trunk/ew-plg-common/cms/ExtraWatchJoomlaSpecific.php

    r2153274 r2282431  
    55 * @package ExtraWatch
    66 * @version 4.0
    7  * @revision 46
     7 * @revision 49
    88 * @license http://www.gnu.org/licenses/gpl-3.0.txt     GNU General Public License v3
    9  * @copyright (C) 2019 by CodeGravity.com - All rights reserved!
     9 * @copyright (C) 2020 by CodeGravity.com - All rights reserved!
    1010 * @website http://www.extrawatch.com
    1111 */
  • extrawatch/trunk/ew-plg-common/cms/ExtraWatchWordpressSpecific.php

    r2153274 r2282431  
    55 * @package ExtraWatch
    66 * @version 4.0
    7  * @revision 46
     7 * @revision 49
    88 * @license http://www.gnu.org/licenses/gpl-3.0.txt     GNU General Public License v3
    9  * @copyright (C) 2019 by CodeGravity.com - All rights reserved!
     9 * @copyright (C) 2020 by CodeGravity.com - All rights reserved!
    1010 * @website http://www.extrawatch.com
    1111 */
  • extrawatch/trunk/extrawatch-config.php

    r2153274 r2282431  
    55 * @package ExtraWatch
    66 * @version 4.0
    7  * @revision 46
     7 * @revision 49
    88 * @license http://www.gnu.org/licenses/gpl-3.0.txt     GNU General Public License v3
    9  * @copyright (C) 2019 by CodeGravity.com - All rights reserved!
     9 * @copyright (C) 2020 by CodeGravity.com - All rights reserved!
    1010 * @website http://www.extrawatch.com
    1111 */
  • extrawatch/trunk/extrawatch-social.php

    r2153274 r2282431  
    55 * @package ExtraWatch
    66 * @version 4.0
    7  * @revision 46
     7 * @revision 49
    88 * @license http://www.gnu.org/licenses/gpl-3.0.txt     GNU General Public License v3
    9  * @copyright (C) 2019 by CodeGravity.com - All rights reserved!
     9 * @copyright (C) 2020 by CodeGravity.com - All rights reserved!
    1010 * @website http://www.extrawatch.com
    1111 */
  • extrawatch/trunk/extrawatch.php

    r2153274 r2282431  
    44Plugin URI: http://www.extrawatch.com
    55Description: <strong>See visits and clicks on your website in real-time</strong>! Features: <strong>Visitor Real time Stats</strong>, <strong>Visitor paths</strong>, <strong>Location on a map</strong>, <strong>Most popular pages</strong>, <strong>Top referring pages</strong>.
    6 Version: 4.0.46
     6Version: 4.0.49
    77Author: CodeGravity.com
    88Author URI: http://www.extrawatch.com
     
    1414 * @package ExtraWatch
    1515 * @version 4.0
    16  * @revision 46
     16 * @revision 49
    1717 * @license http://www.gnu.org/licenses/gpl-3.0.txt     GNU General Public License v3
    18  * @copyright (C) 2019 by CodeGravity.com - All rights reserved!
     18 * @copyright (C) 2020 by CodeGravity.com - All rights reserved!
    1919 * @website http://www.extrawatch.com
    2020 */
  • extrawatch/trunk/readme.txt

    r2153274 r2282431  
    55Requires at least: 3.2.
    66Tested up to: 5.2.2
    7 Stable tag: 4.0.46
     7Stable tag: 4.0.49
    88License: GNU/GPLv2
    99
Note: See TracChangeset for help on using the changeset viewer.