Skip to content

Instantly share code, notes, and snippets.

@davefreiman
Created April 21, 2014 13:35
Show Gist options
  • Save davefreiman/11142876 to your computer and use it in GitHub Desktop.
Save davefreiman/11142876 to your computer and use it in GitHub Desktop.
<?php
class DavidF_LayoutConfig_Model_Adminhtml_System_Config_Source_CatalogPage
{
public function toOptionArray()
{
$toReturn = array();
$toReturn[1]['value'] = '1';
$toReturn[1]['label'] = '1 Column with Topnav';
$toReturn[0]['value'] = '0';
$toReturn[0]['label'] = '2 Columns with Leftnav';
return $toReturn;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment