Forums / General / Add content
Carlos Revillo
Thursday 10 November 2005 1:55:58 am
hi. i've developed some extensions to my ezpublish installation, but i can't find the way to add content to ezpublish from it.
I've got a folder and a custom content class created in admin interface. I also have created a new role and i've assigned policies to it to let all users from a custom user group the ability to insert content.
The problem is i can't find the way to insert content in the folder i want.
In the extensión i've got a new content buttom. when i click it, i've got the edit form and the url looks like http://site/.../content/edit/200/1. how i can tell the form to insert the new object in the folder i want?
thanks a lot.
Łukasz Serwatka
Thursday 10 November 2005 4:23:19 am
Hi,
Look at this short tutorialhttp://ez.no/products/ez_publish_cms/documentation/customization/tips_tricks/editing_creating_and_removing_content_from_the_user_page
Personal website -> http://serwatka.net Blog (about eZ Publish) -> http://serwatka.net/blog
Thursday 10 November 2005 4:45:56 am
Thanks. I've looked at this tutorial before but this is not exactly what i've looking for.
i have a /mymodule/list, . in the template assigned to that view i have a submit button and the code looka like this
<form method="post" action={"content/action/"|ezurl}> <input class="boton" type="submit" name="NewButton" value="publicar nuevo anuncio" /> <input type="hidden" name="NodeID" value="125" /> <input type="hidden" name="ContentObjectID" value="206" /> <input type="hidden" name="ViewMode" value="full" /> <input type="hidden" name="ClassID" value="27" /> </form>
The question is i didn't find the way to get that ContentObjectId. I've seen in standard templates things like
<input type="hidden" name="ContentObjectID" value="%objectID" />
but... what is "%objectID"?
Thursday 10 November 2005 5:01:03 am
Something is not clear here, if you want to crete object under some folder, you will need at min. 2 things, NodeID of this folder and ClassID of new creted object, thogether with button named "NewButton".
This code looks like from contextmenu where %ocjectID is replaced with correct value.
Thursday 10 November 2005 5:27:35 am
thanks a lot Lukasz. Now i've undertood what i've doing wrong. all is ok now. thanks so much.