I hereby claim:
- I am dtbaker on github.
- I am dtbaker (https://keybase.io/dtbaker) on keybase.
- I have a public key ASC97lhPufWpAR3JpYNuOXAUFR0ETsK3xbBuJtdxUsbiIAo
To claim this, I am signing this object:
| <?php | |
| // this changes the invoice number format to a 7 digit string padded with 0's at the start | |
| // example: instead of "Invoice #1" it will be "Invoice #0000007" | |
| // upload this file to a new folder called 'includes/plugin_custom_invoice_number/custom_invoice_number.php' | |
| if(!function_exists('custom_invoice_number')) { | |
| function custom_invoice_number( $customer_id ) { |
| <?php | |
| function beautiful_blog_links() { | |
| if ( 'post' == get_post_type() ) : ?> | |
| <div class="blog_links"> | |
| <?php | |
| $blog_links = array(); | |
| $blog_links ['date'] = beautiful_posted_on( true ); | |
| if ( comments_open() ) { |
| <?php | |
| class module_data_link extends module_base{ | |
| public function init(){ } | |
| public function get_menu($holding_module=false,$holding_page=false,$type=false){ | |
| $links=array(); | |
| if(!$holding_module){ | |
| if(self::can_i('view','Data Link')){ | |
| // rendering the main menu: | |
| $links[]=array( |
| ###### ImAcq.cpp: | |
| ImAcq *imAcqAlloc() | |
| { | |
| ImAcq *imAcq = (ImAcq *)malloc(sizeof(ImAcq)); | |
| imAcq->method = IMACQ_PI; | |
| imAcq->RaspiCam_Cv_Camera = ???? // dave added this | |
| imAcq->currentFrame = 1; |
| <?php | |
| require 'vendor/autoload.php'; | |
| use PhpSlackBot\Bot; | |
| // Custom command | |
| class MyCommand extends \PhpSlackBot\Command\BaseCommand { | |
| protected function configure() { | |
| $this->setName('bot'); |
| // These are examples of MySQL host names that will work fine in mysql_connect() but fail in mysqli_connect() | |
| // If you are upgrading an old script to mysqli the client may have configured these as values for their database server. | |
| // The below script parses out port number or socket and translates that into a correct mysqli_connect() call. | |
| define('_DB_SERVER', '1.2.3.4:3306'); | |
| define('_DB_SERVER', '1.2.3.4:/tmp/socket4'); | |
| if(function_exists('mysqli_connect')){ | |
| $server = _DB_SERVER; | |
| $port_number = null; | |
| $socket = null; |
| // This example will add a custom "select" drop down to the "Image Box" | |
| // This will change the class="" on the rendered image box so we can style the Image Box differently | |
| // based on the selected option from the editor. | |
| // The class will be "my-image-box-style-blue" or "my-image-box-style-green" based on the selected option. | |
| add_action('elementor/element/before_section_end', function( $section, $section_id, $args ) { | |
| if( $section->get_name() == 'image-box' && $section_id == 'section_image' ){ | |
| // we are at the end of the "section_image" area of the "image-box" | |
| $section->add_control( |
| <?php | |
| chdir('/path/to/ucm/folder/on/webhost/'); | |
| include('init.php'); // the UCM init code. | |
| // login as admin | |
| module_security::user_id_temp_set(1); | |
| $customer_data = array( | |
| 'customer_name' => 'Name Here', |
| // This will search through all blog content and find/replace <a href> and <img src> links | |
| // It will find images on the old multi-site host, e.g. http://dtbaker.net/wp-content/uploads/sites/* and import those images into the new blog, then update the links/src in the post content. | |
| add_action('init', function(){ | |
| if(isset($_REQUEST['do_import'])){ | |
| ini_set('display_errors',true); | |
| ini_set('error_reporting',E_ALL); | |
| require_once ('wp-admin/includes/admin.php'); |
I hereby claim:
To claim this, I am signing this object: