Adding feature to allow users to choose a syntaxhighlighter theme per project

This commit is contained in:
Nathan Adams
2014-03-12 21:30:54 -05:00
parent 822e107958
commit 7ac8142fc6
8 changed files with 138 additions and 3 deletions

View File

@@ -116,6 +116,15 @@ class IDF_Project extends Pluf_Model
'verbose' => __('enableads'),
'default' => 1,
),
'syntaxtheme' =>
array(
'type' => 'Pluf_DB_Field_Text',
'blank' => false,
'verbose' => __('syntaxtheme'),
'default' => "Default",
"size" => 50
)
);
$activityTable = $this->_con->pfx.'idf_projectactivities';
$tagTable = $this->_con->pfx.'idf_project_idf_tag_assoc';