2014-07-20 12:26:15 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Helper;
|
|
|
|
|
2014-11-23 20:13:38 +01:00
|
|
|
/**
|
|
|
|
* Template helpers
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
use Core\Security;
|
|
|
|
use Core\Template;
|
2014-12-22 19:15:38 +01:00
|
|
|
use Core\Request;
|
|
|
|
use Parsedown;
|
2014-11-23 20:13:38 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Append a CSRF token to a query string
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
2014-07-20 12:26:15 +02:00
|
|
|
function param_csrf()
|
|
|
|
{
|
|
|
|
return '&csrf_token='.Security::getCSRFToken();
|
|
|
|
}
|
|
|
|
|
2014-11-23 20:13:38 +01:00
|
|
|
/**
|
|
|
|
* Add a Javascript asset
|
|
|
|
*
|
|
|
|
* @param string $filename Filename
|
|
|
|
* @return string
|
|
|
|
*/
|
2014-07-20 12:26:15 +02:00
|
|
|
function js($filename)
|
|
|
|
{
|
|
|
|
return '<script type="text/javascript" src="'.$filename.'?'.filemtime($filename).'"></script>';
|
|
|
|
}
|
|
|
|
|
2014-11-23 20:13:38 +01:00
|
|
|
/**
|
|
|
|
* Add a stylesheet asset
|
|
|
|
*
|
|
|
|
* @param string $filename Filename
|
|
|
|
* @return string
|
|
|
|
*/
|
2014-07-20 12:26:15 +02:00
|
|
|
function css($filename)
|
|
|
|
{
|
|
|
|
return '<link rel="stylesheet" href="'.$filename.'?'.filemtime($filename).'" media="screen">';
|
|
|
|
}
|
|
|
|
|
2014-11-23 20:13:38 +01:00
|
|
|
/**
|
|
|
|
* Load a template
|
|
|
|
*
|
|
|
|
* @param string $name Template name
|
|
|
|
* @param array $args Template parameters
|
|
|
|
* @return string
|
|
|
|
*/
|
2014-07-20 12:26:15 +02:00
|
|
|
function template($name, array $args = array())
|
|
|
|
{
|
2014-11-23 20:13:38 +01:00
|
|
|
$tpl = new Template;
|
2014-07-20 12:26:15 +02:00
|
|
|
return $tpl->load($name, $args);
|
|
|
|
}
|
|
|
|
|
2014-11-23 20:13:38 +01:00
|
|
|
/**
|
|
|
|
* Check if the given user_id is the connected user
|
|
|
|
*
|
|
|
|
* @param integer $user_id User id
|
|
|
|
* @return boolean
|
|
|
|
*/
|
2014-07-20 12:26:15 +02:00
|
|
|
function is_current_user($user_id)
|
|
|
|
{
|
|
|
|
return $_SESSION['user']['id'] == $user_id;
|
|
|
|
}
|
|
|
|
|
2014-11-23 20:13:38 +01:00
|
|
|
/**
|
|
|
|
* Check if the current user is administrator
|
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
*/
|
2014-07-20 12:26:15 +02:00
|
|
|
function is_admin()
|
|
|
|
{
|
|
|
|
return $_SESSION['user']['is_admin'] == 1;
|
|
|
|
}
|
|
|
|
|
2014-12-22 19:15:38 +01:00
|
|
|
/**
|
|
|
|
* Return true if the user can configure the project (project are previously filtered)
|
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
function is_project_admin(array $project)
|
|
|
|
{
|
|
|
|
return is_admin() || $project['is_private'] == 1;
|
|
|
|
}
|
|
|
|
|
2014-11-23 20:13:38 +01:00
|
|
|
/**
|
|
|
|
* Return the username
|
|
|
|
*
|
|
|
|
* @param array $user User properties (optional)
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
function get_username(array $user = array())
|
2014-07-20 12:26:15 +02:00
|
|
|
{
|
2014-11-23 20:13:38 +01:00
|
|
|
return ! empty($user) ? ($user['name'] ?: $user['username'])
|
2014-10-22 19:59:09 +02:00
|
|
|
: ($_SESSION['user']['name'] ?: $_SESSION['user']['username']);
|
|
|
|
}
|
|
|
|
|
2014-11-23 20:13:38 +01:00
|
|
|
/**
|
|
|
|
* Get the current user id
|
|
|
|
*
|
|
|
|
* @return integer
|
|
|
|
*/
|
2014-10-22 19:59:09 +02:00
|
|
|
function get_user_id()
|
|
|
|
{
|
|
|
|
return $_SESSION['user']['id'];
|
2014-07-20 12:26:15 +02:00
|
|
|
}
|
|
|
|
|
2014-11-23 20:13:38 +01:00
|
|
|
/**
|
|
|
|
* Markdown transformation
|
|
|
|
*
|
|
|
|
* @param string $text Markdown content
|
|
|
|
* @param array $link Link parameters for replacement
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
function markdown($text, array $link = array('controller' => 'task', 'action' => 'show', 'params' => array()))
|
|
|
|
{
|
|
|
|
$html = Parsedown::instance()
|
|
|
|
->setMarkupEscaped(true) # escapes markup (HTML)
|
|
|
|
->text($text);
|
|
|
|
|
|
|
|
// Replace task #123 by a link to the task
|
|
|
|
$html = preg_replace_callback('!#(\d+)!i', function($matches) use ($link) {
|
|
|
|
return a(
|
|
|
|
$matches[0],
|
|
|
|
$link['controller'],
|
|
|
|
$link['action'],
|
|
|
|
$link['params'] + array('task_id' => $matches[1])
|
|
|
|
);
|
|
|
|
}, $html);
|
2014-07-20 12:26:15 +02:00
|
|
|
|
2014-11-23 20:13:38 +01:00
|
|
|
return $html;
|
2014-07-20 12:26:15 +02:00
|
|
|
}
|
|
|
|
|
2014-11-23 20:13:38 +01:00
|
|
|
/**
|
|
|
|
* Get the current URL without the querystring
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
2014-07-20 12:26:15 +02:00
|
|
|
function get_current_base_url()
|
|
|
|
{
|
2014-12-22 19:15:38 +01:00
|
|
|
$url = Request::isHTTPS() ? 'https://' : 'http://';
|
2014-07-20 12:26:15 +02:00
|
|
|
$url .= $_SERVER['SERVER_NAME'];
|
|
|
|
$url .= $_SERVER['SERVER_PORT'] == 80 || $_SERVER['SERVER_PORT'] == 443 ? '' : ':'.$_SERVER['SERVER_PORT'];
|
|
|
|
$url .= dirname($_SERVER['PHP_SELF']) !== '/' ? dirname($_SERVER['PHP_SELF']).'/' : '/';
|
|
|
|
|
|
|
|
return $url;
|
|
|
|
}
|
|
|
|
|
2014-11-23 20:13:38 +01:00
|
|
|
/**
|
|
|
|
* HTML escaping
|
|
|
|
*
|
|
|
|
* @param string $value Value to escape
|
|
|
|
* @return string
|
|
|
|
*/
|
2014-07-20 12:26:15 +02:00
|
|
|
function escape($value)
|
|
|
|
{
|
|
|
|
return htmlspecialchars($value, ENT_QUOTES, 'UTF-8', false);
|
|
|
|
}
|
|
|
|
|
2014-11-23 20:13:38 +01:00
|
|
|
/**
|
|
|
|
* Dispplay the flash session message
|
|
|
|
*
|
|
|
|
* @param string $html HTML wrapper
|
|
|
|
* @return string
|
|
|
|
*/
|
2014-07-20 12:26:15 +02:00
|
|
|
function flash($html)
|
|
|
|
{
|
|
|
|
$data = '';
|
|
|
|
|
|
|
|
if (isset($_SESSION['flash_message'])) {
|
|
|
|
$data = sprintf($html, escape($_SESSION['flash_message']));
|
|
|
|
unset($_SESSION['flash_message']);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
|
2014-11-23 20:13:38 +01:00
|
|
|
/**
|
|
|
|
* Display the flash session error message
|
|
|
|
*
|
|
|
|
* @param string $html HTML wrapper
|
|
|
|
* @return string
|
|
|
|
*/
|
2014-07-20 12:26:15 +02:00
|
|
|
function flash_error($html)
|
|
|
|
{
|
|
|
|
$data = '';
|
|
|
|
|
|
|
|
if (isset($_SESSION['flash_error_message'])) {
|
|
|
|
$data = sprintf($html, escape($_SESSION['flash_error_message']));
|
|
|
|
unset($_SESSION['flash_error_message']);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $data;
|
|
|
|
}
|
|
|
|
|
2014-11-23 20:13:38 +01:00
|
|
|
/**
|
|
|
|
* Format a file size
|
|
|
|
*
|
|
|
|
* @param integer $size Size in bytes
|
|
|
|
* @param integer $precision Precision
|
|
|
|
* @return string
|
|
|
|
*/
|
2014-07-20 12:26:15 +02:00
|
|
|
function format_bytes($size, $precision = 2)
|
|
|
|
{
|
|
|
|
$base = log($size) / log(1024);
|
|
|
|
$suffixes = array('', 'k', 'M', 'G', 'T');
|
|
|
|
|
|
|
|
return round(pow(1024, $base - floor($base)), $precision).$suffixes[(int)floor($base)];
|
|
|
|
}
|
|
|
|
|
2014-11-23 20:13:38 +01:00
|
|
|
/**
|
|
|
|
* Truncate a long text
|
|
|
|
*
|
|
|
|
* @param string $value Text
|
|
|
|
* @param integer $max_length Max Length
|
|
|
|
* @param string $end Text end
|
|
|
|
* @return string
|
|
|
|
*/
|
2014-10-22 19:59:09 +02:00
|
|
|
function summary($value, $max_length = 85, $end = '[...]')
|
2014-07-20 12:26:15 +02:00
|
|
|
{
|
|
|
|
$length = strlen($value);
|
|
|
|
|
|
|
|
if ($length > $max_length) {
|
2014-10-22 19:59:09 +02:00
|
|
|
return substr($value, 0, $max_length).' '.$end;
|
2014-07-20 12:26:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return $value;
|
|
|
|
}
|
|
|
|
|
2014-11-23 20:13:38 +01:00
|
|
|
/**
|
|
|
|
* Return true if needle is contained in the haystack
|
|
|
|
*
|
|
|
|
* @param string $haystack Haystack
|
|
|
|
* @param string $needle Needle
|
|
|
|
* @return boolean
|
|
|
|
*/
|
2014-07-20 12:26:15 +02:00
|
|
|
function contains($haystack, $needle)
|
|
|
|
{
|
|
|
|
return strpos($haystack, $needle) !== false;
|
|
|
|
}
|
|
|
|
|
2014-11-23 20:13:38 +01:00
|
|
|
/**
|
|
|
|
* Return a value from a dictionary
|
|
|
|
*
|
|
|
|
* @param mixed $id Key
|
|
|
|
* @param array $listing Dictionary
|
|
|
|
* @param string $default_value Value displayed when the key doesn't exists
|
|
|
|
* @return string
|
|
|
|
*/
|
2014-07-20 12:26:15 +02:00
|
|
|
function in_list($id, array $listing, $default_value = '?')
|
|
|
|
{
|
|
|
|
if (isset($listing[$id])) {
|
|
|
|
return escape($listing[$id]);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $default_value;
|
|
|
|
}
|
|
|
|
|
2014-11-23 20:13:38 +01:00
|
|
|
/**
|
|
|
|
* Display the form error class
|
|
|
|
*
|
|
|
|
* @param array $errors Error list
|
|
|
|
* @param string $name Field name
|
|
|
|
* @return string
|
|
|
|
*/
|
2014-07-20 12:26:15 +02:00
|
|
|
function error_class(array $errors, $name)
|
|
|
|
{
|
|
|
|
return ! isset($errors[$name]) ? '' : ' form-error';
|
|
|
|
}
|
|
|
|
|
2014-11-23 20:13:38 +01:00
|
|
|
/**
|
|
|
|
* Display a list of form errors
|
|
|
|
*
|
|
|
|
* @param array $errors List of errors
|
|
|
|
* @param string $name Field name
|
|
|
|
* @return string
|
|
|
|
*/
|
2014-07-20 12:26:15 +02:00
|
|
|
function error_list(array $errors, $name)
|
|
|
|
{
|
|
|
|
$html = '';
|
|
|
|
|
|
|
|
if (isset($errors[$name])) {
|
|
|
|
|
|
|
|
$html .= '<ul class="form-errors">';
|
|
|
|
|
|
|
|
foreach ($errors[$name] as $error) {
|
|
|
|
$html .= '<li>'.escape($error).'</li>';
|
|
|
|
}
|
|
|
|
|
|
|
|
$html .= '</ul>';
|
|
|
|
}
|
|
|
|
|
|
|
|
return $html;
|
|
|
|
}
|
|
|
|
|
2014-11-23 20:13:38 +01:00
|
|
|
/**
|
|
|
|
* Get an escaped form value
|
|
|
|
*
|
|
|
|
* @param mixed $values Values
|
|
|
|
* @param string $name Field name
|
|
|
|
* @return string
|
|
|
|
*/
|
2014-07-20 12:26:15 +02:00
|
|
|
function form_value($values, $name)
|
|
|
|
{
|
|
|
|
if (isset($values->$name)) {
|
|
|
|
return 'value="'.escape($values->$name).'"';
|
|
|
|
}
|
|
|
|
|
|
|
|
return isset($values[$name]) ? 'value="'.escape($values[$name]).'"' : '';
|
|
|
|
}
|
|
|
|
|
2014-11-23 20:13:38 +01:00
|
|
|
/**
|
|
|
|
* Hidden CSRF token field
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
2014-07-20 12:26:15 +02:00
|
|
|
function form_csrf()
|
|
|
|
{
|
|
|
|
return '<input type="hidden" name="csrf_token" value="'.Security::getCSRFToken().'"/>';
|
|
|
|
}
|
|
|
|
|
2014-11-23 20:13:38 +01:00
|
|
|
/**
|
|
|
|
* Display a hidden form field
|
|
|
|
*
|
|
|
|
* @param string $name Field name
|
|
|
|
* @param array $values Form values
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
function form_hidden($name, array $values = array())
|
2014-07-20 12:26:15 +02:00
|
|
|
{
|
|
|
|
return '<input type="hidden" name="'.$name.'" id="form-'.$name.'" '.form_value($values, $name).'/>';
|
|
|
|
}
|
|
|
|
|
2014-11-23 20:13:38 +01:00
|
|
|
/**
|
|
|
|
* Display a select field
|
|
|
|
*
|
|
|
|
* @param string $name Field name
|
|
|
|
* @param array $options Options
|
|
|
|
* @param array $values Form values
|
|
|
|
* @param array $errors Form errors
|
|
|
|
* @param string $class CSS class
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
function form_select($name, array $options, array $values = array(), array $errors = array(), $class = '')
|
2014-07-20 12:26:15 +02:00
|
|
|
{
|
|
|
|
$html = '<select name="'.$name.'" id="form-'.$name.'" class="'.$class.'">';
|
|
|
|
|
|
|
|
foreach ($options as $id => $value) {
|
|
|
|
|
|
|
|
$html .= '<option value="'.escape($id).'"';
|
|
|
|
|
|
|
|
if (isset($values->$name) && $id == $values->$name) $html .= ' selected="selected"';
|
|
|
|
if (isset($values[$name]) && $id == $values[$name]) $html .= ' selected="selected"';
|
|
|
|
|
|
|
|
$html .= '>'.escape($value).'</option>';
|
|
|
|
}
|
|
|
|
|
|
|
|
$html .= '</select>';
|
|
|
|
$html .= error_list($errors, $name);
|
|
|
|
|
|
|
|
return $html;
|
|
|
|
}
|
|
|
|
|
2014-11-23 20:13:38 +01:00
|
|
|
/**
|
|
|
|
* Display a radio field group
|
|
|
|
*
|
|
|
|
* @param string $name Field name
|
|
|
|
* @param array $options Options
|
|
|
|
* @param array $values Form values
|
|
|
|
* @return string
|
|
|
|
*/
|
2014-07-20 12:26:15 +02:00
|
|
|
function form_radios($name, array $options, array $values = array())
|
|
|
|
{
|
|
|
|
$html = '';
|
|
|
|
|
|
|
|
foreach ($options as $value => $label) {
|
|
|
|
$html .= form_radio($name, $label, $value, isset($values[$name]) && $values[$name] == $value);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $html;
|
|
|
|
}
|
|
|
|
|
2014-11-23 20:13:38 +01:00
|
|
|
/**
|
|
|
|
* Display a radio field
|
|
|
|
*
|
|
|
|
* @param string $name Field name
|
|
|
|
* @param string $label Form label
|
|
|
|
* @param string $value Form value
|
|
|
|
* @param boolean $selected Field selected or not
|
|
|
|
* @param string $class CSS class
|
|
|
|
* @return string
|
|
|
|
*/
|
2014-07-20 12:26:15 +02:00
|
|
|
function form_radio($name, $label, $value, $selected = false, $class = '')
|
|
|
|
{
|
|
|
|
return '<label><input type="radio" name="'.$name.'" class="'.$class.'" value="'.escape($value).'" '.($selected ? 'selected="selected"' : '').'>'.escape($label).'</label>';
|
|
|
|
}
|
|
|
|
|
2014-11-23 20:13:38 +01:00
|
|
|
/**
|
|
|
|
* Display a checkbox field
|
|
|
|
*
|
|
|
|
* @param string $name Field name
|
|
|
|
* @param string $label Form label
|
|
|
|
* @param string $value Form value
|
|
|
|
* @param boolean $checked Field selected or not
|
|
|
|
* @param string $class CSS class
|
|
|
|
* @return string
|
|
|
|
*/
|
2014-07-20 12:26:15 +02:00
|
|
|
function form_checkbox($name, $label, $value, $checked = false, $class = '')
|
|
|
|
{
|
|
|
|
return '<label><input type="checkbox" name="'.$name.'" class="'.$class.'" value="'.escape($value).'" '.($checked ? 'checked="checked"' : '').'> '.escape($label).'</label>';
|
|
|
|
}
|
|
|
|
|
2014-11-23 20:13:38 +01:00
|
|
|
/**
|
|
|
|
* Display a form label
|
|
|
|
*
|
|
|
|
* @param string $name Field name
|
|
|
|
* @param string $label Form label
|
|
|
|
* @param array $attributes HTML attributes
|
|
|
|
* @return string
|
|
|
|
*/
|
2014-07-20 12:26:15 +02:00
|
|
|
function form_label($label, $name, array $attributes = array())
|
|
|
|
{
|
|
|
|
return '<label for="form-'.$name.'" '.implode(' ', $attributes).'>'.escape($label).'</label>';
|
|
|
|
}
|
|
|
|
|
2014-11-23 20:13:38 +01:00
|
|
|
/**
|
|
|
|
* Display a textarea
|
|
|
|
*
|
|
|
|
* @param string $name Field name
|
|
|
|
* @param array $values Form values
|
|
|
|
* @param array $errors Form errors
|
|
|
|
* @param array $attributes HTML attributes
|
|
|
|
* @param string $class CSS class
|
|
|
|
* @return string
|
|
|
|
*/
|
2014-07-20 12:26:15 +02:00
|
|
|
function form_textarea($name, $values = array(), array $errors = array(), array $attributes = array(), $class = '')
|
|
|
|
{
|
|
|
|
$class .= error_class($errors, $name);
|
|
|
|
|
|
|
|
$html = '<textarea name="'.$name.'" id="form-'.$name.'" class="'.$class.'" ';
|
|
|
|
$html .= implode(' ', $attributes).'>';
|
|
|
|
$html .= isset($values->$name) ? escape($values->$name) : isset($values[$name]) ? $values[$name] : '';
|
|
|
|
$html .= '</textarea>';
|
|
|
|
$html .= error_list($errors, $name);
|
|
|
|
|
|
|
|
return $html;
|
|
|
|
}
|
|
|
|
|
2014-11-23 20:13:38 +01:00
|
|
|
/**
|
|
|
|
* Display a input field
|
|
|
|
*
|
|
|
|
* @param string $type HMTL input tag type
|
|
|
|
* @param string $name Field name
|
|
|
|
* @param array $values Form values
|
|
|
|
* @param array $errors Form errors
|
|
|
|
* @param array $attributes HTML attributes
|
|
|
|
* @param string $class CSS class
|
|
|
|
* @return string
|
|
|
|
*/
|
2014-07-20 12:26:15 +02:00
|
|
|
function form_input($type, $name, $values = array(), array $errors = array(), array $attributes = array(), $class = '')
|
|
|
|
{
|
|
|
|
$class .= error_class($errors, $name);
|
|
|
|
|
|
|
|
$html = '<input type="'.$type.'" name="'.$name.'" id="form-'.$name.'" '.form_value($values, $name).' class="'.$class.'" ';
|
|
|
|
$html .= implode(' ', $attributes).'/>';
|
|
|
|
if (in_array('required', $attributes)) $html .= '<span class="form-required">*</span>';
|
|
|
|
$html .= error_list($errors, $name);
|
|
|
|
|
|
|
|
return $html;
|
|
|
|
}
|
|
|
|
|
2014-11-23 20:13:38 +01:00
|
|
|
/**
|
|
|
|
* Display a text field
|
|
|
|
*
|
|
|
|
* @param string $name Field name
|
|
|
|
* @param array $values Form values
|
|
|
|
* @param array $errors Form errors
|
|
|
|
* @param array $attributes HTML attributes
|
|
|
|
* @param string $class CSS class
|
|
|
|
* @return string
|
|
|
|
*/
|
2014-07-20 12:26:15 +02:00
|
|
|
function form_text($name, $values = array(), array $errors = array(), array $attributes = array(), $class = '')
|
|
|
|
{
|
|
|
|
return form_input('text', $name, $values, $errors, $attributes, $class);
|
|
|
|
}
|
|
|
|
|
2014-11-23 20:13:38 +01:00
|
|
|
/**
|
|
|
|
* Display a password field
|
|
|
|
*
|
|
|
|
* @param string $name Field name
|
|
|
|
* @param array $values Form values
|
|
|
|
* @param array $errors Form errors
|
|
|
|
* @param array $attributes HTML attributes
|
|
|
|
* @param string $class CSS class
|
|
|
|
* @return string
|
|
|
|
*/
|
2014-07-20 12:26:15 +02:00
|
|
|
function form_password($name, $values = array(), array $errors = array(), array $attributes = array(), $class = '')
|
|
|
|
{
|
|
|
|
return form_input('password', $name, $values, $errors, $attributes, $class);
|
|
|
|
}
|
|
|
|
|
2014-11-23 20:13:38 +01:00
|
|
|
/**
|
|
|
|
* Display an email field
|
|
|
|
*
|
|
|
|
* @param string $name Field name
|
|
|
|
* @param array $values Form values
|
|
|
|
* @param array $errors Form errors
|
|
|
|
* @param array $attributes HTML attributes
|
|
|
|
* @param string $class CSS class
|
|
|
|
* @return string
|
|
|
|
*/
|
2014-07-20 12:26:15 +02:00
|
|
|
function form_email($name, $values = array(), array $errors = array(), array $attributes = array(), $class = '')
|
|
|
|
{
|
|
|
|
return form_input('email', $name, $values, $errors, $attributes, $class);
|
|
|
|
}
|
|
|
|
|
2014-11-23 20:13:38 +01:00
|
|
|
/**
|
|
|
|
* Display a date field
|
|
|
|
*
|
|
|
|
* @param string $name Field name
|
|
|
|
* @param array $values Form values
|
|
|
|
* @param array $errors Form errors
|
|
|
|
* @param array $attributes HTML attributes
|
|
|
|
* @param string $class CSS class
|
|
|
|
* @return string
|
|
|
|
*/
|
2014-07-20 12:26:15 +02:00
|
|
|
function form_date($name, $values = array(), array $errors = array(), array $attributes = array(), $class = '')
|
|
|
|
{
|
|
|
|
return form_input('date', $name, $values, $errors, $attributes, $class);
|
|
|
|
}
|
|
|
|
|
2014-11-23 20:13:38 +01:00
|
|
|
/**
|
|
|
|
* Display a number field
|
|
|
|
*
|
|
|
|
* @param string $name Field name
|
|
|
|
* @param array $values Form values
|
|
|
|
* @param array $errors Form errors
|
|
|
|
* @param array $attributes HTML attributes
|
|
|
|
* @param string $class CSS class
|
|
|
|
* @return string
|
|
|
|
*/
|
2014-07-20 12:26:15 +02:00
|
|
|
function form_number($name, $values = array(), array $errors = array(), array $attributes = array(), $class = '')
|
|
|
|
{
|
|
|
|
return form_input('number', $name, $values, $errors, $attributes, $class);
|
|
|
|
}
|
|
|
|
|
2014-11-23 20:13:38 +01:00
|
|
|
/**
|
|
|
|
* Display a numeric field (allow decimal number)
|
|
|
|
*
|
|
|
|
* @param string $name Field name
|
|
|
|
* @param array $values Form values
|
|
|
|
* @param array $errors Form errors
|
|
|
|
* @param array $attributes HTML attributes
|
|
|
|
* @param string $class CSS class
|
|
|
|
* @return string
|
|
|
|
*/
|
2014-07-20 12:26:15 +02:00
|
|
|
function form_numeric($name, $values = array(), array $errors = array(), array $attributes = array(), $class = '')
|
|
|
|
{
|
|
|
|
return form_input('text', $name, $values, $errors, $attributes, $class.' form-numeric');
|
|
|
|
}
|
2014-11-23 20:13:38 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Link
|
|
|
|
*
|
|
|
|
* a('link', 'task', 'show', array('task_id' => $task_id))
|
|
|
|
*
|
|
|
|
* @param string $label Link label
|
|
|
|
* @param string $controller Controller name
|
|
|
|
* @param string $action Action name
|
|
|
|
* @param array $params Url parameters
|
|
|
|
* @param boolean $csrf Add a CSRF token
|
|
|
|
* @param string $class CSS class attribute
|
2014-12-22 19:15:38 +01:00
|
|
|
* @param boolean $new_tab Open the link in a new tab
|
2014-11-23 20:13:38 +01:00
|
|
|
* @return string
|
|
|
|
*/
|
2014-12-22 19:15:38 +01:00
|
|
|
function a($label, $controller, $action, array $params = array(), $csrf = false, $class = '', $title = '', $new_tab = false)
|
2014-11-23 20:13:38 +01:00
|
|
|
{
|
2014-12-22 19:15:38 +01:00
|
|
|
return '<a href="'.u($controller, $action, $params, $csrf).'" class="'.$class.'" title="'.$title.'" '.($new_tab ? 'target="_blank"' : '').'>'.$label.'</a>';
|
2014-11-23 20:13:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* URL query string
|
|
|
|
*
|
|
|
|
* u('task', 'show', array('task_id' => $task_id))
|
|
|
|
*
|
|
|
|
* @param string $controller Controller name
|
|
|
|
* @param string $action Action name
|
|
|
|
* @param array $params Url parameters
|
|
|
|
* @param boolean $csrf Add a CSRF token
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
function u($controller, $action, array $params = array(), $csrf = false)
|
|
|
|
{
|
|
|
|
$html = '?controller='.$controller.'&action='.$action;
|
|
|
|
|
|
|
|
if ($csrf) {
|
|
|
|
$params['csrf_token'] = Security::getCSRFToken();
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach ($params as $key => $value) {
|
|
|
|
$html .= '&'.$key.'='.$value;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $html;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Pagination links
|
|
|
|
*
|
|
|
|
* @param array $pagination Pagination information
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
function paginate(array $pagination)
|
|
|
|
{
|
|
|
|
extract($pagination);
|
|
|
|
|
2014-12-22 19:15:38 +01:00
|
|
|
if ($pagination['offset'] === 0 && ($total - $pagination['offset']) <= $limit) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
|
|
|
|
$html = '<div class="pagination">';
|
|
|
|
$html .= '<span class="pagination-previous">';
|
2014-11-23 20:13:38 +01:00
|
|
|
|
|
|
|
if ($pagination['offset'] > 0) {
|
|
|
|
$offset = $pagination['offset'] - $limit;
|
|
|
|
$html .= a('← '.t('Previous'), $controller, $action, $params + compact('offset', 'order', 'direction'));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$html .= '← '.t('Previous');
|
|
|
|
}
|
|
|
|
|
|
|
|
$html .= '</span>';
|
2014-12-22 19:15:38 +01:00
|
|
|
$html .= '<span class="pagination-next">';
|
2014-11-23 20:13:38 +01:00
|
|
|
|
|
|
|
if (($total - $pagination['offset']) > $limit) {
|
|
|
|
$offset = $pagination['offset'] + $limit;
|
|
|
|
$html .= a(t('Next').' →', $controller, $action, $params + compact('offset', 'order', 'direction'));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$html .= t('Next').' →';
|
|
|
|
}
|
|
|
|
|
|
|
|
$html .= '</span>';
|
|
|
|
$html .= '</div>';
|
|
|
|
|
|
|
|
return $html;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Column sorting (work with pagination)
|
|
|
|
*
|
|
|
|
* @param string $label Column title
|
|
|
|
* @param string $column SQL column name
|
|
|
|
* @param array $pagination Pagination information
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
function order($label, $column, array $pagination)
|
|
|
|
{
|
|
|
|
extract($pagination);
|
|
|
|
|
|
|
|
$prefix = '';
|
|
|
|
|
|
|
|
if ($order === $column) {
|
|
|
|
$prefix = $direction === 'DESC' ? '▼ ' : '▲ ';
|
|
|
|
$direction = $direction === 'DESC' ? 'ASC' : 'DESC';
|
|
|
|
}
|
|
|
|
|
|
|
|
$order = $column;
|
|
|
|
|
|
|
|
return $prefix.a($label, $controller, $action, $params + compact('offset', 'order', 'direction'));
|
|
|
|
}
|