[Typo3] Link direct to a back end action such as "Add news record"

Jan Wischnat - schwangau.de jan at wischnat.de
Wed Jun 22 07:44:45 CEST 2005


Hello Paul,

> Is it possible to link direct to a back end item such as "Add news record"
> so that a link such as "Submit news" from the front end can drop you
> straight into the relevant back end Add record page (assuming back end
> logins have previously been completed).

You can place editpanels in your frontend:

TS-Setup:
config.admPanel = 1

myEditPanel = COA
myEditPanel.10 = EDITPANEL
myEditPanel.10 {
    allow = toolbar
    label = Create/Edit Page
}
myEditPanel.20 = EDITPANEL
myEditPanel.20 {
    allow = new
    newRecordFromTable = tt_content
    label = New Content Element
}
myEditPanel.30 = EDITPANEL
myEditPanel.30 {
    allow = new
    newRecordFromTable = tt_news
    label = New News Item
}

page.10.marks.ADDRECORD < myEditPanel

(make sure your adminPanel is opened and properly configured in user ts
config for non admin users)
More Information:
http://typo3.org/documentation/document-library/doc_core_tsref/EDITPANEL and
http://typo3.org/documentation/document-library/doc_core_tsconfig/ADMPANEL/

hth :-)

Jan






More information about the TYPO3-english mailing list