<?xml version="1.0"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>Forums Tag: item</title>
<link>http://omeka.org/forums/</link>
<description>Forums Tag: item</description>
<language>en</language>
<pubDate>Fri, 10 Oct 2008 21:28:54 +0000</pubDate>

<item>
<title>KrisKelly on "link_href Helper Function"</title>
<link>http://omeka.org/forums/topic/link_href-helper-function#post-475</link>
<pubDate>Tue, 10 Jun 2008 18:39:40 +0000</pubDate>
<dc:creator>KrisKelly</dc:creator>
<guid isPermaLink="false">475@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Yes, there is already a link_to() function that does what your function does for most cases. You can't use it for inserting HTML into the tag, so there will probably be a link_to_img() helper that does something similar to what yours does. I would imagine that it would be something like: link_to_img($featuredItem, 'show', 'orange-btn.gif');. By the way, nice job on the that theme, it looks great!
&#60;/p&#62;</description>
</item>
<item>
<title>kyleroth on "link_href Helper Function"</title>
<link>http://omeka.org/forums/topic/link_href-helper-function#post-465</link>
<pubDate>Fri, 06 Jun 2008 20:32:08 +0000</pubDate>
<dc:creator>kyleroth</dc:creator>
<guid isPermaLink="false">465@http://omeka.org/forums/</guid>
<description>&#60;p&#62;I added a function called &#60;strong&#62;link_href&#60;/strong&#62; to ../helpers/Functions.php and it allows me to link image buttons to item pages. Is there a better way to code this with one of the current functions or would this be something beneficial to add to the global Functions page?&#60;/p&#62;
&#60;p&#62;Code in Functions.php:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;function link_href($record, $action=&#38;#39;show&#38;#39;, $text) {
$path = $record-&#38;gt;getPluralized() . DIRECTORY_SEPARATOR . $action . DIRECTORY_SEPARATOR . $record-&#38;gt;id;
return &#38;#39;&#38;lt;a href=&#38;quot;&#38;#39;. uri($path) . &#38;#39;&#38;quot;&#38;gt;&#38;#39; . ($text) . &#38;#39;&#38;lt;/a&#38;gt;&#38;#39;;
}&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;Code on frontend:&#60;br /&#62;
&#60;pre&#62;&#60;code&#62;&#38;lt;?php $orangebot = img(&#38;#39;orange-btn.gif&#38;#39;); ?&#38;gt;
&#38;lt;?php echo link_href($featuredItem,show,&#38;quot;&#38;lt;img src=$orangebot border=&#38;#39;0&#38;#39; &#38;gt;&#38;quot;); ?&#38;gt;&#60;/code&#62;&#60;/pre&#62;
&#60;p&#62;You can see the theme that I am developing here: &#60;a href=&#34;http://euclidcorridor.dreamhosters.com/&#34; rel=&#34;nofollow&#34;&#62;http://euclidcorridor.dreamhosters.com/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>KrisKelly on "Next Item in Collection"</title>
<link>http://omeka.org/forums/topic/next-item-in-collection#post-439</link>
<pubDate>Fri, 30 May 2008 14:17:24 +0000</pubDate>
<dc:creator>KrisKelly</dc:creator>
<guid isPermaLink="false">439@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Right now, link_to_next_item() and link_to_previous_item() don't know about how you found a particular item.  Which is to say, next/previous runs through the whole archive and isn't based on a particular collection or tag, etc.  That might be a good thing to add in a future release, but it would also work as a plugin.
&#60;/p&#62;</description>
</item>
<item>
<title>samipmallick on "Next Item in Collection"</title>
<link>http://omeka.org/forums/topic/next-item-in-collection#post-438</link>
<pubDate>Thu, 29 May 2008 20:42:14 +0000</pubDate>
<dc:creator>samipmallick</dc:creator>
<guid isPermaLink="false">438@http://omeka.org/forums/</guid>
<description>&#60;p&#62;I see how to use the link_to_next_item or link_to_previous_item can be used to link to the next/previous item in the entire archive.  But, is there a way to link to the next/previous item in the collection and avoid items that aren't in that particular collection?  I'm pretty weak at php so any guidance would be much appreciated.  Thanks!!
&#60;/p&#62;</description>
</item>
<item>
<title>SheilaBrennan on "Problem Adding Item to Exhibit Section Pages"</title>
<link>http://omeka.org/forums/topic/problem-adding-item-to-exhibit-section-pages#post-395</link>
<pubDate>Sat, 26 Apr 2008 21:29:30 +0000</pubDate>
<dc:creator>SheilaBrennan</dc:creator>
<guid isPermaLink="false">395@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Evan,&#60;br /&#62;
Others have also commented on the difficulty of making the images stick in the exhibit layout templates. Currently, we are modifying the exhibit builder interface and those changes should help with this problem.&#60;/p&#62;
&#60;p&#62;For now, you may just have to play around a little with your mouse during the drag and drop process and try to get that thumbnail as centered in the box as possible. I've had some trouble too but have been able to pull the images into the exhibit pages. &#60;/p&#62;
&#60;p&#62;We look to release the modified exhibit builder function in the fall. &#60;/p&#62;
&#60;p&#62;Good luck,&#60;br /&#62;
Sheila
&#60;/p&#62;</description>
</item>
<item>
<title>Evan on "Problem Adding Item to Exhibit Section Pages"</title>
<link>http://omeka.org/forums/topic/problem-adding-item-to-exhibit-section-pages#post-391</link>
<pubDate>Fri, 25 Apr 2008 19:34:21 +0000</pubDate>
<dc:creator>Evan</dc:creator>
<guid isPermaLink="false">391@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Hi Shelia,&#60;/p&#62;
&#60;p&#62;It is the first case--the thumbnail does not &#34;stick&#34; into the appropriate box when I drag it over.  Thanks for you help!&#60;/p&#62;
&#60;p&#62;-Evan
&#60;/p&#62;</description>
</item>
<item>
<title>SheilaBrennan on "Problem Adding Item to Exhibit Section Pages"</title>
<link>http://omeka.org/forums/topic/problem-adding-item-to-exhibit-section-pages#post-389</link>
<pubDate>Fri, 25 Apr 2008 18:01:19 +0000</pubDate>
<dc:creator>SheilaBrennan</dc:creator>
<guid isPermaLink="false">389@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Hi Evan, &#60;/p&#62;
&#60;p&#62;Are you having difficulty making the thumbnail &#34;stick&#34; into the appropriate box when you are dragging it over, or are you asking if the entire item will be dragged into the exhibit?&#60;/p&#62;
&#60;p&#62;Items, as entities, do not get pulled into exhibits. Full item descriptions and metadata remain with the item, as viewed in the items/show page. That metadata does not get pulled into the exhibit. When creating an exhibit, visitors to your site may click on the thumbnail that represents an tem in the exhibit page to see the item's metadata. &#60;/p&#62;
&#60;p&#62;If I have misunderstood what you are asking about please don't hesitate to clarify.&#60;/p&#62;
&#60;p&#62;Sheila
&#60;/p&#62;</description>
</item>
<item>
<title>Evan on "Problem Adding Item to Exhibit Section Pages"</title>
<link>http://omeka.org/forums/topic/problem-adding-item-to-exhibit-section-pages#post-388</link>
<pubDate>Thu, 24 Apr 2008 23:14:27 +0000</pubDate>
<dc:creator>Evan</dc:creator>
<guid isPermaLink="false">388@http://omeka.org/forums/</guid>
<description>&#60;p&#62;I am having problems adding items/images to the pages of an exhibit.  I can create a page for the exhibit and I can enter text.  But, when I go to drag an item into the box to add it to the page, nothing happens.  It looks I am just dragging the image file (either the thumbnail of the item or the four-headed arrow icon) that the browser is showing, not the &#34;item&#34; that is supposed to be recognized by Omeka.  I have had the same problem using Safari and Firefox on OS X and Internet Explorer and Firefox on Windows.  I have also tried it using different exhibits, but I was met with the same results.   Any suggestions?  Thank you for your help.
&#60;/p&#62;</description>
</item>
<item>
<title>abarrera on "Add Item error"</title>
<link>http://omeka.org/forums/topic/add-item-error#post-230</link>
<pubDate>Mon, 10 Mar 2008 16:17:29 +0000</pubDate>
<dc:creator>abarrera</dc:creator>
<guid isPermaLink="false">230@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Thanks for the tip.  That apparently worked, the unfortunate thing for me is it isn't on the server I wanted to use, but I'll make do.&#60;/p&#62;
&#60;p&#62;thanks!
&#60;/p&#62;</description>
</item>
<item>
<title>jsafley on "Add Item error"</title>
<link>http://omeka.org/forums/topic/add-item-error#post-225</link>
<pubDate>Fri, 07 Mar 2008 20:10:35 +0000</pubDate>
<dc:creator>jsafley</dc:creator>
<guid isPermaLink="false">225@http://omeka.org/forums/</guid>
<description>&#60;p&#62;Unfortunately I cannot reproduce the error. We'll look into it further, but I notice that your PHP is an earlier version than what Omeka requires: PHP 5.2.x or greater. It is possible that this is the cause of the error.
&#60;/p&#62;</description>
</item>
<item>
<title>abarrera on "Add Item error"</title>
<link>http://omeka.org/forums/topic/add-item-error#post-224</link>
<pubDate>Fri, 07 Mar 2008 19:19:45 +0000</pubDate>
<dc:creator>abarrera</dc:creator>
<guid isPermaLink="false">224@http://omeka.org/forums/</guid>
<description>&#60;p&#62;This has been previously reported, but no meaningful solution given.  When adding an item, after step 3, the following error occurs:&#60;/p&#62;
&#60;p&#62;Fatal error: Objects used as arrays in post/pre increment/decrement must return values by reference in /var/www/html/omeka/application/models/Item.php on line 172&#60;/p&#62;
&#60;p&#62;This is on a CentOS 5.x box.&#60;br /&#62;
Omeka 0.9&#60;br /&#62;
MySQL v 5.0.22&#60;br /&#62;
PHP v 5.1.6&#60;/p&#62;
&#60;p&#62;The image is added however.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
