This script can be used in conjunction with the ISPmail tutorial and the Roundcube autoreply plugin
Create the following table in the database where you created the tables from the ISPmail tutorial.
| [monolog] | |
| git=http://github.com/Seldaek/monolog.git | |
| version=1.1.0 | |
| [gelf-php] | |
| git=http://github.com/mlehner/gelf-php.git | |
| version=v1.0 |
This script can be used in conjunction with the ISPmail tutorial and the Roundcube autoreply plugin
Create the following table in the database where you created the tables from the ISPmail tutorial.
| <?php | |
| namespace Acme\DemoBundle\Entity; | |
| use Doctrine\ORM\Mapping as ORM; | |
| use Symfony\Component\Validator\Constraints as Assert; | |
| /** | |
| * User |
I hereby claim:
To claim this, I am signing this object:
| <?php | |
| $price = getTokenPrice(); | |
| function getTokenPrice($region = 'EU') | |
| { | |
| $filename = 'wowtoken.json'; | |
| if (file_exists($filename) && filemtime($filename) > time() - 1200) { | |
| $content = file_get_contents($filename); | |
| } else { |
| <?php | |
| class NameValuePair | |
| { | |
| public $name; | |
| public $value; | |
| public function __construct($name, $value) | |
| { | |
| $this->name = $name; |