Add a subtitle field

Permalink Browser Info Environment
Hi,

I want to add a subtitle field to the expand/collapse block.
I did this so far:

* db.xml add this code underneath title:
<field name="subtitle" type="C" size="255">
      </field>


* form_init.php
added:
<h2><?php      echo t('Subtitle')?></h2>
<input type="text" name="subtitle" value="<?php      echo $controllerObj->subtitle?>" style="width:<?php      echo ($textEditorWidth-100)?>px;"/>


* controller.php
changed the function save to:
function save($data) {
       $content = $this->translateTo($data['content']);
       $args['content'] = $content;
       $args['state'] = $data['state'];
       $args['title'] = $data['title'];
       $args['subtitle'] = $data['subtitle'];
       $args['speed'] = $data['speed'];
       parent::save($args);
       $blockObject = $this->getBlockObject();
       if (is_object($blockObject)) {
          $blockObject->setCustomTemplate($data['layout']);
       }


* and I called it in the view.php of my template


But I doesn't work. Can anybody tell me what I'm doing wrong?

Thanks,
sarah

Type: Discussion
Status: New
poetze
View Replies:

concrete5 Environment Information

Browser User-Agent String

Hide Post Content

This will replace the post content with the message: "Content has been removed by an Administrator"

Hide Content

Request Refund

You have not specified a license for this support ticket. You must have a valid license assigned to a support ticket to request a refund.