27 lines
484 B
Smarty
Executable File
27 lines
484 B
Smarty
Executable File
<?php
|
|
/**
|
|
* class.{className}.pmFunctions.php
|
|
*
|
|
* ProcessMaker Open Source Edition
|
|
* Copyright (C) 2004 - 2008 Colosa Inc.
|
|
* *
|
|
*/
|
|
|
|
////////////////////////////////////////////////////
|
|
// {className} PM Functions
|
|
//
|
|
// Copyright (C) 2007 COLOSA
|
|
//
|
|
// License: LGPL, see LICENSE
|
|
////////////////////////////////////////////////////
|
|
|
|
function {className}_getMyCurrentDate()
|
|
{
|
|
return G::CurDate('Y-m-d');
|
|
}
|
|
|
|
function {className}_getMyCurrentTime()
|
|
{
|
|
return G::CurDate('H:i:s');
|
|
}
|