21286 Posts in 5733 Topics by 2602 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 597 Views |
-
Quickl list module

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>
| 597 Views | ||
|
Page:
1
|
Go to Top |

