onlineComponentList

Navigation:  Development > Architecture and Standard > App Factory > __Def >

onlineComponentList

Previous pageReturn to chapter overviewNext page

Return all available component list in online repository.
 
App::__Def()->onlinecomponentList([Search String]);

 

 

Parameter

Type

Description

Search String

Optional

String to Search in repository

 

See below example:

 

// Return all  info
$info = App::__Def()->onlinecomponentList();
 
// Return search result
$info = App::__Def()->onlinecomponentList('e-commerce');
/*
Return 
Array

(

    [data] => Array

        (

            [0] => Array

                (

                    [Id] => 126

                    [version] => 0.1.2

                    [title] => E-Commerce

                    [description] => appRain Store is an e-commerce solution with highly customizable options. This application is comparable with appRain Version 3.1.0

 

You can Setup product wise presentatio, Downloadable item, Attribute, Comments, Ratings, Coupon, Shipping,  Payment Method Integration, Widget, Customer review, Inventory. 

 

Also you will get an option to install dummy data to see store features. 

 

Available payments : Paypal Standard, Paypal Pro, Authorize.Net 

                    [categoryid] => 41

                    [categoryname] => E-Commerce

                    [thumuri] => http://www.apprain.com/uploads/filemanager/services-icon2.jpg

                    [parmauri] => http://www.apprain.com/extension/component/126

                    [relatedcomponents] => http://www.apprain.com/extensions/component/41

                    [downloaduri] => http://www.apprain.com/extension/component/126

                    [info] => 

                    [warning] => 

                )

 

        )

 

    [paging] => 

    [link] => Showing Results 1-1 of 1

    [total] => 1

    [page] => 1

    [paging_str] => 

Showing Results 1-1 of 1

 

    Previous

    1

    Next

 

 

)

 
*/