示例#1
0
        private string GetComponentsList(int category = 1)
        {
            int    start  = 0;
            int    length = 12;
            string htm    = "";

            SqlClasses.Editor SqlEditor = new SqlClasses.Editor(R);
            SqlReader         reader    = SqlEditor.GetComponentsList(category, start, length);

            if (reader.Rows.Count > 0)
            {
                while (reader.Read() != false)
                {
                    htm += "<div class=\"list-item\" cname=\"" + reader.Get("title") + "\" ctitle=\"" + reader.Get("description") + "\" onmousedown=\"R.editor.components.dragNew.start(event)\" onmouseover=\"R.editor.components.toolbar.mouseEnter(this)\" onmouseout=\"R.editor.components.toolbar.mouseLeave()\" >";
                    htm += "<img src=\"/components/" + reader.Get("componentid").Replace("-", "/") + "/icon.png\" alt=\"" + reader.Get("title") + "\" cid=\"" + reader.Get("componentid") + "\" /></div>";
                }
            }
            return(htm);
        }
示例#2
0
        private string GetComponentCategories()
        {
            string htm = "";

            htm  = "";
            htm += AddCategory(1, "General", "All the tools you need to create content, including text, photos, videos, panels, menus, lists, and buttons.", "components/textbox");
            htm += AddCategory(2, "Page", "Add the title of your page, a list of relavent pages, user comments & ratings, and other page-specific content.", "components/page/title");
            if (R.Page.isDemo == false)
            {
                SqlClasses.Editor SqlEditor = new SqlClasses.Editor(R);
                SqlReader         reader    = SqlEditor.GetComponentCategories();
                if (reader.Rows.Count > 0)
                {
                    while (reader.Read() != false)
                    {
                        htm += AddCategory(reader.GetInt("componentcategory"), reader.Get("title"), reader.Get("description"), "/apps/" + reader.Get("name"));
                    }
                }
            }
            return(htm);
        }
示例#3
0
文件: Service.cs 项目: nhtera/Home
 private string GetComponentsList(int category = 1)
 {
     int start = 0;
     int length = 12;
     string htm = "";
     SqlClasses.Editor SqlEditor = new SqlClasses.Editor(R);
     SqlReader reader = SqlEditor.GetComponentsList(category, start, length);
     if (reader.Rows.Count > 0)
     {
         while (reader.Read() != false)
         {
             htm += "<div class=\"list-item\" cname=\"" + reader.Get("title") + "\" ctitle=\"" + reader.Get("description") + "\" onmousedown=\"R.editor.components.dragNew.start(event)\" onmouseover=\"R.editor.components.toolbar.mouseEnter(this)\" onmouseout=\"R.editor.components.toolbar.mouseLeave()\" >";
             htm += "<img src=\"/components/" + reader.Get("componentid").Replace("-", "/") + "/icon.png\" alt=\"" + reader.Get("title") + "\" cid=\"" + reader.Get("componentid") + "\" /></div>";
         }
     }
     return htm;
 }
示例#4
0
文件: Service.cs 项目: nhtera/Home
 private string GetComponentCategories()
 {
     string htm = "";
     htm = "";
     htm += AddCategory(1, "General", "All the tools you need to create content, including text, photos, videos, panels, menus, lists, and buttons.", "components/textbox");
     htm += AddCategory(2, "Page", "Add the title of your page, a list of relavent pages, user comments & ratings, and other page-specific content.", "components/page/title");
     if (R.Page.isDemo == false)
     {
         SqlClasses.Editor SqlEditor = new SqlClasses.Editor(R);
         SqlReader reader = SqlEditor.GetComponentCategories();
         if (reader.Rows.Count > 0)
         {
             while (reader.Read() != false)
             {
                 htm += AddCategory(reader.GetInt("componentcategory"), reader.Get("title"), reader.Get("description"), "/apps/" + reader.Get("name"));
             }
         }
     }
     return htm;
 }