Skip to content

Commit da04dbb

Browse files
author
Rafael Grigorian
committed
Released Version 1.0.3
1 parent 940c4e7 commit da04dbb

File tree

87 files changed

+87
-87
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+87
-87
lines changed

README.md

Lines changed: 1 addition & 1 deletion

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "1.0.2",
2+
"version": "1.0.3",
33
"name": "magento-cloudflare",
44
"description": "Interact with popular Cloudflare features though Magento's backend portal",
55
"author": "Rafael Grigorian",

src/app/code/community/JetRails/Cloudflare/Block/Adminhtml/Dashboard.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* methods that load and render tab contents. It also contains methods that
66
* help determine if the current store is configured with the supplied
77
* Cloudflare account.
8-
* @version 1.0.2
8+
* @version 1.0.3
99
* @package JetRails® Cloudflare
1010
* @author Rafael Grigorian <development@jetrails.com>
1111
* @copyright © 2018 JETRAILS, All rights reserved

src/app/code/community/JetRails/Cloudflare/Block/Adminhtml/Dashboard/Section.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* folder. This block class has methods that give the template access to a
66
* valid form key for AJAX communications. This block class also returns a
77
* custom endpoint for every section based on the binded template's path.
8-
* @version 1.0.2
8+
* @version 1.0.3
99
* @package JetRails® Cloudflare
1010
* @author Rafael Grigorian <development@jetrails.com>
1111
* @copyright © 2018 JETRAILS, All rights reserved

src/app/code/community/JetRails/Cloudflare/Block/Adminhtml/Dashboard/Tab.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* This block class is used for tab template files. These template files
55
* use this block's helper methods in order to render all the sections that
66
* belong to said tab.
7-
* @version 1.0.2
7+
* @version 1.0.3
88
* @package JetRails® Cloudflare
99
* @author Rafael Grigorian <development@jetrails.com>
1010
* @copyright © 2018 JETRAILS, All rights reserved

src/app/code/community/JetRails/Cloudflare/Controller/Action.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* This is a generic controller that is used within other controller classes
55
* in this module. It supplies many helper methods that the child classes
66
* can use which simplify the code.
7-
* @version 1.0.2
7+
* @version 1.0.3
88
* @package JetRails® Cloudflare
99
* @author Rafael Grigorian <development@jetrails.com>
1010
* @copyright © 2018 JETRAILS, All rights reserved

src/app/code/community/JetRails/Cloudflare/Controller/Getter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* behave as the getter method. Based on the controller name, it fetches the
66
* currently stored value though the interaction of the Cloudflare API and
77
* the controller's respective model.
8-
* @version 1.0.2
8+
* @version 1.0.3
99
* @package JetRails® Cloudflare
1010
* @author Rafael Grigorian <development@jetrails.com>
1111
* @copyright © 2018 JETRAILS, All rights reserved

src/app/code/community/JetRails/Cloudflare/Controller/Toggle.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* action. The main action in this class is the toggle action which takes
66
* the passed value and casts it into a boolean value. That value is then
77
* passed straight to the API model.
8-
* @version 1.0.2
8+
* @version 1.0.3
99
* @package JetRails® Cloudflare
1010
* @author Rafael Grigorian <development@jetrails.com>
1111
* @copyright © 2018 JETRAILS, All rights reserved

src/app/code/community/JetRails/Cloudflare/Controller/Update.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* This class inherits from the Getter class and therefore, has an index
55
* action. The main action in this class is the update action which simply
66
* passes the value straight to the API model.
7-
* @version 1.0.2
7+
* @version 1.0.3
88
* @package JetRails® Cloudflare
99
* @author Rafael Grigorian <development@jetrails.com>
1010
* @copyright © 2018 JETRAILS, All rights reserved

src/app/code/community/JetRails/Cloudflare/Helper/Data.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Cloudflare API. It also deals with loading all the domain names that are
77
* found within this Magento installation and which domain is currently
88
* selected.
9-
* @version 1.0.2
9+
* @version 1.0.3
1010
* @package JetRails® Cloudflare
1111
* @author Rafael Grigorian <development@jetrails.com>
1212
* @copyright © 2018 JETRAILS, All rights reserved

