dev-master
9999999-devThe Microframework CATOOLIN!
MIT
The Requires
- php >=5.3.0
- twbs/bootstrap 3.3.7
- fortawesome/font-awesome 4.7.0
by Mr CaT
Wallogit.com
2017 © Pedro Peláez
The Microframework CATOOLIN!
Here it is, (*1)
git clone https://github.com/eazy-english/catoolin, (*2)
composer create-project eazy-english/catoolin, (*3)
# Including connect to DB
$this->connect("YOUR_HOST", "YOUR_USER", "YOUR_PASSWORD", "YOUR_DB", "YOUR_DB_CHARSET");
That's pretty simple, there are JS Libraries and CSS Libraries. With this class you can easily connect libraries without googling it Here we connect JS Library "JQuery"., (*4)
$connect->connect("jquery");
But why with $connect var? Check out index.php file there is such string:, (*5)
$connect = Fabric::get("Connect");
It means that we successfully did create Object of Connect class, and that we can work with, with $connect var
With connect method you can only connect JS Libraries, and with link you can connect CSS Libraries.
Example:, (*6)
$connect->connect("vuejs"); # This will connect Vue JS, the JS Library
$connect->link("bootstrap"); # This will connect Bootstrap, CSS Library
Here are JS Libraries:
* vuejs -> Vue JS
* jquery -> JQuery
* videojs -> Video JS
* bootstrap -> Bootstrap Library
* mui -> Material UI
* lessjs -> LESS JS
* metroui -> Metro UI, (*7)
And here are CSS Libraries:
* bootstrap -> Bootstrap Library
* videojs -> Video JS
* mui -> Material UI
* metroui -> Metro UI, (*8)
With CATOOLIN you can also work with such API as Pinterest, Youtube Video Parser, but we try to add APIs of another services But you without problems can use our parsers to work with API., (*9)
The Microframework CATOOLIN!
MIT