Changeset 1101
- Timestamp:
- 04/30/10 10:45:33 (22 months ago)
- Location:
- plugins/apostrophePlugin/trunk/lib/model/doctrine
- Files:
-
- 3 modified
-
PluginaRichTextSlot.class.php (modified) (1 diff)
-
PluginaSlot.class.php (modified) (1 diff)
-
PluginaTextSlot.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
plugins/apostrophePlugin/trunk/lib/model/doctrine/PluginaRichTextSlot.class.php
r4 r1101 21 21 return strip_tags($this->value); 22 22 } 23 24 /** 25 * Returns the plaintext representation of this slot 26 */ 27 public function getText() 28 { 29 return $this->getSearchText(); 30 } 23 31 } -
plugins/apostrophePlugin/trunk/lib/model/doctrine/PluginaSlot.class.php
r361 r1101 32 32 33 33 public function getSearchText() 34 { 35 return ''; 36 } 37 38 /** 39 * This function returns a plaintext representation of your slot's contents. 40 * This differs from getSearchText in that it should only be used for slots 41 * with user entered text. 42 * @return string 43 */ 44 public function getText() 34 45 { 35 46 return ''; -
plugins/apostrophePlugin/trunk/lib/model/doctrine/PluginaTextSlot.class.php
r4 r1101 26 26 return strip_tags($this->value); 27 27 } 28 29 /** 30 * Returns the plaintext representation of this slot 31 */ 32 public function getText() 33 { 34 return $this->getSearchText(); 35 } 28 36 }

