Skip to content

Instantly share code, notes, and snippets.

View bjrnqprs's full-sized avatar

Björn Kuipers bjrnqprs

View GitHub Profile
@bjrnqprs
bjrnqprs / gist:48c2e693a66ca8f389c3
Last active May 3, 2018 08:40 — forked from cedricziel/gist:6672142
Typo3 Extbase: Proper way to declare mapping's of tableName and columns.
config.tx_extbase {
persistence {
classes {
Vendor\MyPackage\Domain\Model\Organisation {
mapping {
columns {
tstamp.mapOnProperty = tstamp
hidden.mapOnProperty = hidden
crdate.mapOnProperty = crdate
cruser_id.mapOnProperty = cruserId
// Source: http://stackoverflow.com/a/14823315/440643
var _show = $.fn.modal.Constructor.prototype.show;
$.fn.modal.Constructor.prototype.show = function() {
_show.apply(this, arguments);
//Do custom stuff here
};