2017 © Pedro Peláez
 

symfony-bundle timestamptype-bundle

A simple Symfony bundle that adds timestamp form field type.

image

bukashk0zzz/timestamptype-bundle

A simple Symfony bundle that adds timestamp form field type.

  • Saturday, April 21, 2018
  • by Bukashk0zzz
  • Repository
  • 1 Watchers
  • 1 Stars
  • 9,632 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 9 Versions
  • 15 % Grown

The README.md

Symfony TimestampType Bundle

Build Status Code Coverage Scrutinizer Code Quality License Latest Stable Version Total Downloads, (*1)

About

A simple Symfony bundle that adds timestamp form field type., (*2)

Installation

Add this to your composer.json file:, (*3)

"require": {
    "bukashk0zzz/timestamptype-bundle": "^2.0",
}

Add the bundle to app/AppKernel.php, (*4)

$bundles = array(
    // ... other bundles
    new Bukashk0zzz\TimestampTypeBundle\Bukashk0zzzTimestampTypeBundle(),
);

Configuration

Not needed., (*5)

Usage

Inside a FormType:, (*6)

class AccountProfileType extends AbstractType
{
    public function buildForm(FormBuilderInterface $builder, array $options)
    {
        $builder
            ->add('nameFirst', TextType::class, ['label' => 'First Name'])
            ->add('nameLast', TextType::class, ['label' => 'Last Name'])
            ->add('startWorking', TimestampType::class, [
                'label' => 'Start working from',
                'required' => false,
            ])
        ;
    }
}

See LICENSE, (*7)

The Versions

30/05 2016

v1.0.4

1.0.4.0 https://github.com/bukashk0zzz/TimestampTypeBundle

A simple Symfony2/Symfony3 bundle that adds timestamp form field type.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Denis Golubovskiy

form bundle symfony type timestamp

28/04 2016

v1.0.3

1.0.3.0 https://github.com/bukashk0zzz/TimestampTypeBundle

A simple Symfony2/Symfony3 bundle that adds timestamp form field type.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Denis Golubovskiy

form bundle symfony type timestamp

15/02 2016

v1.0.2

1.0.2.0 https://github.com/bukashk0zzz/TimestampTypeBundle

A simple Symfony2/Symfony3 bundle that adds timestamp form field type.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Denis Golubovskiy

form bundle symfony type timestamp

15/02 2016

v1.0.1

1.0.1.0 https://github.com/bukashk0zzz/TimestampTypeBundle

A simple Symfony2/Symfony3 bundle that adds timestamp form field type.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Denis Golubovskiy

form bundle symfony type timestamp

12/02 2016

v1.0.0

1.0.0.0 https://github.com/bukashk0zzz/TimestampTypeBundle

A simple Symfony2/Symfony3 bundle that adds timestamp form field type.

  Sources   Download

MIT

The Requires

 

The Development Requires

by Denis Golubovskiy

form bundle symfony type timestamp