<div dir="ltr"><div style>I know we are going OT, but I also want to understand this;</div><div><br></div>what about:<div><br></div><div><pre class="" style="margin-top:0px;margin-bottom:0px;padding:0px 5px 16px;border-width:1px 1px 1px 15px;border-style:solid;border-color:rgb(204,204,204);font-size:12px;vertical-align:baseline;overflow:visible;width:auto;line-height:1.333;color:rgb(85,85,85);background-color:rgb(250,250,250);clear:none">

<span style="margin:0px;padding:0px;border:0px;vertical-align:baseline;color:rgb(0,0,0);font-weight:bold">function</span> mymodule_complex_calculation<span style="margin:0px;padding:0px;border:0px;vertical-align:baseline;color:rgb(0,153,0)">(</span><span style="margin:0px;padding:0px;border:0px;vertical-align:baseline;color:rgb(0,153,0)">)</span> <span style="margin:0px;padding:0px;border:0px;vertical-align:baseline;color:rgb(0,153,0)">{</span>
  static <span style="margin:0px;padding:0px;border:0px;vertical-align:baseline;color:rgb(0,0,136)">$cache</span><span style="margin:0px;padding:0px;border:0px;vertical-align:baseline;color:rgb(51,153,51)">;</span>
  <span style="margin:0px;padding:0px;border:0px;vertical-align:baseline;color:rgb(177,177,0)">if</span> <span style="margin:0px;padding:0px;border:0px;vertical-align:baseline;color:rgb(0,153,0)">(</span><span style="margin:0px;padding:0px;border:0px;vertical-align:baseline;color:rgb(153,0,0)">isset</span><span style="margin:0px;padding:0px;border:0px;vertical-align:baseline;color:rgb(0,153,0)">(</span><span style="margin:0px;padding:0px;border:0px;vertical-align:baseline;color:rgb(0,0,136)">$cache</span><span style="margin:0px;padding:0px;border:0px;vertical-align:baseline;color:rgb(0,153,0)">)</span><span style="margin:0px;padding:0px;border:0px;vertical-align:baseline;color:rgb(0,153,0)">)</span> <span style="margin:0px;padding:0px;border:0px;vertical-align:baseline;color:rgb(0,153,0)">{</span>
    <span style="margin:0px;padding:0px;border:0px;vertical-align:baseline;color:rgb(177,177,0)">return</span> <span style="margin:0px;padding:0px;border:0px;vertical-align:baseline;color:rgb(0,0,136)">$cache</span><span style="margin:0px;padding:0px;border:0px;vertical-align:baseline;color:rgb(51,153,51)">;</span>
  <span style="margin:0px;padding:0px;border:0px;vertical-align:baseline;color:rgb(0,153,0)">}</span>
  <span style="margin:0px;padding:0px;border:0px;vertical-align:baseline;color:rgb(102,102,102);font-style:italic">// Otherwise we need to perform our calculations</span>
  <span style="margin:0px;padding:0px;border:0px;vertical-align:baseline;color:rgb(102,102,102);font-style:italic">// ...some complex calculation that returns </span>
  <span style="margin:0px;padding:0px;border:0px;vertical-align:baseline;color:rgb(0,0,136)">$cache</span> <span style="margin:0px;padding:0px;border:0px;vertical-align:baseline;color:rgb(51,153,51)">=</span> complex_calculation<span style="margin:0px;padding:0px;border:0px;vertical-align:baseline;color:rgb(0,153,0)">(</span><span style="margin:0px;padding:0px;border:0px;vertical-align:baseline;color:rgb(0,153,0)">)</span><span style="margin:0px;padding:0px;border:0px;vertical-align:baseline;color:rgb(51,153,51)">;</span>
  <span style="margin:0px;padding:0px;border:0px;vertical-align:baseline;color:rgb(177,177,0)">return</span> <span style="margin:0px;padding:0px;border:0px;vertical-align:baseline;color:rgb(0,0,136)">$cache</span><span style="margin:0px;padding:0px;border:0px;vertical-align:baseline;color:rgb(51,153,51)">;</span>
<span style="margin:0px;padding:0px;border:0px;vertical-align:baseline;color:rgb(0,153,0)">}</span></pre></div><div class="gmail_extra"><br></div><div class="gmail_extra"><a href="http://techblog.zabuchy.net/2011/enhancing-drupal-performance-with-drupal_static/">http://techblog.zabuchy.net/2011/enhancing-drupal-performance-with-drupal_static/</a></div>

<div class="gmail_extra"><br></div><div class="gmail_extra">You are saying that if I instantiate a variable in &quot;mymodule_impersonate()&quot; it will not be available in &quot;mymodule_unimpersonate()&quot;?</div><div class="gmail_extra">

