|
SampleApplication
IntroductionIf you have followed the HowToConfigure, you can access to the sample application that is accessible from your browser in the location http://<my-host>/application. This sample application is not actually in your project code tree, but is imported from the sfOpenSocialPlugin. To test all the available sample applications you should go to the "indexSuccess.php" inside your module, and include the component as you want, like this: //this is the "myApp/modules/myModule/templates/indexSuccess.php
<?php include_component('application','tabs'); ?>There are several components that you can include and test. Here you have a list of all the possible components that you can include: <?php include_component('application','activity') ?>
<?php include_component('application','flash') ?>
<?php include_component('application','personRequest') ?>
<?php include_component('application','dataRequest') ?>
<?php include_component('application','gadgetsMakeRequest') ?>
<?php include_component('application','environment'); ?>
<?php include_component('application','skins'); ?>
<?php include_component('application','minimessage'); ?>
<?php include_component('application','views'); ?>
<?php include_component('application','tabs'); ?>Note that you can only include one component at a time. We have simple tutorials that explain how each component is enabled and explain some implementation decisions. Here it's the list of all available tutorials: |
aezrar