eazy-english/catoolin

The Microframework CATOOLIN!

v1.0.5-alpha 2017-09-30 09:36 UTC

This package is not auto-updated.

Last update: 2024-04-14 02:08:09 UTC


README

What's New???

CLI Catoolin (Console Interface)

Here it is

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 JS
  • jquery -> JQuery
  • videojs -> Video JS
  • bootstrap -> Bootstrap Library
  • mui -> Material UI
  • lessjs -> LESS JS
  • metroui -> Metro UI

And here are CSS Libraries:

  • bootstrap -> Bootstrap Library
  • videojs -> Video JS
  • mui -> Material UI
  • metroui -> 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.

EXPECT UPDATES!

GOOD LUCK WITH CATOOLIN