If you want to have your own perspective in the C1 Console, you can use a tree definition for that. Here is the guide:
How to Display Elements in Custom Perspectives
For example, if you want a new perspectived called "Transfer", you can create an XML file in ~/App_Data/Composite/TreeDefinitions:
Please don't forget to give access to the new perspective to the user account you log in with.
How to Display Elements in Custom Perspectives
For example, if you want a new perspectived called "Transfer", you can create an XML file in ~/App_Data/Composite/TreeDefinitions:
<?xml version="1.0" encoding="utf-8"?>
<ElementStructure xmlns="http://www.composite.net/ns/management/trees/treemarkup/1.0" xmlns:f="http://www.composite.net/ns/function/1.0">
<ElementStructure.AutoAttachments>
<NamedParent Name="PerspectivesRoot" Position="Top" />
</ElementStructure.AutoAttachments>
<ElementRoot>
<Children>
<Element Id="TransferRoot" Label="Transfer">
</Element>
</Children>
</ElementRoot>
</ElementStructure>
(This will create an empty perspective.)Please don't forget to give access to the new perspective to the user account you log in with.