src/app/code/community/JetRails/Cloudflare/Model/Adminhtml/Api/Caching/AlwaysOnline.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* This model class inherits from the Setter model. It essentially wraps
55
* that class in order to send passed data to the Cloudflare API endpoint.
6-
* @version 1.0.2
6+
* @version 1.0.3
77
* @package JetRails® Cloudflare
88
* @author Rafael Grigorian <development@jetrails.com>
99
* @copyright © 2018 JETRAILS, All rights reserved

src/app/code/community/JetRails/Cloudflare/Model/Adminhtml/Api/Caching/BrowserCacheExpiration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* This model class inherits from the Setter model. It essentially wraps
55
* that class in order to send passed data to the Cloudflare API endpoint.
6-
* @version 1.0.2
6+
* @version 1.0.3
77
* @package JetRails® Cloudflare
88
* @author Rafael Grigorian <development@jetrails.com>
99
* @copyright © 2018 JETRAILS, All rights reserved

src/app/code/community/JetRails/Cloudflare/Model/Adminhtml/Api/Caching/CachingLevel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* This model class inherits from the Setter model. It essentially wraps
55
* that class in order to send passed data to the Cloudflare API endpoint.
6-
* @version 1.0.2
6+
* @version 1.0.3
77
* @package JetRails® Cloudflare
88
* @author Rafael Grigorian <development@jetrails.com>
99
* @copyright © 2018 JETRAILS, All rights reserved

src/app/code/community/JetRails/Cloudflare/Model/Adminhtml/Api/Caching/DevelopmentMode.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* This model class inherits from the Setter model. It essentially wraps
55
* that class in order to send passed data to the Cloudflare API endpoint.
6-
* @version 1.0.2
6+
* @version 1.0.3
77
* @package JetRails® Cloudflare
88
* @author Rafael Grigorian <development@jetrails.com>
99
* @copyright © 2018 JETRAILS, All rights reserved

src/app/code/community/JetRails/Cloudflare/Model/Adminhtml/Api/Caching/PurgeCache.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* uses certain endpoints to purge everything that is related to a certain
66
* zone and it also asks the Cloudflare API to purge the cache for an array
77
* of specific URLs.
8-
* @version 1.0.2
8+
* @version 1.0.3
99
* @package JetRails® Cloudflare
1010
* @author Rafael Grigorian <development@jetrails.com>
1111
* @copyright © 2018 JETRAILS, All rights reserved

src/app/code/community/JetRails/Cloudflare/Model/Adminhtml/Api/Crypto/AlwaysUseHttps.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* This model class inherits from the Setter model. It essentially wraps
55
* that class in order to send passed data to the Cloudflare API endpoint.
6-
* @version 1.0.2
6+
* @version 1.0.3
77
* @package JetRails® Cloudflare
88
* @author Rafael Grigorian <development@jetrails.com>
99
* @copyright © 2018 JETRAILS, All rights reserved

src/app/code/community/JetRails/Cloudflare/Model/Adminhtml/Api/Crypto/AuthenticatedOriginPulls.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* This model class inherits from the Setter model. It essentially wraps
55
* that class in order to send passed data to the Cloudflare API endpoint.
6-
* @version 1.0.2
6+
* @version 1.0.3
77
* @package JetRails® Cloudflare
88
* @author Rafael Grigorian <development@jetrails.com>
99
* @copyright © 2018 JETRAILS, All rights reserved

src/app/code/community/JetRails/Cloudflare/Model/Adminhtml/Api/Crypto/AutomaticHttpsRewrites.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* This model class inherits from the Setter model. It essentially wraps
55
* that class in order to send passed data to the Cloudflare API endpoint.
6-
* @version 1.0.2
6+
* @version 1.0.3
77
* @package JetRails® Cloudflare
88
* @author Rafael Grigorian <development@jetrails.com>
99
* @copyright © 2018 JETRAILS, All rights reserved

