Home
last modified time | relevance | path

Searched refs:secs (Results 1 – 14 of 14) sorted by relevance

/plugin/editsections/
H A Dscript.js52 var secs = getElementsByClass('section_highlight');
53 for(var j=0; j<secs.length; j++){
54 secs[j].className = secs[j].className.replace(/ ?section_highlight/,'');
56 var secs = getElementsByClass('section_highlight');
/plugin/xcom/scripts/
H A Dxml.php20 $secs = 15; variable
64 if((time() - $time_start ) > $secs ) {
128 global $secs;
141 if((time() - $time_start ) > $secs ) {
H A Dxcom_save.php30 $secs = 25;
32 if((time() - $time_start ) > $secs ) {
42 if((time() - $time_start ) > $secs ) {
170 $secs = 5;
174 if((time() - $time_start ) > $secs ) {
/plugin/dlcount/
H A Dadmin.php181 foreach ($array as $name=>$secs) {
182 if ($seconds < $secs && $secs != end($array)) continue;
183 $resv = floor($seconds / $secs);
185 $seconds -= $resv*$secs;
H A Daction.php214 foreach ($array as $name=>$secs) {
215 if ($seconds < $secs && $secs != end($array)) continue;
216 $resv = floor($seconds / $secs);
218 $seconds -= $resv*$secs;
/plugin/epub/
H A Dscript.js72 var secs = 0;
79 secs++;
80 dom.innerHTML = data + '[seconds: ' + secs*15 + ']';
/plugin/swiftmail/Swift/Plugin/
H A DThrottler.php86 public function wait($secs) argument
88 sleep($secs);
/plugin/geotag/syntax/
H A Dgeotag.php244 $secs = ($decimaldegrees - $dms) * 3600;
245 $min = floor($secs / 60);
246 $sec = round($secs - ($min * 60), 3);
/plugin/combo/ComboStrap/
H A DDataType.php212 $secs = $dateTime->getTimestamp(); // Gets the seconds
213 $millisecs = $secs * 1000; // Converted to milliseconds
/plugin/calendoku/
H A Dhelper.php414 $secs = '0';
419 $secs = '0';
424 $secs = $match[3];
429 $secs = $match[3];
434 $date->setTime(intval($hour), intval($mins), intval($secs));
/plugin/icalevents/vendor/squizlabs/php_codesniffer/CodeSniffer/
H A DReporting.php408 $secs = round((($time % 60000) / 1000), 2);
410 if ($secs !== 0) {
411 $time .= ", $secs secs";
/plugin/swiftmail/Swift/
H A DBatchMailer.php89 public function setSleepTime($secs) argument
91 $this->sleepTime = abs($secs);
/plugin/swiftmail/Swift/Connection/
H A DSendmail.php76 public function setTimeout($secs) argument
78 $this->timeout = (int)$secs;
/plugin/openlayersmap/syntax/
H A Dolmap.php693 $secs = ($decimaldegrees - $dms) * 3600;
694 $min = floor($secs / 60);
695 $sec = round($secs - ($min * 60), 3);