This file contains hidden or 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
/* | |
The code is from file found in : /third_party/themes/admin/pancake/views/modules/clients/view.php [Line 104] | |
Put this immediately after the "else" at approximately line 104 | |
You will replace the <div class="invoice-block"></div> that currently contains the health check. | |
*/ | |
<?php | |
// Requires PHP 5.2.0 or greater | |
// Setup the payment variables | |
$paid_on_time = 0; |
This file contains hidden or 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
/** | |
* EC_DateTime | |
* | |
* By default in the PHP object, the date property is not affected when the | |
* method format() is run. However, it's annoying to have to constantly set | |
* the format you desire to output. Also, you may not have access when the | |
* __toString() method is executed in another function if passed as an object. | |
* and then treated as a string. | |
* |
This file contains hidden or 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
/** | |
* jQuery Version returned as 3 digit integer | |
* | |
* Allows you to perform version ranges if ( jQueryVersion() < 170 ) | |
* Useful for plugin dev with events and dealing with live, delegate, and on | |
* | |
* @author Eclarian LLC | |
* @return integer | |
*/ | |
var jQueryVersion = function() { |
This file contains hidden or 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
class MY_URI extends CI_URI { | |
/** | |
* Config | |
* | |
* This allows the URI class to assign and access the config object | |
* without overloading the object | |
* | |
* @since 2.0.0 | |
*/ |
This file contains hidden or 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 | |
/** | |
* Database Driver Extension | |
* | |
* DEPENDENCIES: | |
* CodeIgniter 2.x.x (with ActiveRecord turned on) | |
* is_associative() function -- place in autoloaded helper file. It should load early enough before any queries. | |
* | |
* This Extension allows you to insert/update, batch insert/batch update, and delete from any | |
* table within your database simply with an easy interface |