eazy-english / catoolin
The Microframework CATOOLIN!
Requires
- php: >=5.3.0
This package is not auto-updated.
Last update: 2025-03-30 07:46:19 UTC
README
What's New???
- Fixing bugs in Router class
CLI Catoolin (Console Interface)
Get started:
git clone https://github.com/eazy-english/catoolin
Or better install with composer
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");
First set up databases, YourHost, Username, Password, Database name and charset we recommend utf8
How to work with Connect class?
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
API?
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.