Home
last modified time | relevance | path

Searched refs:method (Results 826 – 850 of 972) sorted by last modified time

1...<<313233343536373839

/plugin/odt2dw/
H A DREADME18 * Adjust method signatures to match parent
/plugin/sfauth/
H A Dhelper.php137 public function apicall($method, $endpoint, $data = array(), $usejson = true) { argument
158 $http->sendRequest($url, $data, $method);
168 return $this->apicall($method, $endpoint, $data);
/plugin/header3/
H A Dsyntax.php90 $method = '_' . $format . '_header';
91 if (method_exists($this,$method)) {
93 $this->$method($title, $level, $pos, $renderer);
/plugin/botbouncer/lib/
H A Dmollom.php313 * @param string $method
316 private static function doCall($method, $parameters = array(), $server = null, $counter = 0) argument
324 $method = (string) $method;
331 …if(!in_array($method, $aPossibleMethods)) throw new Exception('Invalid method. Only '. implode(', …
367 $requestBody .= ' <methodName>mollom.'. $method .'</methodName>' ."\n";
416 …elseif($errorNumber == 28 && isset(self::$serverList[$counter])) return self::doCall($method, $par…
464 return self::doCall($method, $parameters, self::$serverList[$counter], $counter++);
/plugin/tuxquote/
H A Dquotes.txt411 To count is a modern practice, the ancient method was to guess. <BR> -- Dr. Johnson
1566 … we tend to meet any new situation by reorganizing, and what a wonderful method it can be for crea…
2733 Education is a method whereby one acquires a higher grade of prejudices. <BR> -- Laurence J. Peter …
/plugin/oiddelegate/
H A Dadmin.php116 echo '<form action="" method="post">';
/plugin/pagestat/
H A Dscript.js367 … request_arr.push({jsonrpc:"2.0",method:"ps.get_wordlist",params:[sel_arr.global],id: "global"});
372 request_arr.push({jsonrpc:"2.0",method:"ps.get_wordlist",params:[sel_arr.user],id: "user"});
/plugin/youtrack/
H A Dhelper.php87 * @param string $method HTTP methods: POST, PUT, GET etc
92 function request($method, $endpoint, $params = false) { argument
105 switch ($method) {
/plugin/youtracklinks/
H A Dhelper.php17 function CallAPI($method, $url, $data = false, $cookiejar = false) argument
29 switch ($method)
/plugin/eventum/
H A Dclass.Eventum_RPC.php104 public function __call($method, $args) argument
121 $msg = new XML_RPC_Message($method, $params);
/plugin/html2pdf/html2pdf/
H A Daction.php83 ….DOKU_URL.'lib/plugins/html2pdf/tmp/export_pdf.html&pixels=1024&media=A4&method=fpdf&output=0&pdfv…
/plugin/html2pdf/html2pdf/html2ps/classes/org/active-link/doc/
H A DDocHTML.php143 foreach($objClass->methods as $methodName => $method) {
152 foreach($objClass->methods as $methodName => $method) {
163 if(is_array($method->params) && count($method->params) > 0) {
165 foreach($method->params as $key => $value) {
178 unset($method->info["name"]);
179 foreach($method->info as $infoKey => $infoValue) {
201 if(is_array($method->params) && count($method->params) > 0) {
208 foreach($method->params as $key => $value) {
H A DPHPClass.php185 function setMethod($method) { argument
187 if(is_object($method) && get_class($method) == "method") {
188 $this->methods[$method->getInfo("name")] = $method;
/plugin/html2pdf/html2pdf/html2ps/
H A Derror.php4 function error_no_method($method, $class) { argument
5 die(sprintf("Error: unoverridden '%s' method called in '%s'", $method, $class));
H A DChangeLog12 output method
245 * Fixed: PDFLIB-related errors (output method seems broken in
347 * Fixed: 'configure' method always overwrote configuration
626 * Fixed: Call to undefined method FlowContext::postpone() error
898 (getting rid of AFM files in FPDF output method)
1238 * Fixed: rectangles drawn using "rect" FPDF output driver method
H A DLICENSE48 We protect your rights with a two-step method: (1) we copyright the
/plugin/html2pdf/snorriheim/
H A Dstyle.ini22 ; the stylesheets. Changing this file is the simplest method to
H A Dstyle.ini.dist22 ; the stylesheets. Changing this file is the simplest method to
/plugin/html2pdf/html2pdf/html2ps/templates/
H A Derror._missing_afm.tpl4 in order to use the <b>PS</b> output method. Metric files <i>may</i> be taken from Ghostscript dist…
/plugin/html2pdf/html2pdf/html2ps/classes/org/active-link/net/
H A DHTTPClient.php122 function setRequestMethod($method) { argument
123 $this->requestMethod = strtoupper($method);
/plugin/html2pdf/html2pdf/html2ps/demo/
H A Dhtml2ps.php48 'method' => get_var('method', $_REQUEST, 255, "fpdf"),
123 if ($GLOBALS['g_config']['method'] === 'ps') {
138 switch ($GLOBALS['g_config']['method']) {
180 if ($GLOBALS['g_config']['compress'] && $GLOBALS['g_config']['method'] == 'fastps') {
/plugin/mantis/lib/
H A Dclass.soap_server.php496 $method = $this->methodname; //TODO FIXME HELP this is absolutely hardcoded!!!
512 $method = substr($this->methodname, strpos($this->methodname, $delim) + strlen($delim));
513 $this->debug("in invoke_method, class=$class method=$method delim=$delim");
525 $method_to_compare = (substr(phpversion(), 0, 2) == '4.') ? strtolower($method) : $method;
556 $funcCall = "\$this->methodreturn = ".$class."::".$method."(";
562 $funcCall .= "\$this->methodreturn = ".$instname."->".$method."(";
584 $call_arg = array ($class, $method);
588 $call_arg = array(&$instance, $method);
H A Dchangelog128 - nusoap_base: add expandEntities method
134 - soapclient: Pass headers to parseResponse and parse them in that method
179 - soap_server: fix default SOAPAction created in register method
196 - nusoap_base: add isArraySimpleOrStruct method
294 - wsdl: add addElement method
295 - wsdl: support the document style in the register method
298 - xmlschema: add addElement method
344 - soapclient: add setEndpoint method
360 - wsdl: fix documentation page popup of one method after another (thanks Owen)
373 - soapclient: factor out new getProxyClassCode method
[all …]
H A Dnusoap.php3889 $method = $data[1];
3894 $method = '';
3950 $method_to_compare = (substr(phpversion(), 0, 2) == '4.') ? strtolower($method) : $method;
3981 $funcCall = "\$this->methodreturn = ".$class."::".$method."(";
3987 $funcCall .= "\$this->methodreturn = ".$instname."->".$method."(";
4009 $call_arg = array ($class, $method);
4013 $call_arg = array(&$instance, $method);
6451 var $method = ''; variable in nusoap_parser
6488 * @param string $method method for which XML is parsed (unused?)
6492 function nusoap_parser($xml,$encoding='UTF-8',$method='',$decode_utf8=true){ argument
[all …]
H A Dclass.soap_parser.php19 var $method = ''; variable in nusoap_parser
56 * @param string $method method for which XML is parsed (unused?)
60 function nusoap_parser($xml,$encoding='UTF-8',$method='',$decode_utf8=true){ argument
64 $this->method = $method;

1...<<313233343536373839