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
<snippet> | |
<content><![CDATA[ | |
// ${1} Resource | |
Route::get('${1}s', array('as' => '${1}s', 'uses' => '${1}s@index')); | |
Route::get('${1}s/(:any)', array('as' => '${1}', 'uses' => '${1}s@show')); | |
Route::get('${1}s/new', array('as' => 'new_${1}', 'uses' => '${1}s@new')); | |
Route::get('${1}s/(:any)edit', array('as' => 'edit_${1}', 'uses' => '${1}s@edit')); | |
Route::post('${1}s', '${1}s@create'); | |
Route::put('${1}s/(:any)', '${1}s@update'); | |
Route::delete('${1}s/(:any)', '${1}s@destroy'); |
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
Tx_Extbase_Utility_Extension::configurePlugin( | |
$_EXTKEY, | |
'Frontend', | |
array( | |
'Post' => 'list, archivelist, latestlist, show', | |
'Comment' => 'create', | |
), | |
// non-cacheable actions | |
array( |
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
lib.myContent = COA | |
lib.myContent { | |
10 < styles.content.get | |
10.select.pidInList = INSERT_YOUR_PAGE_ID_HERE | |
10.stdWrap.stripHtml = 1 | |
10.stdWrap.crop = 100 | ... | 1 | |
20 = TEXT | |
20.value = READ MORE | |
20.typolink.parameter = INSERT_YOUR_PAGE_ID_HERE |
NewerOlder