<html><head></head><body bgcolor="#FFFFFF"><div>There's an advertisement of a woman ordering a shake and fries, and when she's informed by the person behind the counter that she's in a library, she repeats her order in a whisper.<br><br>Sent from my iPhone</div><div><br>On Jul 25, 2012, at 8:49 AM, Anil Reddy &lt;<a href="mailto:anilreddykarna@yahoo.in">anilreddykarna@yahoo.in</a>&gt; wrote:<br><br></div><div></div><blockquote type="cite"><div><div style="color:#000; background-color:#fff; font-family:times new roman, new york, times, serif;font-size:12pt"><div style="font-family: 'times new roman', 'new york', times, serif; font-size: 12pt; "><span>Hi,</span></div><div style="font-family: 'times new roman', 'new york', times, serif; font-size: 12pt; "><span><br></span></div><div><span><font size="3">How&nbsp;</font>stupidly<font size="3">&nbsp;gives you the replies. what am i asked and what you have sent.</font></span></div><div><span><font size="3">I just made request for new password because my account has been blocked&nbsp;unfortunately.</font></span></div><div><span><font size="3">And you are sending me rules and&nbsp;regulations of sending an email,is it necessary right now.&nbsp;</font></span></div><div><span><font size="3"><br></font></span></div><div style="font-family: 'times new roman', 'new york', times, serif; font-size: 12pt; ">&nbsp;</div><div style="font-family:
 'times new roman', 'new york', times, serif; font-size: 12pt; ">reg.......</div><div style="font-family: 'times new roman', 'new york', times, serif; font-size: 12pt; ">Anil Karna</div><div style="font-family: 'times new roman', 'new york', times, serif; font-size: 12pt; "><br></div>  <div style="font-family: 'times new roman', 'new york', times, serif; font-size: 12pt; "> <div style="font-family: 'times new roman', 'new york', times, serif; font-size: 12pt; "> <div dir="ltr"> <font size="2" face="Arial"> <hr size="1">  <b><span style="font-weight:bold;">From:</span></b> "<a href="mailto:support-request@drupal.org">support-request@drupal.org</a>" &lt;<a href="mailto:support-request@drupal.org">support-request@drupal.org</a>&gt;<br> <b><span style="font-weight: bold;">To:</span></b> <a href="mailto:support@drupal.org">support@drupal.org</a> <br> <b><span style="font-weight: bold;">Sent:</span></b> Wednesday, 25 July 2012 5:30 PM<br> <b><span style="font-weight: bold;">Subject:</span></b> support Digest, Vol 115, Issue 36<br> </font> </div> <br>Send support mailing list submissions
 to<br>&nbsp;&nbsp;&nbsp; <a ymailto="mailto:support@drupal.org" href="mailto:support@drupal.org">support@drupal.org</a><br><br>To subscribe or unsubscribe via the World Wide Web, visit<br>&nbsp;&nbsp;&nbsp; <a href="http://lists.drupal.org/mailman/listinfo/support" target="_blank">http://lists.drupal.org/mailman/listinfo/support</a><br>or, via email, send a message with subject or body 'help' to<br>&nbsp;&nbsp;&nbsp; <a ymailto="mailto:support-request@drupal.org" href="mailto:support-request@drupal.org">support-request@drupal.org</a><br><br>You can reach the person managing the list at<br>&nbsp;&nbsp;&nbsp; <a ymailto="mailto:support-owner@drupal.org" href="mailto:support-owner@drupal.org">support-owner@drupal.org</a><br><br>When replying, please edit your Subject line so it is more specific<br>than "Re: Contents of support digest..."<br><br><br>Today's Topics:<br><br>&nbsp;  1. Entity exposed to view but 'date' type field are not&nbsp;&nbsp;&nbsp;
 present<br>&nbsp; &nbsp; &nbsp; (Juraj Chlebec)<br>&nbsp;  2. Unblock my account (Anil Reddy)<br><br><br>----------------------------------------------------------------------<br><br>Message: 1<br>Date: Tue, 24 Jul 2012 17:10:56 +0200<br>From: Juraj Chlebec &lt;<a ymailto="mailto:havran@gmail.com" href="mailto:havran@gmail.com">havran@gmail.com</a>&gt;<br>Subject: [support] Entity exposed to view but 'date' type field are<br>&nbsp;&nbsp;&nbsp; not&nbsp;&nbsp;&nbsp; present<br>To: <a ymailto="mailto:support@drupal.org" href="mailto:support@drupal.org">support@drupal.org</a><br>Message-ID:<br>&nbsp;&nbsp;&nbsp; &lt;CAEXz2Pa+F3LdORCrWDggyVh3UpRiqsGtZ_O3=TMBfU=<a ymailto="mailto:ZDPs43g@mail.gmail.com" href="mailto:ZDPs43g@mail.gmail.com">ZDPs43g@mail.gmail.com</a>&gt;<br>Content-Type: text/plain; charset="iso-8859-1"<br><br>Hi,<br><br>I have same problem as here: <a href="http://drupal.org/node/1021466#comment-4766902" target="_blank">http://drupal.org/node/1021466#comment-4766902</a><br><br>Callbacks are only used by<br>wrappers&lt;<a href="http://drupal.org/node/1021466#comment-4766902" target="_blank">http://drupal.org/node/1021466#comment-4766902</a>&gt;<br>Posted by JvE &lt;<a href="http://drupal.org/user/892998" target="_blank">http://drupal.org/user/892998</a>&gt; on *July 22, 2011 at 10:18am*<br><br>Note that the "getter callback" and "setter callback" functions are<br>*only*used by Entity metadata wrappers.<br>Not by entity_load or Views and such.<br><br>You can not use these to convert a different timestamp format in a database<br>to a timestamp for use with the 'date' type unless you specifically create<br>a wrapper for each of your entity instances.<br><br>I tried to get my (int)yyyymmdd values from the database to show up in<br>Views as dates and mistakenly thought I could use the "getter callback" for<br>the transformation.<br>Example of when callback is
 and is not used:<br>&lt;?php<br>&nbsp; &nbsp; $entity = entity_load('myentity', array(1));<br>&nbsp; &nbsp; print $entity-&gt;day; // this gives 20110721 (from the database)<br>&nbsp; &nbsp; $item = entity_metadata_wrapper('myentity', $entity);<br>&nbsp; &nbsp; print $item-&gt;day-&gt;value(); // this gives 1311206400 (from the "getter<br>callback")<br>?&gt;<br><br>In Views my day shows up as "08/21/1970 - 19:18" ...<br>so if someone can point me in the right direction to get my "days" as<br>timestamps, I'm all ears.<br><br><br>How can i use "getter callback" to convert field from database stored as<br>'date' to timestamp for using for view? Or is there other way how to<br>achieve this goal?<br><br>Juraj<br><br>-- <br>Juraj Chlebec aka Havran<br><a href="http://www.svoji.sk/" target="_blank">http://www.svoji.sk</a><br>-------------- next part --------------<br>An HTML attachment was scrubbed...<br>URL: <a href="http://lists.drupal.org/pipermail/support/attachments/20120724/0b3985f1/attachment-0001.html" target="_blank">http://lists.drupal.org/pipermail/support/attachments/20120724/0b3985f1/attachment-0001.html</a> <br><br>------------------------------<br><br>Message: 2<br>Date: Wed, 25 Jul 2012 17:17:47 +0800 (SGT)<br>From: Anil Reddy &lt;<a ymailto="mailto:anilreddykarna@yahoo.in" href="mailto:anilreddykarna@yahoo.in">anilreddykarna@yahoo.in</a>&gt;<br>Subject: [support] Unblock my account<br>To: "<a ymailto="mailto:support@drupal.org" href="mailto:support@drupal.org">support@drupal.org</a>" &lt;<a ymailto="mailto:support@drupal.org" href="mailto:support@drupal.org">support@drupal.org</a>&gt;<br>Message-ID:<br>&nbsp;&nbsp;&nbsp; &lt;<a ymailto="mailto:1343207867.83814.YahooMailNeo@web193004.mail.sg3.yahoo.com" href="mailto:1343207867.83814.YahooMailNeo@web193004.mail.sg3.yahoo.com">1343207867.83814.YahooMailNeo@web193004.mail.sg3.yahoo.com</a>&gt;<br>Content-Type: text/plain; charset="iso-8859-1"<br><br><br><br>?Hi,<br>Please unblock my account,or send another password for am waiting from morning onwards.<br><br>reg.......<br>Anil Karna<br>-------------- next part --------------<br>An HTML attachment was scrubbed...<br>URL: <a href="http://lists.drupal.org/pipermail/support/attachments/20120725/87cd08a6/attachment-0001.html" target="_blank">http://lists.drupal.org/pipermail/support/attachments/20120725/87cd08a6/attachment-0001.html</a> <br><br>------------------------------<br><br>-- <br>[ Drupal support list | <a href="http://lists.drupal.org/" target="_blank">http://lists.drupal.org/</a> ]<br><br>End of support Digest, Vol 115, Issue 36<br>****************************************<br><br><br> </div> </div>  </div></div></blockquote><blockquote type="cite"><div><span>-- </span><br><span>[ Drupal support list | <a href="http://lists.drupal.org/">http://lists.drupal.org/</a> ]</span></div></blockquote></body></html>