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 | |
// This works inside a test class that extends \lucatume\WPBrowser\TestCase\WPTestCase. | |
$loaderConfig = $this->getModule('lucatume\WPBrowser\Module\WPLoader')->_getConfig(); | |
$db = new \lucatume\WPBrowser\WordPress\Database\MysqlDatabase( | |
$loaderConfig['dbName'], | |
$loaderConfig['dbUser'], | |
$loaderConfig['dbPassword'], | |
$loaderConfig['dbHost'], | |
$loaderConfig['tablePrefix'] |
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
public function is_cache_plugin_installed() { | |
return | |
function_exists( 'w3tc_flush_post' ) || | |
function_exists( 'wp_cache_post_change' ) || | |
function_exists( 'rocket_clean_post' ) || | |
has_action( 'cachify_remove_post_cache' ) || | |
has_action( 'litespeed_purge_post' ) || | |
function_exists( 'wpfc_clear_post_cache_by_id' ) || | |
class_exists( 'WPO_Page_Cache' ) || | |
has_action( 'cache_enabler_clear_page_cache_by_post' ) || |
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 | |
/** | |
* @param WP_Query $query | |
* | |
* @return bool | |
*/ | |
function pp_should_change_post_order($query) | |
{ | |
// Add a conditional here to filter when the queries should be filtered. | |
return true; |
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
nome | sigla | |
---|---|---|
Acre | AC | |
Alagoas | AL | |
Amapá | AP | |
Amazonas | AM | |
Bahia | BA | |
Ceará | CE | |
Distrito Federal | DF | |
Espírito Santo | ES | |
Goiás | GO |
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
socat TCP-LISTEN:33064,reuseaddr,fork UNIX-CONNECT:/Users/anderson/Library/Application\ Support/Local/run/eUTWMHcg4/mysql/mysqld.sock |
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 | |
use PPWPProPluginsAds\Autoloader; | |
if (file_exists(__DIR__ . '/vendor')) { | |
require_once __DIR__ . '/vendor/autoload.php'; | |
} | |
$version = '0.1.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 | |
/** | |
* Increment this number for every build. | |
* You can use an environment variable if you prefer. | |
* | |
* @var int | |
*/ | |
$buildNumber = 1; |
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 | |
/* | |
* Virtual Themed Page class | |
* | |
* This class implements virtual pages for a plugin. | |
* | |
* It is designed to be included then called for each part of the plugin | |
* that wants virtual pages. | |
* | |
* It supports multiple virtual pages and content generation functions. |
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 | |
/** | |
* Created by PhpStorm. | |
* User: Muhammad | |
* Date: 05/07/2016 | |
* Time: 01:20 PM | |
*/ | |
add_filter('get_user_metadata', 'decrypt_user_meta',10,4); |
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 | |
include dirname(__FILE__) . '/../Database/dbcon.php'; | |
header('Content-Type: text/html; charset=utf-8'); | |
$inicio = $_REQUEST['inicio']; | |
$fin = $_REQUEST['final']; | |
$sql = "SELECT SUM(gastos.Cantidad) 'Cantidad', YEAR(gastos.Fecha) 'anio' | |
FROM ciclo | |
INNER JOIN gastos ON ciclo.Identificador = gastos.year_id |
NewerOlder