mirror of
https://github.com/sebastian-meyer/eod-search-widget.git
synced 2025-03-09 00:00:34 +01:00
25 lines
424 B
PHP
25 lines
424 B
PHP
<?php
|
|
/**
|
|
* Class jQuery_Action
|
|
*
|
|
* Abstract class for any parameter of any action
|
|
*
|
|
* @author Anton Shevchuk
|
|
* @access public
|
|
* @package jQuery
|
|
*/
|
|
class jQuery_Action
|
|
{
|
|
/**
|
|
* add param to list
|
|
*
|
|
* @param string $param
|
|
* @param string $value
|
|
* @return jQuery_Action
|
|
*/
|
|
public function add($param, $value)
|
|
{
|
|
$this->$param = $value;
|
|
return $this;
|
|
}
|
|
} |