This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Class Lowry_GF_Exporting | |
* | |
* Customizes exporting entries. Specifically to include spam entries. | |
* | |
* @since {{VERSION}} | |
*/ | |
// Exit if accessed directly |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Contains the grade for a given user. | |
* | |
* @since 1.0.0 | |
* | |
* @package LearnDash_Gradebook | |
* @subpackage LearnDash_Gradebook/includes | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function FindProxyForURL(url, host) { | |
if (host === "localhost:3000") { | |
return "PROXY https://0ae9179a-3fc7-4862-ba27-c9366ed5724d.mock.pstmn.io; DIRECT"; | |
} | |
return "DIRECT"; | |
} |
OlderNewer