* 
* You should have received a copy of the GNU Affero General Public License
* along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/
require_once realpath(drupal_get_path('module', 'data_controller')) . '/common/object/converter/handler/PHP2Json.php';
?>

<?php 
if (isset($node->widgetConfig->gridConfig->title)) {
    ?>
<h3><?php 
    echo $node->widgetConfig->gridConfig->title;
    ?>
</h3>
<h3><?php 
    echo _getFullYearString();
    ?>
</h3>
<?php 
}
?>
<table id="table_<?php 
echo widget_unique_identifier($node);
?>
" class="<?php 
echo $node->widgetConfig->html_class;
?>
">
  <?php 
if (isset($node->widgetConfig->caption_column)) {
    echo '<caption>' . $node->data[0][$node->widgetConfig->caption_column] . '</caption>';
Exemple #2
0
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
* 
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
* GNU Affero General Public License for more details.
* 
* You should have received a copy of the GNU Affero General Public License
* along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/
?>

<h3 class="grid_title"><?php 
echo $title;
?>
</h3>
<h3 class="grid_chart_title"><?php 
print $node->widgetConfig->chartTitle;
?>
</h3>

<?php 
$refURL = $_GET['refURL'];
if (!(RequestUtil::isPendingExpenseContractPath($refURL) || RequestUtil::isPendingRevenueContractPath($refURL))) {
    echo '<h3 class="grid_year_title">' . (isset($domain) ? $domain . ' ' . _getFullYearString() : _getFullYearString()) . '</h3>';
} else {
    //For UI alignment purpose
    echo '<h3 class="grid_year_title">&nbsp;</h3>';
}