Create following files
/etc/sipxpbx/sipxplugin.beans.xml
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE beans PUBLIC "-//SPRING//DTD BEAN//EN" "classpath:org/sipfoundry/sipxconfig/site/spring-beans.dtd"> <beans> <!-- Optional definition to override any bean property --> <bean id="propsOverrider" class="org.springframework.beans.factory.config.PropertyOverrideConfigurer"> <property name="properties"> <props> <!-- value=myResources correlates with the bean myResources defined below --> <prop key="skin.messageSourceBeanId">myResources</prop> </props> </property> </bean> <bean id="skinProperties" class="org.sipfoundry.sipxconfig.site.skin.SkinProperties"> <property name="properties"> <props> <!-- key=X.png correlates to /sipxconfig/skin/X.png (typically referenced in CSS) --> <prop key="logo.png">my-logo.png</prop> <prop key="login.jpg">my-login.jpg</prop> <prop key="custom.css">custom.css</prop> <prop key="favicon.ico">my-favicon.ico</prop> </props> </property> </bean> <!-- Optional definition to override any string resource --> <bean id="myResources" class="org.springframework.context.support.ResourceBundleMessageSource"> <property name="basename" value="myres"/> </bean> </beans> |
Notes:
If you define your own resources, simply create a file called myres.properties that contains strings definitions you'd like to alter.
/etc/sipxpbx/myres.properties
product.name=My Product |
This file conforms to the Java's internationalization standards, so you can create a series of files to change the resource strings for any language (e.g. myres_fr.properties, etc)
Create a logo
/etc/sipxpbx/my-logo.png with roughly the same dimensions as the sipxconfig logo
And create corresponding /etc/sipxpbx/my-colors.css
/etc/sipxpbx/my-layout.css based on the default CSS files
CSS can be used to do this, for example if you want to hide Conference tab within user portal this should be added in css:
You can change the names of any files except
sipxplugin.beans.xml |
You can include all files including
sipxplugin.beans.xml |
into a jar file and drop it into
/usr/share/sipxpbx/lib |