Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

General Questions /

General questions about getting started with SilverStripe that don't fit in any of the categories above.

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo, swaiba

Quickl list module


Go to End


1522 Views

Avatar
luisq

Community Member, 15 Posts

11 February 2009 at 3:31pm

Hello!
I'm trying to make a module for quick links (like the one that has siverstripe) Can anybody point me in the right direction, or is there a tutorial in SS where I can follow steps. So far I made this:

---------------------------------------------------------------------------
MySite/code/Column1.php

<?php
/**
* Defines the first column for quicklinks page type
*/

class Column1Page extends Page {
static $db = array(
);
static $has_one = array(
);

}

class Column1Page_Controller extends Page_Controller {

}
?>

---------------------------------------------------------------------------
themes/myTheme/Theme1/Template/Page.ss

....
<div id="quicklinks">
<% include Quicklinks %>
</div>
.....

---------------------------------------------------------------------------
themes/myTheme/Theme1/Template/Includes/Quicklinks.ss

<div id="Column1"><% include Column1Page %></div>
<div id="Column2">Column 2</div>
<div id="Column3">Column 3</div>

----------------------------------------------------------------------------
themes/myTheme/Theme1/Template/Layout/Column1Page.ss

<div id="Column1">$Content</div>