Merge pull request #3811 from colemanw/dynPath
[civicrm-core.git] / CRM / Core / Page.php
index eda6b82bb08ffda86508cde4ff8fcc58baff5ba2..291c7d6297c437ab19086144b540f92bd20ad435 100644 (file)
@@ -416,14 +416,26 @@ class CRM_Core_Page {
     return $this->_print;
   }
 
+  /**
+   * @return CRM_Core_Smarty
+   */
   static function &getTemplate() {
     return self::$_template;
   }
 
+  /**
+   * @param $name
+   *
+   * @return null
+   */
   function getVar($name) {
     return isset($this->$name) ? $this->$name : NULL;
   }
 
+  /**
+   * @param $name
+   * @param $value
+   */
   function setVar($name, $value) {
     $this->$name = $value;
   }