diff options
Diffstat (limited to 'framework/core.php')
-rw-r--r-- | framework/core.php | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/framework/core.php b/framework/core.php index 57c683b2..cbb53ddc 100644 --- a/framework/core.php +++ b/framework/core.php @@ -386,7 +386,15 @@ class PradoBase */
public static function getVersion()
{
- return '3.0a';
+ return '3.0b';
+ }
+
+ /**
+ * @return string a string that can be displayed on your Web page showing powered-by-PRADO information
+ */
+ public static function poweredByPrado()
+ {
+ return '<a title="Powered by PRADO" href="http://www.pradosoft.com/"><img src="http://www.pradosoft.com/images/powered.gif" style="border-width:0px;" alt="Powered by PRADO" /></a>';
}
/**
|