Download the PHP package maniaplanet/manialib-manialink without Composer
On this page you can find all versions of the php package maniaplanet/manialib-manialink. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download maniaplanet/manialib-manialink
More information about maniaplanet/manialib-manialink
Files in maniaplanet/manialib-manialink
Package manialib-manialink
Short Description Object-oriented PHP library for writing Manialink interfaces.
License MIT
Homepage https://github.com/maniaplanet/manialib-manialink
Informations about the package manialib-manialink
ManiaLib\Manialink
ManiaLib\Manialink is an object-oriented PHP library for writing Manialink interfaces based on ManiaLib\XML.
We discuss about it at http://forum.maniaplanet.com/viewtopic.php?f=40&t=25999
Installation
Features
- Features of ManiaLib\XML
- Frame logical size and alignment
- Relative Alignment of child inside sized parent
- Cards for composing complex reusable sets of elements
- Helper classes for all styles/substyles
Architecture
- See ManiaLib\XML
- Most element should implement setter for usual attributes (eg.
ManiaLib\Manialink\Elements\Quad::setImage($image)
), but if the setter doesnt exists you can usesetAttribute($name, $value)
instead. - For style and substyle, the setStyle($style) method handles both at once when used with abstract classes
in
ManiaLib\Manialink\Styles\
eg.Quad::create()->setStyle(Bgs1::BgWindow1);
Examples
See /examples directory
Alignment and Relative Alignment
- Frame Size and Alignment emulates the behaviour of standard elements alignment in frames. With this you can create logical containers with a size, and position them using aligns and relative aligns (see below).
- Relative Alignment helps position an element relative to its parent container. For this, you need a frame with a size and a child with a size ; for instance you can put a quad in the "bottom right corner of a frame with a size".
To help understand these concepts visually:
- Cheat sheet manialink: http://maniapla.net/#url=manialib-manialink:align
- Source: see in /example/alignments-cheat-sheet.php
Has it anything to do with ManiaLib Framework?
Compared to former version of ManiaLib, this is just meant to be a standalone package to build Manialink pages. It can be used in any sort of projects, from Web frameworks (eg. ManiaLib) to server controllers (eg. ManiaLive). It shares some common code with ManiaLib\Gui, but a lot was changed in naming and overall architecture.
Todo
- Bug layouts dans Frame3d?
- Implement all Element classes
- Implement all layouts
- PhpDoc