Download the PHP package jjpmann/ee-dt without Composer

On this page you can find all versions of the php package jjpmann/ee-dt. 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 ee-dt

DT Plugin

Date/Time plugin for ExpressionEngine

The DT Plugin displays dates with formatting and allows you to add days, months, years to the current date or a static date you set.

Installation

New: composer installer

composer require jjpmann/ee-dt

Read more about this here

Old: manual

move files into 'dt' folder inside of system/user/addons

Usage

{exp:dt}

Will return the date formatted this way: MM/DD/YYYY

{exp:dt:wrap}

Tag pair used to wrap around entries loop to adding custom dates in to parameters

Parameters

All of these are optional

set

Sets the static date that the other parameters will reference. If not set will default to the current date.

{exp:dt set="01/01/2010"}
format

Sets the format of the returned date using the following parameters: http://expressionengine.com/user_guide/templates/date_variable_formatting.html

{exp:dt set="11/03/90" ee_format="true" format="%l %M %j, %Y"}

Outputs: Saturday Nov 3, 1990

ee_format

if set to 'false'dt will parse the date using php formating: http://php.net/manual/en/function.strftime.php

{exp:dt set="11/03/90" format="%A %B %e, %Y"}

Outputs: Saturday November 3, 1990

language

Translates based on system languages

Outputs: sábado noviembre 3, 1990

day

Adds or subtracts a value in days to current/set date.

month

Adds or subtracts a value in months to current/set date.

year

Adds or subtracts a value in years to current/set date.

{exp:dt day="3" month="1" year="-1" set="1/1/2010"}

Outputs: 02/04/09

hour

Adds or subtracts a value in hours to current/set date.

minute

Adds or subtracts a value in minutes to current/set date.

second

Adds or subtracts a value in seconds to current/set date.

Examples

Third Saturday of each month

Now: {current_time format="%m/%d/%y"} <br>

{exp:dt set='third saturday of this month'} == {current_time format="%m/%d/%y"}<br>

{if '{exp:dt set="first monday of this month"}' == '{current_time format="%m/%d/%y"}'}

YAY

{/if}

All versions of ee-dt with dependencies

PHP Build Version
Package Version
Requires php Version >=5.3.10
composer/installers Version >=1.1.0
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 jjpmann/ee-dt contains the following files

Loading the files please wait ....