/**
  * Adds a row action if all its params are defined on the row.
  */
 private static function addRowAction(&$row, $url, $params, $actionNumber)
 {
     $urlParams = array();
     foreach ($params as $param) {
         if (!isset($row[$param])) {
             return;
         }
         $urlParams[$param] = $row[$param];
     }
     $rowurl = UrlUtil::addParams($url, $urlParams);
     $row['action' . $actionNumber] = $rowurl;
 }
Esempio n. 2
0
<?php

include dirname(__FILE__) . '/../bootstrap/dbunit.php';
$t = new lime_test(9, new lime_output_color());
$t->is(UrlUtil::addParam('http://hello', 'token', '1234'), 'http://hello?token=1234');
$t->is(UrlUtil::addParam('http://hello?good=1', 'token', '1234'), 'http://hello?good=1&token=1234');
$t->is(UrlUtil::addParam('http://hello?good=1&time=now', 'token', '1234'), 'http://hello?good=1&time=now&token=1234');
$t->is(UrlUtil::addParam('/', 'values', array(1, 2, 3)), '/?values%5B0%5D=1&values%5B1%5D=2&values%5B2%5D=3');
$t->is(UrlUtil::addParam('/', 'map', array('me' => 1, 'you' => 2)), '/?map%5Bme%5D=1&map%5Byou%5D=2');
$t->is(UrlUtil::addParams('http://hello', array('token' => '1234', 'escape' => 'with&and=value')), 'http://hello?token=1234&escape=with%26and%3Dvalue');
$t->is(UrlUtil::getPathPart('http://example.com/server/listServer?id=1'), '/server/listServer');
$t->is(UrlUtil::getPathPart('http://example.com'), '');
$t->is(UrlUtil::getPathPart('https://example.com/hello#world'), '/hello');