2013-03-17 61 views

回答

3

如果你需要得到一個模板變量的值,你可以使用這個

$id = $modx->resource->get('id');//ID of current resource 
$name = $modx->resource->get('pagetitle');//title of current resource 
$val = $modx->resource->getTVValue('name_of_tv');//get tv value of current resource by name 
$val = $modx->resource->getTVValue($tv_id);//get tv value of current resource by ID 

要獲得migx電視的IDX你需要這樣的事 -

<?php 
$docid = $modx->resource->get('id'); // id of curent resource 
$tvname = 'name_of_your_tv'; // change to yours 
$tv = $modx->getObject('modTemplateVar', array('name' => $tvname)); 
$outputvalue = $tv->renderOutput($docid); 
$items = $modx->fromJSON($outputvalue); 
$idx = 0; // initialize idx 
$output = array(); 
foreach ($items as $key => $item) { 
    $idx++; // increase idx 
    $output[] = print_r($item,1); // test output 
} 
$outputSeparator = "\n"; 
$o = implode($outputSeparator, $output); // implode output 
return $o; 

從migx採取片斷https://github.com/Bruno17/MIGX/blob/master/core/components/migx/elements/snippets/snippet.getImagelist.php

+0

謝謝[[+ IDX]是migx項目的ID,我怎麼能得到這個值? – user1758935 2013-03-17 12:29:45

+0

檢查我的更新答案。 – Vasis 2013-03-17 13:01:49

0

因爲您可能正在調用您的資源問題的代碼段[你是嗎?]你可以通過idx的片段....

[[!callMySnippet? &idx=[[+idx]] ]] 

然後在你的代碼片段:

$output = ''; 
$idx = $scriptProperties['idx']; 

if ($idx==1) { 
$output = "0"; 
} 

return $output; 
+1

'([[+ idx]] == 1)'在snippets modx中使用純php,這是一個錯誤。也許你想寫'($ idx == 1)'? – Vasis 2013-03-17 16:50:49

+0

@vasis - 對 - 我只是從OP中複製出來,沒有想到。編輯和修復。 – 2013-03-17 22:07:27