erDiagram POST { int post_id varchar title text content datetime date } COMMENT { int comment_id int post_id
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 | |
/* | |
Plugin Name: GatherPress RSVP Action | |
Description: Sends an email, whenever someone sends an RSVP | |
Version: 0.0.1 | |
Author: Carsten Bach | |
*/ | |
/** | |
* Fires immediately after a comment is inserted into the database. |
pie
title Gründe für Krankenhausaufenthalte von Kindern und Jugendlichen
"Psychische Erkrankungen" : 40
"Körperliche Erkrankungen" : 30
"Unfälle und Verletzungen" : 20
"Andere Gründe" : 10
How should the code for a working plugin for the current version of thunderbird look, that allows a user to set an external URL, from which the referenced default signature gets updated once a day. The URL points to a html page, which should be downloaded and safed. Automatically set the downloaded file as the source for the signature, which gets added to every email by default. The code should follow all relevant coding-standards and best-practices for thunderbird plugins.
%%{init: { 'securityLevel': 'loose', 'logLevel': 'error', 'theme': 'default' } }%%
graph LR
A(full button) --> B[text with <a href='https://github.com/figuren-theater'>github.com/figuren-theater</a> link]
click A "http://www.github.com" "This is a link"
graph TD
User[user] -->|enters data| mft(mein.f.t)
mft --> |persist| DB[(temporary user-registration<br/> data saved in wp_users)]
Admin(admin) --> |approve user| DB
DB -->|address| Nominatim{Nominatim API}
Nominatim -->|valid| D[geoJSON]
Nominatim -->|invalid| E[fa:fa-ban]
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 | |
echo '<p>Calling to <code>xhprof_sample_enable()</code>.</p>' . PHP_EOL; | |
if (function_exists('xhprof_sample_enable')) { | |
xhprof_sample_enable(); | |
} else { | |
echo '<p style="color: red;">This server does not support <code>xhprof_sample_enable()</code> function.</p>' . PHP_EOL; | |
echo 'Exit now.<br>' . PHP_EOL; | |
exit(); |
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 | |
if ( class_exists('SQLite3') ) { | |
echo 'SQLite3 class loaded'. "\n\n"; | |
} | |
if ( extension_loaded('sqlite3') ) { | |
echo 'sqlite3 extension loaded'. "\n\n"; | |
} |
NewerOlder