Пример #1
0
        protected void Page_Load(object sender, EventArgs e)
        {
            ClientLoader.DataBind();

            pp_src.Text        = ui.Text("url");
            pp_title.Text      = ui.Text("name");
            pp_dimensions.Text = ui.Text("dimensions");

            pane_src.Style.Add("height", "105px");

            lt_heightLabel.Text = ui.Text("height");
            lt_widthLabel.Text  = ui.Text("width");

            Title = ui.Text("insertimage");

            // Put user code to initialize the page here
            var tp = tv_options.NewTabPage(ui.Text("choose"));

            tp.HasMenu = false;
            tp.Controls.Add(pane_select);

            var tp2 = tv_options.NewTabPage(ui.Text("create") + " " + ui.Text("new"));

            tp2.HasMenu = false;
            tp2.Controls.Add(pane_upload);
        }
Пример #2
0
        protected override void OnLoad(EventArgs e)
        {
            base.OnLoad(e);
            ClientLoader.DataBind();

            // validate redirect url
            string redirUrl = Request["redir"];

            if (!String.IsNullOrEmpty(redirUrl))
            {
                validateRedirectUrl(redirUrl);
            }
        }
Пример #3
0
        //protected uicontrols.TabView tbv = new uicontrols.TabView();

        protected void Page_Load(object sender, System.EventArgs e)
        {
            ClientLoader.DataBind();

            uicontrols.TabPage tp = tv_options.NewTabPage(ui.Text("content"));
            tp.HasMenu = false;
            tp.Controls.Add(pane_content);



            uicontrols.TabPage tp2 = tv_options.NewTabPage(ui.Text("media"));
            tp2.HasMenu = false;
            tp2.Controls.Add(pane_media);
        }
Пример #4
0
        protected void Page_Load(object sender, System.EventArgs e)
        {
            ClientLoader.DataBind();

            uicontrols.TabPage tp = tv_options.NewTabPage(ui.Text("content"));
            tp.HasMenu = false;
            tp.Controls.Add(pane_content);


            if (CurrentUser.GetApplications().Find(t => t.alias == "media") != null)
            {
                uicontrols.TabPage tp2 = tv_options.NewTabPage(ui.Text("media"));
                tp2.HasMenu = false;
                tp2.Controls.Add(pane_media);
            }
            else
            {
                pane_media.Visible = false;
            }
        }
Пример #5
0
        protected void Page_Load(object sender, System.EventArgs e)
        {
            ClientLoader.DataBind();

            pp_src.Text        = ui.Text("url");
            pp_title.Text      = ui.Text("name");
            pp_dimensions.Text = ui.Text("dimensions");

            pane_src.Style.Add("height", "105px");

            lt_heightLabel.Text = ui.Text("height");
            lt_widthLabel.Text  = ui.Text("width");

            Title = ui.Text("insertimage");

            // Put user code to initialize the page here
            uicontrols.TabPage tp = tv_options.NewTabPage(ui.Text("choose"));
            tp.HasMenu = false;
            tp.Controls.Add(pane_select);

            uicontrols.TabPage tp2 = tv_options.NewTabPage(ui.Text("create") + " " + ui.Text("new"));
            tp2.HasMenu = false;
            tp2.Controls.Add(pane_upload);

            if (IsTriphulcasCall)
            {
                Page.ClientScript.RegisterClientScriptBlock(
                    Page.GetType(),
                    "TriphulcasCustomCode",
                    @"jQuery('document').ready(function(){
                        jQuery('#advimage').css('display','block');
                        jQuery('#SubmitControls').css('display','none');
                    });",
                    true);
            }
        }
Пример #6
0
 protected void Page_Load(object sender, EventArgs e)
 {
     ClientLoader.DataBind();
     ScriptManager.RegisterStartupScript(Page, Page.GetType(), "setRoot", "UmbClientMgr.setUmbracoPath(\"" + IO.IOHelper.ResolveUrl(IO.SystemDirectories.Umbraco) + "\");", true);
     FireOnLoad(e);
 }
 protected void Page_Load(object sender, EventArgs e)
 {
     ClientLoader.DataBind();
     FireOnLoad(e);
 }
