- Fixing bugs in Router class
git clone https://github.com/eazy-english/catoolin
composer create-project eazy-english/catoolin
Take a look to database.php file
# 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".
$connect->connect("jquery");
But why with $connect
var? Check out index.php file there is such string:
$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:
$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 JSjquery
-> JQueryvideojs
-> Video JSbootstrap
-> Bootstrap Librarymui
-> Material UIlessjs
-> LESS JSmetroui
-> Metro UI
And here are CSS Libraries:
bootstrap
-> Bootstrap Libraryvideojs
-> Video JSmui
-> Material UImetroui
-> Metro UI
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.