2017 © Pedro Peláez
 

library core

The core of FOL framework

image

fol/core

The core of FOL framework

  • Thursday, December 31, 2015
  • by oscarotero
  • Repository
  • 2 Watchers
  • 0 Stars
  • 1,664 Installations
  • PHP
  • 3 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 81 Versions
  • 0 % Grown

The README.md

fol-core

Build Status Scrutinizer Code Quality, (*1)

Trátase dunha simple clase que serve de contenedor da nosa app. Contén as seguintes funcionalidades:, (*2)

Container-interop

Compatible coa interface container-interop, o que permite interactuar con outros contedores. Podes especificar dependencias ou engadir outros contenedores:, (*3)

$app = new Fol();

//Definir dependencias:
$app->set('database', function () {
    return new MyDatabaseClass($config);
});

//Engadir outros conenedores compatibles con Container-Interop
$app->add($container);

//Engadir un ServiceProviderInterface
$app->register(new MyServiceProvider());

//Obter as dependencias
$database = $app->get('database');

//Tamén podes usar a interface de array para engadir/obter dependencias:
$database = $app['database'];

$app['templates'] = function () {
    return new TemplatesEngine();
};

Path

A parte de servir de container, tamén serve para definir o path da nosa aplicación. O path é simplemente a ruta absoluta ao directorio da aplicación:, (*4)

$app = new Fol();

//Dame a ruta
$app->getPath(); // /var/www/sitioweb/app

//Dame a ruta xuntándolle estas pezas:
$app->getPath('dir/subdir', '../outro'); // /var/www/sitioweb/dir/outro

//O path calculase automaticamente (o directorio onde se atopa a clase instanciada) pero podes cambialo:
$path->setPath(__DIR__); //Nunca pode rematar en "/"

Url

Outra función é gardar a url pública dende a que se accede á nosa app, útil para xerar links, por exemplo:, (*5)

$app = new Fol();

//Define unha url
$app->setUrl('http://localhost/o-meu-sitio');

//Dame a url
$app->getUrl(); // http://localhost/o-meu-sitio

//Dame só o path
$app->getUrlPath(); // /o-meu-sitio

//Dame só o host
$app->getUrlHost(); // http://localhost

//Tamén podes engadirlle pezas:
$app->getUrl('post/1', 'ver'); // http://localhost/o-meu-sitio/post/1/ver

$app->getUrlPath('post/1', 'ver'); // /o-meu-sitio/post/1/ver

Namespace

Por último, temos unha utilidade para devolver o namespace da app. Útil para instanciar clases relativas., (*6)

namespace App;

use Fol;

class App extends Fol {

}

$app = new App();

//Dame o namespace
$app->getNamespace(); // App

//Tamén podes engadirlle pezas
$app->getNamespace('Controllers\\Base'); // App\\Controllers\\Base;

The Versions

31/12 2015

dev-master

9999999-dev https://github.com/fol-project/core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

 

framework

31/12 2015

v11.1.0

11.1.0.0 https://github.com/fol-project/core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

 

framework

30/12 2015

v11.0.0

11.0.0.0 https://github.com/fol-project/core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

 

framework

31/10 2015

v10.0.1

10.0.1.0 https://github.com/fol-project/core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

 

framework

31/10 2015

v10.0.0

10.0.0.0 https://github.com/fol-project/core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

 

framework

19/10 2015

v9.0.2

9.0.2.0 https://github.com/fol-project/core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

 

framework

19/10 2015

v9.0.1

9.0.1.0 https://github.com/fol-project/core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

 

framework

15/10 2015

v9.0.0

9.0.0.0 https://github.com/fol-project/core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

 

framework

13/08 2015

v8.2.0

8.2.0.0 https://github.com/fol-project/core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

 

framework

21/07 2015

v8.1.0

8.1.0.0 https://github.com/fol-project/core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

 

framework

25/06 2015

v8.0.1

8.0.1.0 https://github.com/fol-project/core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

 

framework

25/06 2015

v8.0.0

8.0.0.0 https://github.com/fol-project/core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

 

framework

21/05 2015

v7.2

7.2.0.0 https://github.com/fol-project/core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

 

framework

17/03 2015

v7.1

7.1.0.0 https://github.com/fol-project/core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

 

framework

11/03 2015

v7.0

7.0.0.0 https://github.com/fol-project/core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

 