Пример #8
0
        protected void Page_Load(object sender, EventArgs e)
        {
            ClientLoader.DataBind();

            _scriptOnLoad = "";

            string reqMacroID    = UmbracoContext.Current.Request["umb_macroID"];
            string reqMacroAlias = UmbracoContext.Current.Request["umb_macroAlias"];
            bool   ignoreForm    = string.IsNullOrEmpty(UmbracoContext.Current.Request["class"]);

            pane_insert.Text = ui.Text("insertMacro");
            Page.Title       = ui.Text("insertMacro");

            if (!String.IsNullOrEmpty(reqMacroID) || !String.IsNullOrEmpty(reqMacroAlias))
            {
                pane_edit.Visible      = true;
                pane_insert.Visible    = false;
                edit_buttons.Visible   = true;
                insert_buttons.Visible = false;

                // Put user code to initialize the page here
                if (!string.IsNullOrEmpty(reqMacroID))
                {
                    m = new Macro(int.Parse(reqMacroID));
                }
                else
                {
                    m = new Macro(reqMacroAlias);
                }

                pane_edit.Text = ui.Text("edit") + " " + m.Name;
                Page.Title     = ui.Text("edit") + " " + m.Name;

                String macroAssembly = "";
                String macroType     = "";

                if (m.Properties.Length == 0)
                {
                    if (ignoreForm)
                    {
                        renderMacro_Click(null, EventArgs.Empty);
                    }
                    else
                    {
                        Literal fb = new Literal();
                        fb.Text = "<p>" + ui.Text("macroDoesNotHaveProperties") + "</p><p><a href='#' onClick='tinyMCEPopup.close();'>" + ui.Text("closeThisWindow") + "</a>";
                        macroProperties.Controls.Add(fb);
                        edit_buttons.Visible = false;
                    }
                }
                else
                {
                    foreach (MacroProperty mp in m.Properties)
                    {
                        macroAssembly = mp.Type.Assembly;
                        macroType     = mp.Type.Type;
                        try
                        {
                            Assembly assembly = Assembly.LoadFrom(IOHelper.MapPath(SystemDirectories.Bin + "/" + macroAssembly + ".dll"));

                            Type type = assembly.GetType(macroAssembly + "." + macroType);
                            IMacroGuiRendering typeInstance = Activator.CreateInstance(type) as IMacroGuiRendering;
                            if (typeInstance != null)
                            {
                                Control control = Activator.CreateInstance(type) as Control;
                                control.ID = mp.Alias;

                                if (!IsPostBack)
                                {
                                    string propertyValue = Request["umb_" + mp.Alias];
                                    if (propertyValue != null)
                                    {
                                        // replace linebreaks and quotes
                                        propertyValue =
                                            propertyValue.Replace("\\r", "\r").Replace("\\n", "\n").Replace("\\\"", "\"");

                                        // check encoding
                                        propertyValue = HttpUtility.UrlDecode(propertyValue);

                                        if (propertyValue != "")
                                        {
                                            type.GetProperty("Value").SetValue(control,
                                                                               Convert.ChangeType(
                                                                                   propertyValue,
                                                                                   type.GetProperty("Value").PropertyType),
                                                                               null);
                                        }
                                    }
                                }


                                uicontrols.PropertyPanel pp = new global::umbraco.uicontrols.PropertyPanel();
                                pp.Text = mp.Name;
                                pp.Controls.Add(control);
                                _scriptOnLoad += "\t\tregisterAlias('" + control.ID + "');\n";
//                                pp.Controls.Add(new LiteralControl("<script type=\"text/javascript\"></script>\n"));
                                macroProperties.Controls.Add(pp);

                                _dataFields.Add(control);

                                //macroProperties.Controls.Add(new LiteralControl("</td></tr>"));
                            }
                            else
                            {
                                Trace.Warn("umbEditContent",
                                           "Type doesn't exist or is not umbraco.interfaces.DataFieldI ('" + macroAssembly +
                                           "." + macroType + "')");
                            }
                        }
                        catch (Exception fieldException)
                        {
                            Trace.Warn("umbEditContent", "Error creating type '" + macroAssembly + "." + macroType + "'",
                                       fieldException);
                        }
                    }
                }
            }
            else
            {
                IRecordsReader macroRenderings;
                if (UmbracoContext.Current.Request["editor"] != "")
                {
                    macroRenderings = SqlHelper.ExecuteReader("select macroAlias, macroName from cmsMacro where macroUseInEditor = 1 order by macroName");
                }
                else
                {
                    macroRenderings = SqlHelper.ExecuteReader("select macroAlias, macroName from cmsMacro order by macroName");
                }

                umb_macroAlias.DataSource     = macroRenderings;
                umb_macroAlias.DataValueField = "macroAlias";
                umb_macroAlias.DataTextField  = "macroName";
                umb_macroAlias.DataBind();
                macroRenderings.Close();
            }
        }
Пример #9
0
 protected override void OnLoad(EventArgs e)
 {
     base.OnLoad(e);
     ClientLoader.DataBind();
 }