Changeset 857

Show
Ignore:
Timestamp:
12/08/06 09:30:14 (2 years ago)
Author:
gboggs
Message:

Basic edit_entry image asset list dialog functionality. (Uploading and inserting not happening in this checkin, so don't get excited just yet.) BugId: 45620

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/wheeljack/lib/MT/App/CMS.pm

    r852 r857  
    980980        Type => 'asset', 
    981981        Code => $hasher, 
     982        Template => $app->param('dialog_view') ? 'dialog_list_assets.tmpl' : '', 
    982983        Params => { 
    983984            ($blog ? ( 
     
    985986                blog_name => $blog->name, 
    986987                edit_blog_id => $blog_id, 
     988                dialog_view => $app->param('dialog_view') ? 1 : 0, 
    987989            ) : ()), 
    988990            class_loop => \@class_loop, 
  • branches/wheeljack/tmpl/cms/edit_entry.tmpl

    r791 r857  
    540540        write('<img title="<MT_TRANS phrase="Insert Email Link" escape="singlequotes">" onclick="return insertLink(document.entry_form.text, 1)" src="<TMPL_VAR NAME=STATIC_URI>images/formatting-icons/email.gif" alt="<MT_TRANS phrase="Insert Email Link" escape="singlequotes">" width="26" height="19" />'); 
    541541        write('<img title="<MT_TRANS phrase="Quote" escape="singlequotes">" onclick="return formatStr(document.entry_form.text, \'blockquote\')" src="<TMPL_VAR NAME=STATIC_URI>images/formatting-icons/quote.gif" alt="<MT_TRANS phrase="Quote" escape="singlequotes">" width="26" height="19" />'); 
     542        write('<img title="<MT_TRANS phrase="Insert Link" escape="singlequotes">" onclick="return openDialog(document.entry_form, \'list_assets\', \'__type=asset&amp;blog_id=<TMPL_VAR NAME=BLOG_ID>&amp;dialog_view=1&amp;filter=class&amp;filter_val=image&amp;return_args=<TMPL_VAR NAME=RETURN_ARGS ESCAPE=URL>\')" src="<TMPL_VAR NAME=STATIC_URI>images/formatting-icons/add_image.gif" alt="<MT_TRANS phrase="Insert Link" escape="singlequotes">" width="26" height="19" />'); 
    542543    } 
    543544}