From: <var...@us...> - 2014-10-07 12:17:01
|
Revision: 9212 http://sourceforge.net/p/phpwiki/code/9212 Author: vargenau Date: 2014-10-07 12:16:54 +0000 (Tue, 07 Oct 2014) Log Message: ----------- Add protected function getMap, getHtml Modified Paths: -------------- trunk/lib/plugin/CacheTest.php trunk/lib/plugin/GraphViz.php trunk/lib/plugin/Ploticus.php trunk/lib/plugin/TexToPng.php Modified: trunk/lib/plugin/CacheTest.php =================================================================== --- trunk/lib/plugin/CacheTest.php 2014-10-07 11:43:50 UTC (rev 9211) +++ trunk/lib/plugin/CacheTest.php 2014-10-07 12:16:54 UTC (rev 9212) @@ -89,6 +89,16 @@ // return $this->lazy_produceGraphics($text,$font); } // getImage + protected function getMap($dbi, $argarray, $request) + { + trigger_error('pure virtual', E_USER_ERROR); + } + + protected function getHtml($dbi, $argarray, $request, $basepage) + { + trigger_error('pure virtual', E_USER_ERROR); + } + function getImageType($dbi, $argarray, $request) { extract($argarray); Modified: trunk/lib/plugin/GraphViz.php =================================================================== --- trunk/lib/plugin/GraphViz.php 2014-10-07 11:43:50 UTC (rev 9211) +++ trunk/lib/plugin/GraphViz.php 2014-10-07 12:16:54 UTC (rev 9212) @@ -319,6 +319,11 @@ return $outfile; } + protected function getHtml($dbi, $argarray, $request, $basepage) + { + trigger_error('pure virtual', E_USER_ERROR); + } + /** * Which argument must be set to 'png', for the fallback image when svg * will fail on the client. Modified: trunk/lib/plugin/Ploticus.php =================================================================== --- trunk/lib/plugin/Ploticus.php 2014-10-07 11:43:50 UTC (rev 9211) +++ trunk/lib/plugin/Ploticus.php 2014-10-07 12:16:54 UTC (rev 9212) @@ -147,6 +147,11 @@ return $argarray['device']; } + protected function getHtml($dbi, $argarray, $request, $basepage) + { + trigger_error('pure virtual', E_USER_ERROR); + } + /** * This gives an alternative text description of * the image. Modified: trunk/lib/plugin/TexToPng.php =================================================================== --- trunk/lib/plugin/TexToPng.php 2014-10-07 11:43:50 UTC (rev 9211) +++ trunk/lib/plugin/TexToPng.php 2014-10-07 12:16:54 UTC (rev 9212) @@ -124,8 +124,14 @@ protected function getMap($dbi, $argarray, $request) { + trigger_error('pure virtual', E_USER_ERROR); } + protected function getHtml($dbi, $argarray, $request, $basepage) + { + trigger_error('pure virtual', E_USER_ERROR); + } + function getExpire($dbi, $argarray, $request) { return '0'; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |