Linkr is a link submission system that allows you to create a powerful directory of links in seconds. It has intuitive user interface and easy to use control panel.
I. LIBRARIES AND FRAMEWORKSThis application uses these great technologies:
"/app/config/database.php"
in order to advance
to the next step.
This application is a skin based user interface. To develop a new skin, simply create a copy of a default skin (located in /skins/default/) and then modify the config.xml file. There is no need PHP skill here since you are only playing around with CSS and javascript.
The basic config.xml looks like this:
<?xml version="1.0" encoding="utf-8"?> <detail> <name>Your Skin Name</name> <author>Your Name - your@email</author> <copyright>Your Name © 2010</copyright> <version>1.0</version> <description>My Linkr Skin</description> <stylesheets> <stylesheet media="all">css/style.css</stylesheet> <stylesheet media="print">css/print.css</stylesheet> </stylesheets> <javascripts> <javascript hook="header" type="external">js/header.js</javascript> <javascript hook="footer" type="embedded">js/footer.js</javascript> </javascripts> </detail>
If you are familiar with joomla template system, so this must be easy, although this is not exactly the same. What you need to do is create a custom css/js file, upload to your skin folder, and register them in config.xml. Finally, you need to activate your new skin from your admin control panel.
V. BUILT-IN WIDGETSBuilt-in widgets are generally a php file that does a specific function.
These php files are located in "app/widgets/"
.
Before you use them, let you know that this feature is an experimental.
Currently there are 5 built-in widgets:
To include them in your widget, simply add a new widget from your admin panel, and wrap the filename in a special tag:
<l:include> popular.php </l:include>
Some built-in widgets are also allow you to pass arguments
<l:include> popular.php?show=10&info=hits,description,url&more=show more </l:include>VI. CREDITS
Please find the Troubleshooting Guides and FAQ at http://linkr.demo.pixel6.net/page/faq.html