summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2016-02-05Fix typosHEADmasterBenjamin Franzke2-2/+2
2016-02-02add model: Create the language files, if not availableBenjamin Franzke1-5/+10
2016-02-02cleanupBenjamin Franzke2-2/+3
2016-02-01Implement proper indentation for tca optionsBenjamin Franzke1-0/+3
2016-02-01add model: Ensure the required directories are availableBenjamin Franzke1-0/+4
2016-02-01Minor coding style cleanupBenjamin Franzke1-2/+0
2016-02-01Add the richtext and rte_transform extras for rte fieldsBenjamin Franzke1-1/+4
2016-02-01Merge the tca_file sed commands into one command streamBenjamin Franzke1-16/+12
Now we've only one sed invocation per file – that rocks!
2016-02-01Stop using extended regexp'sBenjamin Franzke1-2/+2
There's no need to use them
2016-02-01Fix property->field conversionBenjamin Franzke1-1/+1
Support the 'fooBarBaz' usecase
2016-02-01add property: Optimize tca column-definition positioningBenjamin Franzke1-13/+23
Place the column definition before the bracket with the same indentation as the line with "'columns' =>"
2016-01-31add property: Update the "update foo to move.." messageBenjamin Franzke1-1/+1
Do not mention ext_tables.sql and $model_file since they are fixed
2016-01-31add property: Try to define the property before the first functionBenjamin Franzke1-7/+37
..but only if a function is found, else write it to the end of the file
2016-01-31add model: Readable formating in ext_tables.phpBenjamin Franzke1-1/+4
2016-01-31Update TODOBenjamin Franzke1-1/+1
2016-01-31property: Optimize positioning in ext_tables.sqlBenjamin Franzke1-3/+22
Put the new field before tstamp (i.e after the last added property) like a human would do.
2016-01-31Add a script to create a new extbase modelBenjamin Franzke1-0/+223
Usage: add_extbase_model.sh <Model>
2016-01-31Set the field to be the title field, if it's the first propertyBenjamin Franzke1-0/+1
It's the first property when label is set to 'uid'
2016-01-31Cleanup leading comma searchFields if searchFields was emptyBenjamin Franzke1-0/+1
2016-01-30update TODOBenjamin Franzke1-2/+1
2016-01-30Show help text if there are less than 3 arguments specifiedBenjamin Franzke1-0/+33
2016-01-30Fail if the script is not run in an extension's root dirBenjamin Franzke1-0/+5
2016-01-30Add support for more typesBenjamin Franzke1-9/+81
password, float, bool, date, datetime, time, timesec, date_timestamp and datetime_timestamp
2016-01-30cleanup an old commentBenjamin Franzke1-4/+0
2016-01-30Add support for automatic searchFields populationBenjamin Franzke1-4/+8
2016-01-30Add TODO'sBenjamin Franzke1-0/+2
2016-01-30Add support for TCA files named by the tablenameBenjamin Franzke1-3/+8
2016-01-27Initial implementation of automatic property additiionBenjamin Franzke1-0/+142
Currently supported types are int,string,text and rte (although rte does not yet initialize the rte_transofmr) Usage: add_extbase_property.sh ModelName newProperty int add_extbase_property.sh ModelName newProperty string add_extbase_property.sh ModelName newProperty text add_extbase_property.sh ModelName newProperty rte