Squiz Matrix  4.12.2
 All Data Structures Namespaces Functions Variables Pages
design_area_js_calendar_navigator_edit_fns.inc
1 <?php
18 require_once SQ_CORE_PACKAGE_PATH.'/designs/design_area/design_area_edit_fns.inc';
19 
32 {
33 
34 
45  function paintTargetPages(&$asset, &$o, $prefix)
46  {
47  $components = Array('year', 'month', 'week', 'day');
48  ?>
49  <table class="sq-backend-table">
50  <?php
51  foreach ($components as $comp) {
52  ?>
53  <tr>
54  <th style="width: 20%"><?php echo ucfirst($comp); ?></th>
55  <td><?php $this->paintNoticeLinkedAsset($asset, $comp.'_page', Array('page_calendar' => 'D'), $prefix.$comp); ?></td>
56  </tr>
57  <?php
58  }
59  ?>
60  </table>
61  <?php
62 
63  }//end paintTargetPages()
64 
65 
76  function processTargetPages(&$asset, &$o, $prefix)
77  {
78  $components = Array('year', 'month', 'week', 'day');
79  foreach ($components as $comp) {
80  $this->processNoticeLinkedAsset($asset, $comp.'_page', $prefix.$comp);
81  }
82 
83  }//end processTargetPages()
84 
85 
86 }//end class
87 ?>