[TYPO3-mvc] setHidden - how to add record as hidden
invigo
sd at invigo.de
Wed Sep 7 21:12:06 CEST 2011
1.) you need a hidden field in your table definition
hidden tinyint(4) unsigned DEFAULT '0' NOT NULL,
2.) You need hidden in your tca
'hidden' => array(
'exclude' => 1,
'label' => 'LLL:EXT:lang/locallang_general.xml:LGL.hidden',
'config' => array(
'type' => 'check'
)
),
then you should be able to use setHidden
BR's Jochen
Am 07.09.2011 21:06, schrieb Dawid Pacholczyk:
> Ok, yes this is case of my frontend. But still I want to add record as
> hidden (inactive). Clients wants, clients gets so never mind how I`ll
> show it on front end. The question is how to add a record with field
> hidden set to 1
>
> W dniu 2011-09-07 21:00, invigo pisze:
>> Hi David,
>> isn't it a question of your frontend, which records to show and which
>> ones to hide?
>>
>> BR's
>> Jochen
>>
>> Am 07.09.2011 20:45, schrieb Dawid Pacholczyk:
>>> Hello Listm,
>>> I want to ask is there a method that allows me to add new record to db
>>> as hidden ?
>>> I want to add an inactive record (so it will be seen in BE but not on
>>> FE) and I want to active it after clicking on url in email.
>>>
>>> How can I do that ? Do I need to do some special query in repository
>>> that will edit last record ?
>>>
>>> Best regards,
>>> Dawid Pacholczyk
>>
>
More information about the TYPO3-project-typo3v4mvc
mailing list