src/app/code/community/JetRails/Cloudflare/Model/Adminhtml/Api/Crypto/DisableUniversalSsl.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* This model class inherits from the Setter model. It essentially wraps
55
* that class in order to send passed data to the Cloudflare API endpoint.
6-
* @version 1.0.2
6+
* @version 1.0.3
77
* @package JetRails® Cloudflare
88
* @author Rafael Grigorian <development@jetrails.com>
99
* @copyright © 2018 JETRAILS, All rights reserved

src/app/code/community/JetRails/Cloudflare/Model/Adminhtml/Api/Crypto/HttpStrictTransportSecurity.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* functionality that asks the Cloudflare API for a current setting value.
66
* It then adds on to that functionality by adding more methods that
77
* interact with the Cloudflare API.
8-
* @version 1.0.2
8+
* @version 1.0.3
99
* @package JetRails® Cloudflare
1010
* @author Rafael Grigorian <development@jetrails.com>
1111
* @copyright © 2018 JETRAILS, All rights reserved

src/app/code/community/JetRails/Cloudflare/Model/Adminhtml/Api/Crypto/MinimumTlsVersion.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* This model class inherits from the Setter model. It essentially wraps
55
* that class in order to send passed data to the Cloudflare API endpoint.
6-
* @version 1.0.2
6+
* @version 1.0.3
77
* @package JetRails® Cloudflare
88
* @author Rafael Grigorian <development@jetrails.com>
99
* @copyright © 2018 JETRAILS, All rights reserved

src/app/code/community/JetRails/Cloudflare/Model/Adminhtml/Api/Crypto/OpportunisticEncryption.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* This model class inherits from the Setter model. It essentially wraps
55
* that class in order to send passed data to the Cloudflare API endpoint.
6-
* @version 1.0.2
6+
* @version 1.0.3
77
* @package JetRails® Cloudflare
88
* @author Rafael Grigorian <development@jetrails.com>
99
* @copyright © 2018 JETRAILS, All rights reserved

src/app/code/community/JetRails/Cloudflare/Model/Adminhtml/Api/Crypto/Ssl.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* This model class inherits from the Setter model. It essentially wraps
55
* that class in order to send passed data to the Cloudflare API endpoint.
6-
* @version 1.0.2
6+
* @version 1.0.3
77
* @package JetRails® Cloudflare
88
* @author Rafael Grigorian <development@jetrails.com>
99
* @copyright © 2018 JETRAILS, All rights reserved

src/app/code/community/JetRails/Cloudflare/Model/Adminhtml/Api/Crypto/Tls13.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* This model class inherits from the Setter model. It essentially wraps
55
* that class in order to send passed data to the Cloudflare API endpoint.
6-
* @version 1.0.2
6+
* @version 1.0.3
77
* @package JetRails® Cloudflare
88
* @author Rafael Grigorian <development@jetrails.com>
99
* @copyright © 2018 JETRAILS, All rights reserved

src/app/code/community/JetRails/Cloudflare/Model/Adminhtml/Api/Dns/CloudflareNameservers.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* functionality that asks the Cloudflare API for a current setting value.
66
* It then adds on to that functionality by adding more methods that
77
* interact with the Cloudflare API.
8-
* @version 1.0.2
8+
* @version 1.0.3
99
* @package JetRails® Cloudflare
1010
* @author Rafael Grigorian <development@jetrails.com>
1111
* @copyright © 2018 JETRAILS, All rights reserved

src/app/code/community/JetRails/Cloudflare/Model/Adminhtml/Api/Dns/DnsRecords.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* This class inherits from the PageGetter class, so loading of the initial
55
* values gets processed through the parent class.
6-
* @version 1.0.2
6+
* @version 1.0.3
77
* @package JetRails® Cloudflare
88
* @author Rafael Grigorian <development@jetrails.com>
99
* @copyright © 2018 JETRAILS, All rights reserved

src/app/code/community/JetRails/Cloudflare/Model/Adminhtml/Api/Firewall/AccessRules.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* This class inherits from the PageGetter class, so loading of the initial
55
* values gets processed through the parent class.
6-
* @version 1.0.2
6+
* @version 1.0.3
77
* @package JetRails® Cloudflare
88
* @author Rafael Grigorian <development@jetrails.com>
99
* @copyright © 2018 JETRAILS, All rights reserved

