Reason Developer Notebook
Posts tagged with “Administrative Interface” (All posts)
Relationship Sorting
September 22, 2006 at 2:29 pmRelationship sorting has been live in production for awhile. Currently only the minisite_page_to_image relationship is sortable, but more allowable relationships will be made sortable when I get a chance.
The entity…
Filters on backend are persistent again
July 28, 2006 at 1:51 pmContent lister filters, since the code base reorganization, were being forgotten between page hits. As it turns out, session_start () was never being called. The index.php page which would set…
autofill forms / thor .csv fixes
June 23, 2006 at 5:55 pmAutofill Forms
Forms have a new feature called "autofill," which gives the user the option to autofill fields that are named with a particular string.
The feature only works for logged-in users…
Fixed unclean filter values in backend
June 8, 2006 at 11:39 amThe search/filter strings were not getting cleaned in any way before being put into a db query, which was very bad. We are now using a new function called conditional_addslashes($value),…
database backed thor forms
May 5, 2006 at 11:02 amThor, the thor content manager, and the form module have been upgraded to allow thor form submissions to be saved to a database backend. Old forms should work as is,…
get_minisite_page_link function
April 18, 2006 at 3:59 pmI've added a new function into function_libraries/url_utils.php called get_minisite_page_link.
Parameters:
- site_id (int)
- page_id (int)
- query_string (string) defaults to ''
- secure (boolean) defaults to true
Returns:
- full url for minisite_page with desired parameters
The function uses the MinisiteNavigation class…
Richer image meatadata: categories and original format
April 1, 2006 at 12:39 pmI've added some additional metadata capabilities to images in Reason.
- There is now an image_to_category allowable relationship. No code specifically references this relationship yet, but we can use this in the…
link to original image limited
March 31, 2006 at 6:03 pmThe link to the original image is now only shown in image previewer on owning site.
image content manager throws error if mogrify fails
March 31, 2006 at 5:44 pmMogrify was failing silently on ventnor because we didn't have Imagemagick turned on. Matt B. turned on Imagemagick and added error checking to make sure that we hear about it…
Support for embedding media in html pages and for importing media into Reason
March 30, 2006 at 2:10 pmOverview af a large package of changes made to support media management and display in Reason
many to one relationships
March 30, 2006 at 12:04 pmMany to one relationships have been implemented, and the associator and sharing modules now consider this type of connection when deciding which entities are available for selection. The allowable relationship…
sharing/borrow session data
March 30, 2006 at 11:53 amThe borrow interface, and the borrow interface as accessed through the associator module when borrowing entities from another site had been sharing session data. This would result in problems when…