-
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
44 changed files
with
446 additions
and
821 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
<?php | ||
|
||
use Codefog\HasteBundle\UndoManager; | ||
|
||
// Add the "haste_undo" operation to "undo" module | ||
$GLOBALS['BE_MOD']['system']['undo']['haste_undo'] = [\Codefog\HasteBundle\UndoManager::class, 'onUndoCallback']; | ||
$GLOBALS['BE_MOD']['system']['undo']['haste_undo'] = [UndoManager::class, 'onUndoCallback']; |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,26 @@ | ||
<?php | ||
|
||
/** | ||
* Contao Open Source CMS | ||
* Copyright (C) 2005-2013 Leo Feyer | ||
* | ||
* Formerly known as TYPOlight Open Source CMS. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | ||
* | ||
* | ||
* PHP version 5 | ||
* @copyright terminal42 gmbh 2013 | ||
* @author Andreas Schempp <[email protected]> | ||
* @license http://opensource.org/licenses/lgpl-3.0.html | ||
*/ | ||
|
||
|
||
/** | ||
/* | ||
* Errors | ||
*/ | ||
$GLOBALS['TL_LANG']['ERR']['numberInputNotAllowed'] = 'Bitte geben Sie eine valide Zahl ein (e.g. 5\'000, 5.00, 5,00, 5\'000.00)'; | ||
|
||
/** | ||
/* | ||
* Miscellaneous | ||
*/ | ||
$GLOBALS['TL_LANG']['HST']['advanced_filter'] = 'Erweiterte Filter:'; | ||
$GLOBALS['TL_LANG']['HST']['advanced_search'] = 'Suche in "%s":'; | ||
$GLOBALS['TL_LANG']['HST']['advanced_filter'] = 'Erweiterte Filter:'; | ||
$GLOBALS['TL_LANG']['HST']['advanced_search'] = 'Suche in "%s":'; | ||
|
||
/** | ||
/* | ||
* Weight Units | ||
* http://www.metric-conversions.org/weight/weight-conversions.htm | ||
*/ | ||
$GLOBALS['TL_LANG']['WGT']['mg'] = array('Milligramm (mg)', 'Eine Masseinheit; entspricht 1 Tausendstel Gramm.'); | ||
$GLOBALS['TL_LANG']['WGT']['g'] = array('Gramm (g)', 'Eine Masseinheit; entspricht 1 Tausendstel Kilogramm.'); | ||
$GLOBALS['TL_LANG']['WGT']['kg'] = array('Kilogramm (kg)', 'Ein Kilogramm entspricht 1\'000 Gramm oder 2.2 Pfund; Entspricht dem Gewicht von einem Liter Wasser.'); | ||
$GLOBALS['TL_LANG']['WGT']['t'] = array('Tonne (t)', 'Eine Tonne entspricht 1\'000 Kilogramm, oder 2,204.6 Pfund.'); | ||
$GLOBALS['TL_LANG']['WGT']['ct'] = array('Karat (ct)', 'Das metrische Karat ist eine Masseinheit für die Masse von Edelsteinen. 1 metrisches Karat = 0,2 g = 2 · 10−4 kg.'); | ||
$GLOBALS['TL_LANG']['WGT']['oz'] = array('Unze (oz)', 'Entspricht einem Sechzehntel eines Pfunds oder 28.35 Gramm.'); | ||
$GLOBALS['TL_LANG']['WGT']['lb'] = array('Pfund (lb)', 'Eine Masseinheit; entspricht 16 Unzen'); | ||
$GLOBALS['TL_LANG']['WGT']['st'] = array('Stone (st)', 'Ein britische Masseinheit; Entspricht 14 Pfund.'); | ||
$GLOBALS['TL_LANG']['WGT']['grain'] = array('Grain', 'Eine Masseinheit; entspricht 1/7000 Pfund bzw. einem Troy Grain oder 64.799 Milligramm.'); | ||
$GLOBALS['TL_LANG']['WGT']['mg'] = ['Milligramm (mg)', 'Eine Masseinheit; entspricht 1 Tausendstel Gramm.']; | ||
$GLOBALS['TL_LANG']['WGT']['g'] = ['Gramm (g)', 'Eine Masseinheit; entspricht 1 Tausendstel Kilogramm.']; | ||
$GLOBALS['TL_LANG']['WGT']['kg'] = ['Kilogramm (kg)', 'Ein Kilogramm entspricht 1\'000 Gramm oder 2.2 Pfund; Entspricht dem Gewicht von einem Liter Wasser.']; | ||
$GLOBALS['TL_LANG']['WGT']['t'] = ['Tonne (t)', 'Eine Tonne entspricht 1\'000 Kilogramm, oder 2,204.6 Pfund.']; | ||
$GLOBALS['TL_LANG']['WGT']['ct'] = ['Karat (ct)', 'Das metrische Karat ist eine Masseinheit für die Masse von Edelsteinen. 1 metrisches Karat = 0,2 g = 2 · 10−4 kg.']; | ||
$GLOBALS['TL_LANG']['WGT']['oz'] = ['Unze (oz)', 'Entspricht einem Sechzehntel eines Pfunds oder 28.35 Gramm.']; | ||
$GLOBALS['TL_LANG']['WGT']['lb'] = ['Pfund (lb)', 'Eine Masseinheit; entspricht 16 Unzen']; | ||
$GLOBALS['TL_LANG']['WGT']['st'] = ['Stone (st)', 'Ein britische Masseinheit; Entspricht 14 Pfund.']; | ||
$GLOBALS['TL_LANG']['WGT']['grain'] = ['Grain', 'Eine Masseinheit; entspricht 1/7000 Pfund bzw. einem Troy Grain oder 64.799 Milligramm.']; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,28 @@ | ||
<?php | ||
|
||
/** | ||
* Contao Open Source CMS | ||
* Copyright (C) 2005-2013 Leo Feyer | ||
* | ||
* Formerly known as TYPOlight Open Source CMS. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | ||
* | ||
* | ||
* PHP version 5 | ||
* @copyright terminal42 gmbh 2013 | ||
* @author Andreas Schempp <[email protected]> | ||
* @license http://opensource.org/licenses/lgpl-3.0.html | ||
*/ | ||
|
||
|
||
/** | ||
/* | ||
* Errors | ||
*/ | ||
$GLOBALS['TL_LANG']['ERR']['numberInputNotAllowed'] = 'Enter a valid number (e.g. 5\'000, 5.00, 5,00, 5\'000.00)'; | ||
$GLOBALS['TL_LANG']['ERR']['minFileSize'] = 'The minimum size for file uploads is %s'; | ||
$GLOBALS['TL_LANG']['ERR']['maxFileSize'] = 'The maximum size for file uploads is %s'; | ||
|
||
/** | ||
/* | ||
* Miscellaneous | ||
*/ | ||
$GLOBALS['TL_LANG']['HST']['advanced_filter'] = 'Advanced filter:'; | ||
$GLOBALS['TL_LANG']['HST']['advanced_search'] = 'Search in "%s":'; | ||
$GLOBALS['TL_LANG']['HST']['advanced_filter'] = 'Advanced filter:'; | ||
$GLOBALS['TL_LANG']['HST']['advanced_search'] = 'Search in "%s":'; | ||
|
||
/** | ||
/* | ||
* Weight Units | ||
* http://www.metric-conversions.org/weight/weight-conversions.htm | ||
*/ | ||
$GLOBALS['TL_LANG']['WGT']['mg'] = array('Milligram (mg)', 'A unit of mass equal to one-thousandth of a gram.'); | ||
$GLOBALS['TL_LANG']['WGT']['g'] = array('Gram (g)', 'A metric unit of weight equal to one thousandth of a kilogram.'); | ||
$GLOBALS['TL_LANG']['WGT']['kg'] = array('Kilogram (kg)', 'One kilogram is equivalent to 1,000 grams or 2.2 pounds; the mass of a liter of water.'); | ||
$GLOBALS['TL_LANG']['WGT']['t'] = array('Metric Ton (t)', 'A unit of weight equal to 1,000 kilograms, or 2,204.6 pounds.'); | ||
$GLOBALS['TL_LANG']['WGT']['ct'] = array('Carats (ct)', 'A measure of weight used for gemstones. One carat is equal to 1/5 of a gram (200 milligrams). Note that karat with a "K" is a measure of the purity of a gold alloy.'); | ||
$GLOBALS['TL_LANG']['WGT']['oz'] = array('Ounce (oz)', 'A unit of weight equal to one sixteenth of a pound or 28.35 grams.'); | ||
$GLOBALS['TL_LANG']['WGT']['lb'] = array('Pound (lb)', 'A unit of mass equal to 16 ounces'); | ||
$GLOBALS['TL_LANG']['WGT']['st'] = array('Stone (st)', 'A British measurement of mass that equals fourteen pounds.'); | ||
$GLOBALS['TL_LANG']['WGT']['grain'] = array('Grain', '1/7000 pound; equals a troy grain or 64.799 milligrams.'); | ||
$GLOBALS['TL_LANG']['WGT']['mg'] = ['Milligram (mg)', 'A unit of mass equal to one-thousandth of a gram.']; | ||
$GLOBALS['TL_LANG']['WGT']['g'] = ['Gram (g)', 'A metric unit of weight equal to one thousandth of a kilogram.']; | ||
$GLOBALS['TL_LANG']['WGT']['kg'] = ['Kilogram (kg)', 'One kilogram is equivalent to 1,000 grams or 2.2 pounds; the mass of a liter of water.']; | ||
$GLOBALS['TL_LANG']['WGT']['t'] = ['Metric Ton (t)', 'A unit of weight equal to 1,000 kilograms, or 2,204.6 pounds.']; | ||
$GLOBALS['TL_LANG']['WGT']['ct'] = ['Carats (ct)', 'A measure of weight used for gemstones. One carat is equal to 1/5 of a gram (200 milligrams). Note that karat with a "K" is a measure of the purity of a gold alloy.']; | ||
$GLOBALS['TL_LANG']['WGT']['oz'] = ['Ounce (oz)', 'A unit of weight equal to one sixteenth of a pound or 28.35 grams.']; | ||
$GLOBALS['TL_LANG']['WGT']['lb'] = ['Pound (lb)', 'A unit of mass equal to 16 ounces']; | ||
$GLOBALS['TL_LANG']['WGT']['st'] = ['Stone (st)', 'A British measurement of mass that equals fourteen pounds.']; | ||
$GLOBALS['TL_LANG']['WGT']['grain'] = ['Grain', '1/7000 pound; equals a troy grain or 64.799 milligrams.']; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,6 @@ | ||
<?php | ||
|
||
/** | ||
* Contao Open Source CMS | ||
* Copyright (C) 2005-2013 Leo Feyer | ||
* | ||
* Formerly known as TYPOlight Open Source CMS. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. | ||
* | ||
* | ||
* PHP version 5 | ||
* @copyright terminal42 gmbh 2013 | ||
* @author Andreas Schempp <[email protected]> | ||
* @license http://opensource.org/licenses/lgpl-3.0.html | ||
*/ | ||
|
||
|
||
/** | ||
/* | ||
* Miscellaneous | ||
*/ | ||
$GLOBALS['TL_LANG']['HST']['advanced_filter'] = 'Zaawansowany filtr:'; |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Codefog\HasteBundle\Attribute; | ||
|
||
#[\Attribute(\Attribute::TARGET_CLASS)] | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,15 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Codefog\HasteBundle\Attribute; | ||
|
||
#[\Attribute(\Attribute::TARGET_CLASS)] | ||
class DoctrineOrmVersion | ||
{ | ||
public function __construct(public string $editRouteName = 'contao_backend', public array $editRouteParams = []) | ||
{ | ||
public function __construct( | ||
public string $editRouteName = 'contao_backend', | ||
public array $editRouteParams = [], | ||
) { | ||
} | ||
} |
Oops, something went wrong.