Hi again and thanks for your caring
Actually I can't give you all attempts that I made because they are a lot (I was trying for 3 days without any luck).
But here is the main things that I did
1- I duplicated the template that used by php eval widgets and name it the same name with "test" at the end.
2- I checked the cms_node table and find that the main fields that I must concentrate on are nodeid and issection.
3- I tried to add set of conditions to the template that I made without any luck.
4- I find the way to get the nodeid in the widget and print it in the widget it self and this is very big step but the problem that I faced here is the cache problem, the same nodeid printed in the widget in any section or article, so this make me crazy and if I make the full code to show what I want it will not updated in time !!
here is the code of the widget
PHP Code:
$mycontentid = $this->content->getNodeId();
$issecion_get = vB::$db->query_first("SELECT nodeid, issection FROM ".TABLE_PREFIX."cms_node WHERE nodeid = '$mycontentid'");
$output = '';
$output .='<div class = "cms_widget_post_bit"><h4 class="cms_widget_post_header">'.$issecion_get[nodeid].$issecion_get[issection].' </h4></div>';
This widget shows the right nodeid and issecion values but need to remove the cache !!
Then for the template it self to display the widget or hide it I tried to make a plugin using this code
PHP Code:
$mycontentid = $this->content->getNodeId();
$issecion_get = vB::$db->query_first("SELECT nodeid, issection FROM ".TABLE_PREFIX."cms_node WHERE nodeid = '$mycontentid'");
$issecion = $issecion_get[issection];
$mynodeid = $issecion_get[nodeid];
but I don't know what is the propriate hook must I use, I tried too many hooks without results !!
and in the widget template I add a condition regarding the valuse of this code
HTML Code:
{vb:raw issection}<br>{vb:raw mynodeid}
<vb:if condition="!$issection">
<div class="cms_widget">
<div class="block">
<div class="cms_widget_header widget_header">
<h3><img src="{vb:stylevar imgdir_siteicons}/php.png" alt="" /> {vb:raw title}</h3>
</div>
<div class="cms_widget_content widget_content">
{vb:raw output}
</div>
</div>
</div>
</vb:if>
You note that I even tried to print the values before rendering the widget but without luck too.
So please help me in this tow things:
1- disable the cache for this widget.
2- make the right condition using the plugin or any better way to can control when I want to show the widget and when I want to hide it.
At the end, this is something like case study and I think many users will get benefit of this if we can implement it, and you can imagine how many things you can do with php widgets if you get the power points of them.
Thanks in advance.
--------------- Added [DATE]1391049060[/DATE] at [TIME]1391049060[/TIME] ---------------
Another point, I want a way to control the cache time for php evaluation widgets, because I think in some widgets that are fixed in their section and don't need to refresh with every page load.