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 | |
/** | |
* The following file shows how to bootstrap phpdbg so that you can mock specific server environments | |
* | |
* eval include("web-bootstrap.php") | |
* exec index.php | |
* compile | |
* break ... | |
* run | |
*/ |
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
INSERT INTO campaigns_activities ( | |
SELECT | |
a.createdAt, | |
a.updatedAt, | |
a.id, | |
e.campaignId | |
FROM | |
activities a | |
LEFT JOIN | |
subscribers s ON (s.uuid = a.target) |
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
INSERT INTO campaigns_activities ( | |
SELECT | |
ea.createdAt, | |
ea.updatedAt, | |
ea.activityId, | |
e.campaignId | |
FROM | |
email_messages_activities ea | |
LEFT JOIN | |
email_messages e ON (e.id = ea.emailMessageId) |
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
SELECT | |
u.ID AS id, | |
u.user_login AS login_name, | |
first_name.meta_value AS first_name, | |
last_name.meta_value AS last_name, | |
LOWER(u.user_email) AS email, | |
created_ip.meta_value AS created_ip, | |
u.user_registered AS created_at | |
FROM | |
wp_users u |
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 | |
/** | |
* SplClassLoader implementation that implements the technical interoperability | |
* standards for PHP 5.3 namespaces and class names. | |
* | |
* http://groups.google.com/group/php-standards/web/final-proposal | |
* | |
* // Example which loads classes for the Doctrine Common package in the | |
* // Doctrine\Common namespace. |
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 | |
/** | |
* SplClassLoader implementation that implements the technical interoperability | |
* standards for PHP 5.3 namespaces and class names. | |
* | |
* http://groups.google.com/group/php-standards/web/final-proposal | |
* | |
* // Example which loads classes for the Doctrine Common package in the | |
* // Doctrine\Common namespace. |