src/app/code/community/JetRails/Cloudflare/Model/Adminhtml/Api/Firewall/ChallengePassage.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* This model class inherits from the Setter model. It essentially wraps
55
* that class in order to send passed data to the Cloudflare API endpoint.
6-
* @version 1.0.2
6+
* @version 1.0.3
77
* @package JetRails® Cloudflare
88
* @author Rafael Grigorian <development@jetrails.com>
99
* @copyright © 2018 JETRAILS, All rights reserved

src/app/code/community/JetRails/Cloudflare/Model/Adminhtml/Api/Firewall/SecurityLevel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* This model class inherits from the Setter model. It essentially wraps
55
* that class in order to send passed data to the Cloudflare API endpoint.
6-
* @version 1.0.2
6+
* @version 1.0.3
77
* @package JetRails® Cloudflare
88
* @author Rafael Grigorian <development@jetrails.com>
99
* @copyright © 2018 JETRAILS, All rights reserved

src/app/code/community/JetRails/Cloudflare/Model/Adminhtml/Api/Firewall/UserAgentBlocking.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* This class inherits from the PageGetter class, so loading of the initial
55
* values gets processed through the parent class.
6-
* @version 1.0.2
6+
* @version 1.0.3
77
* @package JetRails® Cloudflare
88
* @author Rafael Grigorian <development@jetrails.com>
99
* @copyright © 2018 JETRAILS, All rights reserved

src/app/code/community/JetRails/Cloudflare/Model/Adminhtml/Api/Getter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* This class is a parent class that child classes inherit from. It
55
* implements functionality to easily get a setting value from Cloudflare
66
* using their API.
7-
* @version 1.0.2
7+
* @version 1.0.3
88
* @package JetRails® Cloudflare
99
* @author Rafael Grigorian <development@jetrails.com>
1010
* @copyright © 2018 JETRAILS, All rights reserved

src/app/code/community/JetRails/Cloudflare/Model/Adminhtml/Api/Network/Http2.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* This model class inherits from the Setter model. It essentially wraps
55
* that class in order to send passed data to the Cloudflare API endpoint.
6-
* @version 1.0.2
6+
* @version 1.0.3
77
* @package JetRails® Cloudflare
88
* @author Rafael Grigorian <development@jetrails.com>
99
* @copyright © 2018 JETRAILS, All rights reserved

src/app/code/community/JetRails/Cloudflare/Model/Adminhtml/Api/Network/IpGeolocation.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* This model class inherits from the Setter model. It essentially wraps
55
* that class in order to send passed data to the Cloudflare API endpoint.
6-
* @version 1.0.2
6+
* @version 1.0.3
77
* @package JetRails® Cloudflare
88
* @author Rafael Grigorian <development@jetrails.com>
99
* @copyright © 2018 JETRAILS, All rights reserved

src/app/code/community/JetRails/Cloudflare/Model/Adminhtml/Api/Network/Ipv6Compatibility.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* This model class inherits from the Setter model. It essentially wraps
55
* that class in order to send passed data to the Cloudflare API endpoint.
6-
* @version 1.0.2
6+
* @version 1.0.3
77
* @package JetRails® Cloudflare
88
* @author Rafael Grigorian <development@jetrails.com>
99
* @copyright © 2018 JETRAILS, All rights reserved

src/app/code/community/JetRails/Cloudflare/Model/Adminhtml/Api/Network/PseudoIpv4.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* This model class inherits from the Setter model. It essentially wraps
55
* that class in order to send passed data to the Cloudflare API endpoint.
6-
* @version 1.0.2
6+
* @version 1.0.3
77
* @package JetRails® Cloudflare
88
* @author Rafael Grigorian <development@jetrails.com>
99
* @copyright © 2018 JETRAILS, All rights reserved

src/app/code/community/JetRails/Cloudflare/Model/Adminhtml/Api/Network/Websockets.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* This model class inherits from the Setter model. It essentially wraps
55
* that class in order to send passed data to the Cloudflare API endpoint.
6-
* @version 1.0.2
6+
* @version 1.0.3
77
* @package JetRails® Cloudflare
88
* @author Rafael Grigorian <development@jetrails.com>
99
* @copyright © 2018 JETRAILS, All rights reserved

