From charles at rapidfyre.com Tue Mar 20 01:48:21 2018 From: charles at rapidfyre.com (Charles Coleman) Date: Tue, 20 Mar 2018 01:48:21 +0100 Subject: [TYPO3-dev] =?utf-8?q?_Re=3A_Deeplink_in_Backend=3F?= References: Message-ID: I've tried these example urls in TYPO3 7.6 and they don't work any more. Can someone give the updated urls? I've already tried replacing backend.php with index.php like this... example.com/typo3/index.php?edit=page_id From jcai at objectivasoftware.com Thu Mar 29 10:14:38 2018 From: jcai at objectivasoftware.com (jim cai) Date: Thu, 29 Mar 2018 10:14:38 +0200 Subject: [TYPO3-dev] =?utf-8?q?_Typo3_extension=3A_how_to_build_a_extensio?= =?utf-8?q?n_to_load_image/media_from_my_cloud_site?= Message-ID: hi, i want to implement a Typo3 extension: load image/media from my cloud site, and insert into Typo3 web page. but i am a very new comer of Typo3. i want to learn how to build my extension. could someone tell me the guideline or a sample extension which is similiar as my extension? i read Typo3 site, but it hard to understand and the sample extension do not match my extension purpose, so i can not refer it much. the extension features are: 1. i have a DAM(Digital Assets Management) system to store lots of images/medias. i want to use OAuth protocol to connect to my DAM system. so my extension should plug in someplace to let me connect to my OAuth site. on that setting page, i should able to input my OAuth APP_ID, APP_Secret, then i should to open a dialog to connect to my OAuth site, and input my account info. later, i should be able to store the OAuth access token in some DB. 2. i want my extension appear in some places in Typo3, wherever i can insert a image/media. whenever user want to insert a image/media, the extension will launch a page/frame to my DAM system, and i can choose a image to insert into Typo3 page. when i create a image element in Typo3 site, in the Images tab/section, it has 2 buttons "Add Image" and "Select & upload files", here i guess my extension should create the 3rd button named "From Cloud". this new "From Cloud" button is used to show all my images/medias on my DAM system. and when user click this button, it will popup up a dialog. that popup dialog will show all images/medias on my DAM system, and let user select some images, and insert into current Typo3 page. this dialog contains a folder tree on left panel, to show my DAM structure. the dialog show all images/medias on right panel. it also has some Typo3 own button to insert images into web page. because i am very new comer for Typo3, read docs.typo3.org/typo3cms/ExtbaseFluidBook/4-FirstExtension/1-the-example-extension.html is already hard for me. the major block is how to insert the "From Cloud" button in Typo3 own page. could someone give me suggestion/guideline about my extension? or a similiar extension to let me download and study? many thanks! From davidbruchmann at gmail.com Fri Mar 30 16:42:33 2018 From: davidbruchmann at gmail.com (David Bruchmann) Date: Fri, 30 Mar 2018 16:42:33 +0200 Subject: [TYPO3-dev] =?utf-8?q?_Re=3A_Typo3_extension=3A_how_to_build_a_ex?= =?utf-8?q?tension_to_load_image/media_from_my_cloud_site?= References: Message-ID: Hi Jim, first I think the whole target is quite complicated and it will be hard for you to reach the goal in reasonable time. I'd advise to search a developer for that and even can offer my own abilities here. Nevertheless. I list a few documents / pages that can be helpful: * There is a quite outdated website with many tips but if you can handle some pitfalls related to versions many hints still can be helpful: http://xavier.perseguers.ch/en/tutorials/typo3/articles.html I remember an article by Xavier that I never found now in the moment that was explaining how to integrate views in the database related to external data. Data are then not present in the (local) database but can be treated like that by extbase if you use the views. Perhaps someone still has the link ... and sorry if the explanation is not 100% accurate it's long time ago that I read that article and never had any usage for it yet. * Even if you deal with extbase it's important to know the core-documents that are not directly linked to extbase: https://docs.typo3.org/typo3cms/References/Index.html * Here are some things related to extbase too, the one you mentioned is included: https://docs.typo3.org/typo3cms/GuidesAndTutorials/Index.html * Here are some docs about system-extensions that might help too: https://docs.typo3.org/typo3cms/SystemExtensions/Index.html * still some cheat-sheets: https://docs.typo3.org/typo3cms/CheatSheets/Index.html * and if you've some time to crawl: https://docs.typo3.org/typo3cms/Snippets/ * a quite helpful resource for clear defined problems is https://stackoverflow.com/ * but there exist still many sites on github.com and also individual sites that can be quite helpful, you'll find many if you search for TYPO3 and some specific problems. * still one hint: if you want to use an extension you discover on this site: https://extensions.typo3.org/ but remark it's outdated, it might be worth it to search for it on github.com, often there you find some never versions. Let me know if you've any questions, and good luck ;-) David From davidbruchmann at gmail.com Fri Mar 30 16:49:48 2018 From: davidbruchmann at gmail.com (David Bruchmann) Date: Fri, 30 Mar 2018 16:49:48 +0200 Subject: [TYPO3-dev] =?utf-8?q?_Re=3A_Typo3_extension=3A_how_to_build_a_ex?= =?utf-8?q?tension_to_load_image/media_from_my_cloud_site?= References: Message-ID: Here is still one article about the database-view: http://xavier.perseguers.ch/en/tutorials/typo3/articles/indexed-search-crawler.html#c895 Best, David From davidbruchmann at gmail.com Fri Mar 30 17:07:17 2018 From: davidbruchmann at gmail.com (David Bruchmann) Date: Fri, 30 Mar 2018 17:07:17 +0200 Subject: [TYPO3-dev] =?utf-8?q?_Re=3A_Typo3_extension=3A_how_to_build_a_ex?= =?utf-8?q?tension_to_load_image/media_from_my_cloud_site?= References: Message-ID: I still forgot to mention about the flow-documentation. Extbase is derived from *flow* and a backported solution for integration in TYPO3. Extbase and Flow are not always 100% compatible but the documents can be helpful too: * https://www.neos.io/docs-and-support/documentation.html * https://www.neos.io/docs-and-support/api-documentation.html Best, David From davidbruchmann at gmail.com Fri Mar 30 20:13:58 2018 From: davidbruchmann at gmail.com (David Bruchmann) Date: Fri, 30 Mar 2018 20:13:58 +0200 Subject: [TYPO3-dev] =?utf-8?q?_Re=3A_Realurl_-_new_GET_Params_for_readabl?= =?utf-8?q?e_URL?= References: Message-ID: Hi Steve, In your question it's not clear if "personid" and "person" are from the tables fe_users, be_users or some content-tables. But somehow you have to link to the corresponding table and determine how the current record is defined. Like mentione on https://github.com/dmitryd/typo3-realurl/wiki/Configuration-reference#getvar this a look-up is looking like this: 'postVarSets' => array( '_DEFAULT' => array( 'news' => array( array( 'GETvar' => 'tx_news_pi1[news]', 'lookUpTable' => array( 'table' => 'tx_news_domain_model_news', 'id_field' => 'uid', 'alias_field' => 'title', 'useUniqueCache' => true, 'useUniqueCache_conf' => array( 'strtolower' => true, 'spaceCharacter' => '-', ), ), ), ))); I haven't seen an installation with settings like you like to have but that's the approach I'd seek first. Best, David