Download the PHP package nojimage/cakephp-taltal without Composer

On this page you can find all versions of the php package nojimage/cakephp-taltal. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package cakephp-taltal

h1. CakePHP TALTAL - PHPTAL View plugin

PHP 5.3+, CakePHP 2.1+

This plugin provides PHPTAL View Class

Copyright 2013, php-tips.com (http://php-tips.com)

!https://travis-ci.org/nojimage/CakePHP-TALTAL.png?branch=master!:https://travis-ci.org/nojimage/CakePHP-TALTAL

h2. Plugin Installation

git submodule add -f https://github.com/nojimage/CakePHP-TALTAL.git plugins/Taltal

and get PHPTAL library.

cd plugins/Taltal
git submodule update --init

h2. Usage

in app/Config/bootstrap.php


CakePlugin::load('Taltal');

or


CakePlugin::loadAll();

in AppController


class AppController extends Controller {
    // ...(snip)
    public $viewClass = 'Taltal.Phptal';
    // ...(snip)
}

set vars in controller action.


class PostsController extends AppController {
    function index() {
        $people = array(
            array('name' => 'foo', 'phone' => '01-344-121-021'),
            array('name' => 'bar', 'phone' => '05-999-165-541'),
            array('name' => 'baz', 'phone' => '01-389-321-024'),
            array('name' => 'quz', 'phone' => '05-321-378-654'),
        );
        $this->set(compact('people'));
    }
}

and create view file, extension is .html or .xhtml or .zpt

eg. app/View/Posts/index.html


Name Phone
person's name person's phone
sample name sample phone
sample name sample phone

h2. LICENSE

http://www.gnu.org/licenses/lgpl.html GNU Lesser General Public License

h2. Thanks

Support for CakePHP2.0. Thanks!: Juracy Filho https://github.com/juracy PHPTAL :: Template Attribute Language for PHP 5 Using PHPTAL for templates: PhptalView class | The Bakery, Everything CakePHP


All versions of cakephp-taltal with dependencies

PHP Build Version
Package Version
Requires php Version >=5.3.0
composer/installers Version *
phptal/phptal Version dev-master
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package nojimage/cakephp-taltal contains the following files

Loading the files please wait ....