cancel
Showing results for 
Search instead for 
Did you mean: 

Create new page in Admin Console ?

mrthu_292
Champ in-the-making
Champ in-the-making
Create new page  in Admin Console ?
Help me ! Thank you
4 REPLIES 4

afaust
Legendary Innovator
Legendary Innovator
Hello,

it would be nice to provide a bit more detail about your request. You want to add a new tool in the admin console of Share? What approaches have you tried already and where have you met a roadblock you can't overcome? Which Alfresco version are you using?

Regards
Axel

mrthu_292
Champ in-the-making
Champ in-the-making
[Alfresco 4.2.c].I want to create one new page in the Admin_Console.

Admin page is built-on web scripts.

I just created a small webscript, to render it in the admin-console.

You need to change helloWorld.get.html.ftl and you may need to write some alfresco repository Webscript according to your need.

<strong> C : \Alfresco42d\tomcat\webapps\share\WEB-INF\classes\alfresco\site-webscripts\com\murali\webscripts\helloWorld.get.desc.xml </strong>

<webscript>
   <shortname>Hello World WebScript</shortname>
   <desciption>Return greetings</desciption>
   <url>/com/murali/webscripts/helloWorld/</url>
   <authentication>admin</authentication>
   <format default="html">any</format>
   <family>admin-console</family>
</webscript>



<strong> C:\Alfresco42d\tomcat\webapps\share\WEB-INF\classes\alfresco\site-webscripts\com\murali\webscripts\helloWorld.get.html.ftl </strong>

<html>
<h1> Welcome to Admin page !</h1>
<body>
   Your html page goes here .
</body>
</html>


<strong> C:\Alfresco42d\tomcat\webapps\share\WEB-INF\classes\alfresco\messages\slingshot.properties </strong>

tool.helloWorld.label=My Admin Page
tool.helloWorld.description=My admin page for demo.


Please try this and let me know, if you've any issues.

Hello,

It's working... Thanks!!!!