framework

09/03 2015

v6.0

6.0.0.0 https://github.com/fol-project/core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

 

framework

02/03 2015

v5.1

5.1.0.0 https://github.com/fol-project/core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

 

framework

17/02 2015

v5.0

5.0.0.0 https://github.com/fol-project/core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

 

framework

17/01 2015

v4.1.0

4.1.0.0 https://github.com/fol-project/core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

15/01 2015

v4.0.0

4.0.0.0 https://github.com/fol-project/core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

01/11 2014

v3.4.4

3.4.4.0 https://github.com/fol-project/core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

17/09 2014

v3.4.3

3.4.3.0 https://github.com/fol-project/core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

11/09 2014

v3.4.2

3.4.2.0 https://github.com/fol-project/core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

03/09 2014

v3.4.1

3.4.1.0 https://github.com/fol-project/core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

02/09 2014

v3.4.0

3.4.0.0 https://github.com/fol-project/core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

30/08 2014

v3.3.1

3.3.1.0 https://github.com/fol-project/core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

29/08 2014

v3.3.0

3.3.0.0 https://github.com/fol-project/core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

25/08 2014

v3.2.0

3.2.0.0 https://github.com/fol-project/core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

29/07 2014

v3.1.1

3.1.1.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

29/07 2014

v3.1.0

3.1.0.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

18/07 2014

v3.0.0

3.0.0.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

04/06 2014

v2.6.0

2.6.0.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

14/05 2014

v2.5.0

2.5.0.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

13/05 2014

v2.4.2

2.4.2.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

13/05 2014

v2.4.1

2.4.1.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

13/05 2014

v2.4.0

2.4.0.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

07/05 2014

v2.3.2

2.3.2.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

03/05 2014

v2.3.1

2.3.1.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

02/05 2014

v2.3.0

2.3.0.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

15/04 2014

v2.2.1

2.2.1.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

14/04 2014

v2.2.0

2.2.0.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

06/04 2014

v2.1.1

2.1.1.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

06/04 2014

dev-scrutinizer-patch-1

dev-scrutinizer-patch-1 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

30/03 2014

v2.1.0

2.1.0.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

26/03 2014

v2.0.2

2.0.2.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

25/03 2014

v2.0.1

2.0.1.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

25/03 2014

v2.0.0

2.0.0.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

13/03 2014

v1.7.0

1.7.0.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

13/03 2014

v1.6.0

1.6.0.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

11/03 2014

v1.5.3

1.5.3.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

07/03 2014

v1.5.2

1.5.2.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

07/03 2014

v1.5.1

1.5.1.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

06/03 2014

v1.5.0

1.5.0.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

05/03 2014

v1.4.0

1.4.0.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

01/03 2014

v1.3.4

1.3.4.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

22/02 2014

v1.3.3

1.3.3.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

21/02 2014

v1.3.2

1.3.2.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

21/02 2014

v1.3.1

1.3.1.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

20/02 2014

v1.3.0

1.3.0.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

18/02 2014

v1.2.1

1.2.1.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

13/02 2014

v1.2.0

1.2.0.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

13/02 2014

v1.1.0

1.1.0.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

09/02 2014

v1.0.1

1.0.1.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

09/02 2014

v1.0.0

1.0.0.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

03/02 2014

v0.10.3

0.10.3.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

03/02 2014

v0.10.2

0.10.2.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

30/01 2014

v0.10.1

0.10.1.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

30/01 2014

v0.10.0

0.10.0.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

02/01 2014

v0.9.0

0.9.0.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

22/12 2013

v0.8.0

0.8.0.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

22/12 2013

v0.7.0

0.7.0.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

20/12 2013

v0.6.1

0.6.1.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

19/12 2013

v0.6.0

0.6.0.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

10/12 2013

v0.5.3

0.5.3.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

10/12 2013

v0.5.2

0.5.2.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

09/12 2013

v0.5.1

0.5.1.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

08/12 2013

v0.5.0

0.5.0.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

03/12 2013

v0.4.0

0.4.0.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

12/11 2013

v0.3.0

0.3.0.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

27/10 2013

v0.2.5

0.2.5.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework

26/10 2013

v0.2.4

0.2.4.0 https://github.com/oscarotero/fol-core

The core of FOL framework

  Sources   Download

AGPL-3.0

The Requires

  • php >=5.4.0

 

framework