My CMS Wish List

12 posts by 2 authors in: Forums > CMS Builder
Last Post: February 28, 2008   (RSS)

By Glasairmell - February 8, 2008 - edited: February 9, 2008

Great Product. I am looking forward to 1.10 My CMS wish list.

1. Create and delete directories within the admin panel.

2. Be able to assign sections/pages to directories.

3 Physically create an editable page using a chosen template (drop down Menu) that saves to a specified location like [url "http://www.interactivetools.com/forum/forum.cgi?url=http%3A%2F%2Fwww.interactivetools.com%2Fforum%2Fforum.cgi%3Furl%3Dhttp%253A%252F%252F%252Fproducts%252Farticlemanager%252F"][url "http://www.interactivetools.com/forum/forum.cgi?url=http%3A%2F%2F%2Fproducts%2Farticlemanager%2F"]Article Manager[/url][/url] does. A template editor would be great.

4. Specify file extentions like .html or .php at the end of each url.

Heck why not dream a bit. Perhaps someday one or two of these wishes will come to be = )

Re: [Glasairmell] My CMS Wish List

By Dave - February 13, 2008

Hi Glasairmell,

Thanks for the suggestions. Can you give me more details on what you want to do with some of these features?

>1. Create and delete directories within the admin panel.

Just any directory or for some purpose? What would you use this form?

>2. Be able to assign sections/pages to directories.

There's a few ways to change how the urls are displayed. Can you give me an example of what you want to do here?

>3 Physically create an editable page using a chosen template (drop down Menu) that saves to a specified location like Article Manager does. A template editor would be great.

Would this be for more like a website builder application? You could use a pulldown to let the user select a css file to use or even include headers and footers based on it.

>4. Specify file extentions like .html or .php at the end of each url.

I've added that one to the feature request list. We'll add it in a future release.

Thanks for the details!
Dave Edis - Senior Developer
interactivetools.com

Re: [Glasairmell] My CMS Wish List

By Dave - February 14, 2008

Thanks for the feedback. I appreciate it.

I've added the alt="" tags to the default image tags as suggested. That will be in the next release.

I want to make it simpler to use multiple list viewers on one page. The way to do it now is to use different variable names so they don't conflict ($articlesRows instead of $listRows, $articles instead of $records, etc) but it's a bit of a hassle. I think what we'll do moving forward is have more options on the code generator so you can just point and click the options you want for the viewer (including extension on the urls) and not have to know how to adjust the options to get what you want.

That said, if you have a project now where you want one list viewer to do something different from the rest (such as ignore the record number in the url, etc) let me know and I can tell you how to adjust those settings. I do want to make it more automated in the future though.

Thanks for the feedback!
Dave Edis - Senior Developer
interactivetools.com

Re: [Dave] My CMS Wish List

By Glasairmell - February 14, 2008

Super, thank you for telling me how to get the list viewer to work with the page viewer without conflict.

Re: [Glasairmell] My CMS Wish List

By Glasairmell - February 14, 2008

Could you attach a file or be a bit more specific on what to change please? Thanks!

Re: [Glasairmell] My CMS Wish List

By Dave - February 14, 2008

If you like you can just email me your viewer file at dave@interactivetools.com and I'll take a look, make some edits and send it back. Either that or attach it to your post here.
Dave Edis - Senior Developer
interactivetools.com

Re: [Dave] My CMS Wish List

By Glasairmell - February 14, 2008

Thanks, I emailed the file I think you wanted, if that is not the one please let me know. I bet you are getting really excited about the CMS Builder 1.10. When it comes out I am sure everyone will be thrilled with it.

Re: [Glasairmell] My CMS Wish List

By Glasairmell - February 15, 2008

This seemed to do the trick, thanks. Was this the correct thing to do?

I changed this:

list($listRows, $listDetails) = getListRows($options);
?>

<?php foreach ($listRows as $record): ?>

<a href="<?php echo $record['_link'] ?>"><?php echo $['link_name'] ?></a><br/>
<?php endforeach ?></td>


To this:

list($linkRows, $linkDetails) = getListRows($options);
?>
<!-- /STEP1: Load Record List -->
<!-- Links Viewer -->

<?php foreach ($linkRows as $link): ?>
<a href="<?php echo $link['_link'] ?>"><?php echo $link['link_name'] ?></a><br/>

Thank you for you time!

Re: [Glasairmell] My CMS Wish List

By Dave - February 15, 2008

Yes, that's exactly it. Just change all the variables of the same name to something else. Glad it's working for you now!
Dave Edis - Senior Developer
interactivetools.com