Home
last modified time | relevance | path

Searched refs:item (Results 201 – 225 of 1094) sorted by relevance

12345678910>>...44

/plugin/twistienav/
H A Daction.php73 foreach ($data as $item) {
74 if (!in_array(noNS($item['id']), $this->exclusions)) {
104 foreach ($data as $item) {
105 if (!in_array(noNS($item['id']), $this->exclusions)) {
179 foreach ($this->data as $item) {
180 echo '<li>'.$item['link'].'</li>';
/plugin/twistienav4bootstrap3/
H A Daction.php72 foreach ($data as $item) {
73 if (!in_array(noNS($item['id']), $this->exclusions)) {
103 foreach ($data as $item) {
104 if (!in_array(noNS($item['id']), $this->exclusions)) {
178 foreach ($this->data as $item) {
179 echo '<li>'.$item['link'].'</li>';
/plugin/nspages/printers/
H A DprinterNice.php49 foreach($tab as $item) {
57 $newLetter = $this->_firstChar($item);
67 $newLetter = $this->_firstChar($item);
75 $this->_printElement($item);
82 private function _firstChar($item) {
83 $return_char = PhpString::strtoupper(PhpString::substr($item['sort'], 0, 1));
80 _firstChar($item) global() argument
/plugin/webcomics/
H A Dsyntax.php66 preg_match('/src="(.*?)"/', (string) $xml->channel->item->description, $matches);
67 $url = (string) $xml->channel->item->link;
71 … if (preg_match('/title="(.*?)"/', (string) $xml->channel->item->description, $matches) == 1) {
74 … if (preg_match('/alt="(.*?)"/', (string) $xml->channel->item->description, $matches) == 1) {
/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/Fixtures/
H A DYtsAnchorAlias.yml4 If you need to refer to the same item of data twice,
5 you can give that item an alias. The alias is a plain
6 string, starting with an ampersand. The item may then
22 An alias can be used on any item of data, including
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/
H A DDirectory.php33 foreach ($node->getDirectories() as $item) {
34 $items .= $this->renderItem($item);
37 foreach ($node->getFiles() as $item) {
38 $items .= $this->renderItem($item);
/plugin/davcal/vendor/sabre/dav/bin/
H A Dmigrateto21.php128 $item = $vobj->getBaseComponent(); variable
129 if (!isset($item->UID)) {
130 … echo "Warning! Item with id $item[id] does NOT have a UID property and this is required.\n";
133 $uid = (string)$item->UID;
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
H A DFpdiTrait.php253 foreach ($this->importedPages[$pageId]['externalLinks'] as $item) {
255 $item['x'] *= $widthRatio;
256 $item['width'] *= $widthRatio;
258 $item['y'] *= $heightRatio;
259 $item['height'] *= $heightRatio;
262 $item['x'] + $x,
264 $this->h - $item['y'] - $item['height'] - $pageHeightDifference + $y,
265 $item['width'],
266 $item['heigh
[all...]
/plugin/userannotations/
H A Daction.php72 foreach ( new DirectoryIterator(preg_replace('/\.txt$/', '', wikiFN($privatepath))) as $item )
74 if($item->isDir() && !$item->isDot()) {
75 $user = $item->getBasename();
/plugin/indexmenu2/cms/transitions/
H A Dblend.js12item('alpha').opacity=Math.round(Q*100+I.transitions.blend.maxIeOpac*o);else i.filters.item('alpha…
/plugin/wysiwyg/fckeditor/editor/_source/classes/
H A Dfckspecialcombo.js119 FCKSpecialCombo.prototype.SelectItem = function( item ) argument
121 if ( typeof item == 'string' )
122 item = this.Items[ item.toString().toLowerCase() ] ;
124 if ( item )
126 item.className = item.originalClass = 'SC_ItemSelected' ;
127 item.Selected = true ;
/plugin/layeranimation/
H A Dstyle.less40 div.layer, div.layer div.item {
56 div.item {
83 div.layer, div.layer div.item {
95 div.layer div.item {
104 div.layer div.item.right {
108 div.layer.fixed div.item {
134 div.layer.fixed, &.scripting div.layer, div.item.fixed {
/plugin/groupmatrix/syntax/
H A Dtable.php212 foreach ($row as $item) {
213 if (!is_array($item)) {
214 if ($item === self::MARK) {
219 $html .= hsc($item) . '</td>';
221 return $this->renderTableCells($item, $html);
/plugin/syntaxhighlighter3/sxh3/src/js/
H A DshAutoloader.js46 function getAliases(item) argument
48 return item.pop
49 ? item
50 : item.split(/\s+/)
/plugin/syntaxhighlighter3/sxh3/pkg/scripts/
H A DshAutoloader.js62 function getAliases(item) argument
64 return item.pop
65 ? item
66 : item.split(/\s+/)
/plugin/confmanager/tpl/
H A DshowConfigSingleLine.php60 <?php foreach($default as $item): ?>
61 <?php $isOverridden = in_array('!' . $item, $local) ?>
66 <span class="default_key"><?php echo hsc($item) ?></span>
/plugin/icalevents/vendor/sabre/vobject/lib/
H A DComponent.php148 * @param string|Property|Component $item
151 function remove($item) { argument
153 if (is_string($item)) {
157 if (strpos($item, '.') === false) {
158 unset($this->children[strtoupper($item)]);
163 foreach ($this->select($item) as $child) {
169 foreach ($this->select($item->name) as $k => $child) {
170 if ($child === $item) {
171 unset($this->children[$item->name][$k]);
/plugin/combo/ComboStrap/Xml/
H A DXmlSystems.php157 $leftAtt = $leftNode->attributes->item($i);
163 $rightAtt = $rightNodeAttributes->item($i);
246 $rightAtt = $rightNode->attributes->item($i);
267 $firstNode = $leftNode->childNodes->item(0);
277 $leftChildNode = $leftNode->childNodes->item($leftChildIndex);
282 $leftChildNode = $leftNode->childNodes->item($leftChildIndex);
286 $rightChildNode = $rightChildNodes->item($rightChildIndex);
291 $rightChildNode = $rightChildNodes->item($rightChildIndex);
/plugin/strata/
H A Dscript.js133 var valueMap1 = jQuery(item1).data('strata-item-values');
134 var valueMap2 = jQuery(item2).data('strata-item-values');
234 // Create a filter for every item of the field belonging to the given filterId
236 jQuery('*.strata-item', element).each(function(i, item) { argument
237 var values = getValues(item, fieldSelector);
276 addToItemMap(item, 'strata-item-values', field, values);
277 addToItemMap(item, 'strata-item
282 getValues(item, fieldSelector) global() argument
297 addToItemMap(item, key, id, values) global() argument
496 AnonymousFunctionb1c4c91b1a00(i, item) global() argument
534 AnonymousFunctionb1c4c91b1d00(_, item) global() argument
[all...]
/plugin/docsearchsitemap/
H A Daction.php61 $item = new SitemapItem(ml($id, '', true, '', true), $date, $changefreq, $priority);
63 if ($item !== null) {
64 $event->data['items'][] = $item;
/plugin/authgooglesheets/vendor/phpseclib/phpseclib/phpseclib/Crypt/EC/Formats/Keys/
H A DXML.php138 … return $decode ? self::decodeValue($result->item(0)->textContent) : $result->item(0)->textContent;
158 $node = $nodes->item(0);
187 if (!$x->length || !$x->item(0)->hasAttribute('Value')) {
190 if (!$y->length || !$y->item(0)->hasAttribute('Value')) {
194 $curve->convertInteger(new BigInteger($x->item(0)->getAttribute('Value'))),
195 $curve->convertInteger(new BigInteger($y->item(0)->getAttribute('Value')))
214 $oid = $namedCurve->item(0)->getAttribute('URN');
253 $$param = self::decodeValue($result->item(0)->textContent);
304 $$param = $result->item(0)->textContent;
/plugin/webdav/vendor/sabre/vobject/lib/Property/
H A DFloatValue.php39 foreach ($val as &$item) {
40 $item = (float) $item;
/plugin/farmsync/meta/
H A DUpdateResults.php29 * @param string $item ID of the item that was updated
32 function __construct($item, $animal) { argument
33 $this->_item = $item;
/plugin/icalevents/vendor/sabre/vobject/lib/Property/
H A DFloatValue.php41 foreach ($val as &$item) {
42 $item = (float)$item;
/plugin/dirpictures/
H A Dsyntax.php131 $renderer->doc .= '<a href="'.$item['url'].'" title="'.$item['title'].'">';
132 $renderer->doc .= '<div class="mosaicImg" style="background-image:url('.$item['img'].')">';

12345678910>>...44