<br></div><div class="gmail_extra"><br><div class="gmail_quote">2013/1/21 Earnie Boyd <span dir="ltr">&lt;<a href="mailto:earnie@users.sourceforge.net" target="_blank">earnie@users.sourceforge.net</a>&gt;</span><br><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left-width:1px;border-left-color:rgb(204,204,204);border-left-style:solid;padding-left:1ex">

You &quot;think&quot; wrongly.  A static variable has local scope to the<br>
function declaring the static variable.<br>
<div class=""><div class="h5"><br>
On Mon, Jan 21, 2013 at 11:03 AM, Lluís Forns &lt;<a href="mailto:enboig@gmail.com">enboig@gmail.com</a>&gt; wrote:<br>
&gt; I think static are also available to other functions, use them to store<br>
&gt; cached information across my code and they work.<br>
&gt;<br>
&gt;<br>
&gt; 2013/1/21 Darren Oh &lt;<a href="mailto:darrenoh@sidepotsinternational.com">darrenoh@sidepotsinternational.com</a>&gt;<br>
&gt;&gt;<br>
&gt;&gt; Static variables are only saved for a single function. Global variables<br>
&gt;&gt; are available to all functions during a single page request. Session<br>
&gt;&gt; variables are available to all page requests during a session.<br>
&gt;&gt;<br>
&gt;&gt; On Jan 21, 2013, at 10:08 AM, Lluís Forns wrote:<br>
&gt;&gt;<br>
&gt;&gt; Darren, thanks for the link. What is the difference between using global<br>
&gt;&gt; or static to save the data?<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; 2013/1/21 Lluís Forns &lt;<a href="mailto:enboig@gmail.com">enboig@gmail.com</a>&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; My code was from a module where impersonation recursively could happen,<br>
&gt;&gt;&gt; this is why I use a stack to save user state. I am also saving it to session<br>
&gt;&gt;&gt; and not using a static variable because I may uses batch functions.<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; But I see some problems right now:<br>
&gt;&gt;&gt; - To be safe impersonation should be saved into static variables (and<br>
&gt;&gt;&gt; &quot;using session_save_session(FALSE);&quot; ), so if anything goes wrong, $user is<br>
&gt;&gt;&gt; not afected.<br>
&gt;&gt;&gt; - If I want to be able to execute every Rules action in a batch, I need<br>
&gt;&gt;&gt; to change user &quot;per action&quot;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; Any idea of how to &quot;inject&quot; code before and after a rule action?<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; 2013/1/21 Walt Daniels &lt;<a href="mailto:wdlists@gmail.com">wdlists@gmail.com</a>&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; We do the latter simple trick in our store code so we can show people<br>
&gt;&gt;&gt;&gt; the member prices. We have a dummy id that is a member so we switch to it,<br>
&gt;&gt;&gt;&gt; pick up the price and use it so we can show both member and non-member<br>
&gt;&gt;&gt;&gt; prices on the screen.<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt; On Mon, Jan 21, 2013 at 9:18 AM, Christian López Espínola<br>
&gt;&gt;&gt;&gt; &lt;<a href="mailto:penyaskito@computer.org">penyaskito@computer.org</a>&gt; wrote:<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; Haven&#39;t tested your code, but maybe you want to take a look at<br>
&gt;&gt;&gt;&gt;&gt; masquerade_switch_user and masquerade_switch_back:<br>
&gt;&gt;&gt;&gt;&gt; <a href="http://drupalcode.org/project/masquerade.git/blob/HEAD:/masquerade.module" target="_blank">http://drupalcode.org/project/masquerade.git/blob/HEAD:/masquerade.module</a>.<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; And if the impersonation is only for the given request, maybe just<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;  global $user;<br>
&gt;&gt;&gt;&gt;&gt;  $previous = $user;<br>
&gt;&gt;&gt;&gt;&gt;  $user = user_load($uid);<br>
&gt;&gt;&gt;&gt;&gt; // Do your stuff.<br>
&gt;&gt;&gt;&gt;&gt;  $user = $previous;<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; would work.<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; On Mon, Jan 21, 2013 at 10:37 AM, Lluís Forns &lt;<a href="mailto:enboig@gmail.com">enboig@gmail.com</a>&gt; wrote:<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; Some of my scheduled task needs to run as the user who triggered them<br>
&gt;&gt;&gt;&gt;&gt;&gt; (not anonymous neither admin); so I thought of writing two actions:<br>
&gt;&gt;&gt;&gt;&gt;&gt; - One to impersonate a user, which will receive uid as an argument.<br>
&gt;&gt;&gt;&gt;&gt;&gt; - Another to undo the impersonate.<br>
&gt;&gt;&gt;&gt;&gt;&gt; All the called actions should be between them.<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; Anybody see any fault in this idea or the actions code?<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; Thanks.<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; function wu_action_impersonate($uid) {<br>
&gt;&gt;&gt;&gt;&gt;&gt;   global $user;<br>
&gt;&gt;&gt;&gt;&gt;&gt;   if (!array_key_exists(&#39;wu_action_impersonate&#39;, $_SESSION)) {<br>
&gt;&gt;&gt;&gt;&gt;&gt;     $_SESSION[&#39;wu_action_impersonate&#39;] = array();<br>
&gt;&gt;&gt;&gt;&gt;&gt;   }<br>
&gt;&gt;&gt;&gt;&gt;&gt;   array_push($_SESSION[&#39;wu_action_impersonate&#39;], $user);<br>
&gt;&gt;&gt;&gt;&gt;&gt;   session_save_session(FALSE);<br>
&gt;&gt;&gt;&gt;&gt;&gt;   $user = user_load($uid);<br>
&gt;&gt;&gt;&gt;&gt;&gt;   user_load($uid);<br>
&gt;&gt;&gt;&gt;&gt;&gt; }<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; function wu_action_unimpersonate() {<br>
&gt;&gt;&gt;&gt;&gt;&gt;   global $user;<br>
&gt;&gt;&gt;&gt;&gt;&gt;   if (array_key_exists(&#39;wu_action_impersonate&#39;, $_SESSION)) {<br>
&gt;&gt;&gt;&gt;&gt;&gt;     if (!empty($_SESSION[&#39;wu_action_impersonate&#39;])) {<br>
&gt;&gt;&gt;&gt;&gt;&gt;       $user = array_pop($_SESSION[&#39;wu_action_impersonate&#39;]);<br>
&gt;&gt;&gt;&gt;&gt;&gt;     }<br>
&gt;&gt;&gt;&gt;&gt;&gt;     if (empty($_SESSION[&#39;wu_action_impersonate&#39;])) {<br>
&gt;&gt;&gt;&gt;&gt;&gt;       unset($_SESSION[&#39;wu_action_impersonate&#39;]);<br>
&gt;&gt;&gt;&gt;&gt;&gt;     }<br>
&gt;&gt;&gt;&gt;&gt;&gt;   }<br>
&gt;&gt;&gt;&gt;&gt;&gt;   session_save_session(TRUE);<br>
&gt;&gt;&gt;&gt;&gt;&gt; }<br>
&gt;&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;&gt; --<br>
&gt;&gt;&gt;&gt;&gt;&gt; *Ser freak no és imprescindible per ser informàtic, però ajuda.<br>
&gt;&gt;&gt;&gt;&gt;&gt; *La vida no ha de ser feliç, ha de ser plena.<br>
&gt;&gt;&gt;&gt;&gt;&gt; *Abans d&#39;imprimir aquest missatge, pensa en el medi ambient.<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; --<br>
&gt;&gt;&gt;&gt;&gt; Cheers,<br>
&gt;&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;&gt; Christian López Espínola &lt;penyaskito AT computer DOT org&gt;<br>
&gt;&gt;&gt;&gt;&gt; <a href="http://twitter.com/penyaskito" target="_blank">http://twitter.com/penyaskito</a> | <a href="http://penyaskito.com" target="_blank">http://penyaskito.com</a><br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt;<br>
&gt;&gt;&gt; --<br>
&gt;&gt;&gt; *Ser freak no és imprescindible per ser informàtic, però ajuda.<br>
&gt;&gt;&gt; *La vida no ha de ser feliç, ha de ser plena.<br>
&gt;&gt;&gt; *Abans d&#39;imprimir aquest missatge, pensa en el medi ambient.<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; --<br>
&gt;&gt; *Ser freak no és imprescindible per ser informàtic, però ajuda.<br>
&gt;&gt; *La vida no ha de ser feliç, ha de ser plena.<br>
&gt;&gt; *Abans d&#39;imprimir aquest missatge, pensa en el medi ambient.<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; --<br>
&gt; *Ser freak no és imprescindible per ser informàtic, però ajuda.<br>
&gt; *La vida no ha de ser feliç, ha de ser plena.<br>
&gt; *Abans d&#39;imprimir aquest missatge, pensa en el medi ambient.<br>
<br>
<br>
<br>
</div></div><span class=""><font color="#888888">--<br>
Earnie<br>
-- <a href="https://sites.google.com/site/earnieboyd" target="_blank">https://sites.google.com/site/earnieboyd</a><br>
</font></span></blockquote></div><br><br clear="all"><div><br></div>-- <br>*Ser freak no és imprescindible per ser informàtic, però ajuda.<br>*La vida no ha de ser feliç, ha de ser plena.<br>*Abans d&#39;imprimir aquest missatge, pensa en el medi ambient.
</div></div>