src/app/code/community/JetRails/Cloudflare/Model/Adminhtml/Api/Overview/Configuration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* This class handles the logic to authenticate an email/token pair through
55
* the use of the Cloudflare API. It also has a very popular method that
66
* retrieves the currently selected domain's zone id.
7-
* @version 1.0.2
7+
* @version 1.0.3
88
* @package JetRails® Cloudflare
99
* @author Rafael Grigorian <development@jetrails.com>
1010
* @copyright © 2018 JETRAILS, All rights reserved

src/app/code/community/JetRails/Cloudflare/Model/Adminhtml/Api/Overview/Status.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* This model class inherits from the Setter model. It essentially wraps
55
* that class in order to send passed data to the Cloudflare API endpoint.
6-
* @version 1.0.2
6+
* @version 1.0.3
77
* @package JetRails® Cloudflare
88
* @author Rafael Grigorian <development@jetrails.com>
99
* @copyright © 2018 JETRAILS, All rights reserved

src/app/code/community/JetRails/Cloudflare/Model/Adminhtml/Api/PageGetter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* that it attempts to load all the records across all the pages of records
66
* that Cloudflare has. Once all the records have been accumulated, then the
77
* full set is returned to the caller.
8-
* @version 1.0.2
8+
* @version 1.0.3
99
* @package JetRails® Cloudflare
1010
* @author Rafael Grigorian <development@jetrails.com>
1111
* @copyright © 2018 JETRAILS, All rights reserved

src/app/code/community/JetRails/Cloudflare/Model/Adminhtml/Api/PageRules/PageRules.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* functionality that asks the Cloudflare API for a current setting value.
66
* It then adds on to that functionality by adding more methods that
77
* interact with the Cloudflare API.
8-
* @version 1.0.2
8+
* @version 1.0.3
99
* @package JetRails® Cloudflare
1010
* @author Rafael Grigorian <development@jetrails.com>
1111
* @copyright © 2018 JETRAILS, All rights reserved

src/app/code/community/JetRails/Cloudflare/Model/Adminhtml/Api/Request.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* all the data is collected and saved within the instance, this class has
77
* a method to transform all the collected data into a CURL request and
88
* executes it.
9-
* @version 1.0.2
9+
* @version 1.0.3
1010
* @package JetRails® Cloudflare
1111
* @author Rafael Grigorian <development@jetrails.com>
1212
* @copyright © 2018 JETRAILS, All rights reserved

src/app/code/community/JetRails/Cloudflare/Model/Adminhtml/Api/ScrapeShield/EmailAddressObfuscation.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* This model class inherits from the Setter model. It essentially wraps
55
* that class in order to send passed data to the Cloudflare API endpoint.
6-
* @version 1.0.2
6+
* @version 1.0.3
77
* @package JetRails® Cloudflare
88
* @author Rafael Grigorian <development@jetrails.com>
99
* @copyright © 2018 JETRAILS, All rights reserved

src/app/code/community/JetRails/Cloudflare/Model/Adminhtml/Api/ScrapeShield/HotlinkProtection.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* This model class inherits from the Setter model. It essentially wraps
55
* that class in order to send passed data to the Cloudflare API endpoint.
6-
* @version 1.0.2
6+
* @version 1.0.3
77
* @package JetRails® Cloudflare
88
* @author Rafael Grigorian <development@jetrails.com>
99
* @copyright © 2018 JETRAILS, All rights reserved

src/app/code/community/JetRails/Cloudflare/Model/Adminhtml/Api/ScrapeShield/ServerSideExcludes.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* This model class inherits from the Setter model. It essentially wraps
55
* that class in order to send passed data to the Cloudflare API endpoint.
6-
* @version 1.0.2
6+
* @version 1.0.3
77
* @package JetRails® Cloudflare
88
* @author Rafael Grigorian <development@jetrails.com>
99
* @copyright © 2018 JETRAILS, All rights reserved

0 commit comments

Comments
 (0)