/plugin/strata/types/ |
H A D | wiki.php | 50 function _normalize_internallink($instruction) { argument 54 $parts = explode('?', $instruction[0] ,2); 70 return $this->_linkSyntax($instruction, $id.'#'.$hash); 76 function _normalize_locallink($instruction) { argument 80 return $this->_linkSyntax($instruction, $ID.'#'.$instruction[0]); 86 function _normalize_media($instruction) { argument 90 if(isset($instruction['type'])) { 91 $media = $instruction; 93 list($src, $title, $align, $width, $height, $cache, $linking) = $instruction; 154 _linkSyntax($instruction, $newLink) global() argument [all...] |
/plugin/ajaxedit/ |
H A D | action.php | 60 foreach($instructions as $key => $instruction) { 62 …if($new_section_open && $instruction[0] === 'section_close') { //moved section found, now find clo… 63 $new_section_close = $instruction[2]; 69 if($instruction[0] === 'section_open') { 70 if($r_start == $instruction[2]) { 71 $new_section_open = $instruction[2]; 73 } else if( abs($r_start-$instruction[2]) < $this->getConf('section_edit_range') ) { 74 $new_section_open = $instruction[2];
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudTalentSolution/ |
H A D | ApplicationInfo.php | 30 public $instruction; variable in Google\\Service\\CloudTalentSolution\\ApplicationInfo 53 public function setInstruction($instruction) argument 55 $this->instruction = $instruction; 62 return $this->instruction;
|
/plugin/authgooglesheets/vendor/google/apiclient-services/src/DataLabeling/ |
H A D | GoogleCloudDatalabelingV1p1alpha1CreateInstructionMetadata.php | 30 public $instruction; variable in Google\\Service\\DataLabeling\\GoogleCloudDatalabelingV1p1alpha1CreateInstructionMetadata 51 public function setInstruction($instruction) argument 53 $this->instruction = $instruction; 60 return $this->instruction;
|
H A D | GoogleCloudDatalabelingV1alpha1CreateInstructionMetadata.php | 30 public $instruction; variable in Google\\Service\\DataLabeling\\GoogleCloudDatalabelingV1alpha1CreateInstructionMetadata 51 public function setInstruction($instruction) argument 53 $this->instruction = $instruction; 60 return $this->instruction;
|
H A D | GoogleCloudDatalabelingV1beta1CreateInstructionMetadata.php | 30 public $instruction; variable in Google\\Service\\DataLabeling\\GoogleCloudDatalabelingV1beta1CreateInstructionMetadata 51 public function setInstruction($instruction) argument 53 $this->instruction = $instruction; 60 return $this->instruction;
|
H A D | GoogleCloudDatalabelingV1p2alpha1CreateInstructionMetadata.php | 30 public $instruction; variable in Google\\Service\\DataLabeling\\GoogleCloudDatalabelingV1p2alpha1CreateInstructionMetadata 51 public function setInstruction($instruction) argument 53 $this->instruction = $instruction; 60 return $this->instruction;
|
H A D | GoogleCloudDatalabelingV1beta1CreateInstructionRequest.php | 28 public function setInstruction(GoogleCloudDatalabelingV1beta1Instruction $instruction) argument 30 $this->instruction = $instruction; 37 return $this->instruction;
|
H A D | GoogleCloudDatalabelingV1p2alpha1HumanAnnotationConfig.php | 38 public $instruction; variable in Google\\Service\\DataLabeling\\GoogleCloudDatalabelingV1p2alpha1HumanAnnotationConfig 105 public function setInstruction($instruction) argument 107 $this->instruction = $instruction; 114 return $this->instruction;
|
H A D | GoogleCloudDatalabelingV1beta1HumanAnnotationConfig.php | 38 public $instruction; variable in Google\\Service\\DataLabeling\\GoogleCloudDatalabelingV1beta1HumanAnnotationConfig 105 public function setInstruction($instruction) argument 107 $this->instruction = $instruction; 114 return $this->instruction;
|
H A D | GoogleCloudDatalabelingV1alpha1HumanAnnotationConfig.php | 38 public $instruction; variable in Google\\Service\\DataLabeling\\GoogleCloudDatalabelingV1alpha1HumanAnnotationConfig 105 public function setInstruction($instruction) argument 107 $this->instruction = $instruction; 114 return $this->instruction;
|
H A D | GoogleCloudDatalabelingV1p1alpha1HumanAnnotationConfig.php | 38 public $instruction; variable in Google\\Service\\DataLabeling\\GoogleCloudDatalabelingV1p1alpha1HumanAnnotationConfig 105 public function setInstruction($instruction) argument 107 $this->instruction = $instruction; 114 return $this->instruction;
|
/plugin/columns/ |
H A D | rewriter.php | 35 public function process(&$instruction) { argument 39 $instructions = count($instruction); 44 $output[] = $instruction[$i]; 49 … $preventDefault = ($preventDefault || $correction->apply($instruction, $output)); 52 $output[] = $instruction[$i]; 57 $output[] = $instruction[$i]; 61 $this->correction[-1]->apply($instruction, $output); 63 $instruction = $output;
|
/plugin/qna/ |
H A D | action.php | 71 $instruction = $event->data->calls[$i]; 73 switch ($instruction[0]) { 76 $this->headerTitle = $instruction[1][0]; 77 $this->headerLevel = $instruction[1][1]; 91 switch ($instruction[1][0]) { 283 public function apply(&$instruction) { argument 287 $instructions = count($instruction); 293 $output[] = $instruction[$i]; 296 $this->applyCorrections($i, $instruction, $output); 301 $output[] = $instruction[$i]; [all …]
|
/plugin/sortablejs/ |
H A D | syntax.php | 70 foreach( $instructions as $instruction ) { 71 call_user_func_array( array( &$renderer, $instruction[0] ), $instruction[1] ); 89 foreach( $instructions as $instruction ) { 90 call_user_func_array( array( &$renderer, $instruction[0] ), $instruction[1] );
|
/plugin/flowcharts/ |
H A D | syntax.php | 143 foreach ($instructions as $instruction) { 145 if(method_exists($Renderer, $instruction[0])){ 146 …call_user_func_array(array(&$Renderer, $instruction[0]), $instruction[1] ? $instruction[1] : array…
|
/plugin/mermaid/ |
H A D | syntax.php | 245 foreach ($instructions as $instruction) { 246 if(method_exists($Renderer, $instruction[0])){ 247 call_user_func_array(array(&$Renderer, $instruction[0]), $instruction[1] ? $instruction[1] : array());
|
/plugin/templater/ |
H A D | syntax.php | 220 foreach ($instructions as $instruction) { 221 if ($instruction[0] == 'header') { 224 if (cleanID($instruction[1][0]) == $title) { 225 $level = $instruction[1][1]; 226 $i[] = $instruction; 229 if ($instruction[1][1] > $level) { 230 $i[] = $instruction; 239 $i[] = $instruction;
|
/plugin/combo/ComboStrap/ |
H A D | MarkupDynamicRender.php | 99 foreach ($callStackHeaderInstructions as $instruction) { 101 if (method_exists($this->renderer, $instruction[0])) { 102 call_user_func_array(array(&$this->renderer, $instruction[0]), $instruction[1] ?: array());
|
/plugin/linkfix/ |
H A D | admin.php | 152 foreach($instructions as $instruction) { 154 ($this->type == 'links' && $this->isextern && ($instruction[0] == 'externallink' || $instruction[0] == 'windowssharelink')) || 155 ($this->type == 'links' && !$this->isextern && $instruction[0] == 'internallink') || 156 ($this->type == 'media' && $this->isextern && $instruction[0] == 'externalmedia') || 157 ($this->type == 'media' && !$this->isextern && $instruction[0] == 'internalmedia') 159 $link = $instruction[1][0]; 160 $pos = $instruction[2] - 1;
|
/plugin/stylingpages/ |
H A D | action.php | 91 foreach ($instructions as $instruction) { 93 if ($instruction[0] === 'code' && count($instruction[1]) > 2) { 94 $content = $instruction[1][0]; 95 $file = $instruction[1][2];
|
/plugin/eventline/ |
H A D | getXmlData.php | 37 foreach ( $instructions as $instruction ) { 38 call_user_func_array(array(&$renderer, $instruction[0]),$instruction[1]);
|
/plugin/yuriigantt/_test/Drivers/ |
H A D | embedded.test.php | 63 foreach ($instructions as $instruction) { 64 …call_user_func_array(array(&$renderer, $instruction[0]), $instruction[1] ? $instruction[1] : array…
|
/plugin/condition/ |
H A D | syntax.php | 221 foreach($instr as $instruction) { 222 if ( in_array($instruction[0], array('document_start', 'document_end') ) ) continue; 223 call_user_func_array(array(&$renderer, $instruction[0]), $instruction[1]); 254 foreach($instr as $instruction) { 255 if ( in_array($instruction[0], array('document_start', 'document_end') ) ) continue; 256 call_user_func_array(array(&$renderer, $instruction[0]), $instruction[1]);
|
/plugin/tablefilterjs/ |
H A D | syntax.php | 125 foreach ($instructions as $instruction) { 126 call_user_func_array(array(&$renderer, $instruction[0]),$instruction[1]);
|