Jump to content

MVS105

Members
  • Posts

    12
  • Joined

  • Last visited

MVS105's Achievements

Newbie

Newbie (1/14)

1

Reputation

  1. Hi. First of all, sorry for my poor English. I am working with the issue of finances and would like to add the cost of aircraft. It would be easy to discount the total balance of the purchase of an aircraft. I have seen that there is a table called finacesdata, but this does not have any rows. There is only the structure. I have also seen that in all the code is not referenced to the above table, except when you create it as installation scripts. I wonder. Am I wrong on the above? What is it for this table? It would be interesting to have a table with the total balance sheet and operating with it as you wish. Expenses system is interesting but not suitable for this purpose. Thank you very much
  2. I use my own skin. It is located in lib/skins/mvs/pages_items.tpl I have modified other tpl files and placed in the path and they work properly. Gracias.
  3. Thank you very much for your answer
  4. MVS105

    admin templates

    This is the solution. Thank you very much
  5. Better than a thousand words, one picture... or two The first image is with custom file modified and put in "lib/skins/mytemplate/pages_items.tpl" To see the correct menu item, second image, we must modify the original file "core/templates/pages_items.tpl"
  6. No, my code is: <?php if(!$allpages) return; foreach($allpages as $page) { echo '<li><a href="'.url('/pages/'.$page->filename).'"><span class="l"> </span><span class="r"> </span><span class="t">'.$page->pagename.'</span></a></li>'; } ?> Necessary to customize the view of the top menu item with CSS code This is the original code. <?php if(!$allpages) return; foreach($allpages as $page) { echo '<li><a href="'.url('/pages/'.$page->filename).'">'.$page->pagename.'</a></li>'; } ?>
  7. Copied the original file "core/templates/pages_items.tpl" and placed in "lib/skins/MyTemplate/pages_items.tpl", this is ignored showing always the original.
  8. First of all, I'm sorry for my poor English. But I'm sure you can understand. I am using scripts Lightbox2 Calling the scripts are in template.tpl /* This is required, so phpVMS can output the necessary libraries it needs */ echo $page_htmlhead; ?> <?php /*Any custom Javascript should be placed below this line, after the above call */ ?> <link rel="stylesheet" href="/lib/lightbox/css/lightbox.css" type="text/css" media="screen" /> <script type="text/javascript" src="/lib/lightbox/js/prototype.js"></script> <script type="text/javascript" src="/lib/lightbox/js/scriptaculous.js?load=effects,builder"></script> <script type="text/javascript" src="/lib/lightbox/js/lightbox.js"></script> if I put in this position (see above) shows the error "No route Passed", but lightbox work correctly. if I put them before (see code below) <link rel="stylesheet" href="/lib/lightbox/css/lightbox.css" type="text/css" media="screen" /> <script type="text/javascript" src="/lib/lightbox/js/prototype.js"></script> <script type="text/javascript" src="/lib/lightbox/js/scriptaculous.js?load=effects,builder"></script> <script type="text/javascript" src="/lib/lightbox/js/lightbox.js"></script> <?php /* This is required, so phpVMS can output the necessary libraries it needs */ echo $page_htmlhead; ?> <?php /*Any custom Javascript should be placed below this line, after the above call */ ?> No error appears but lightbox does not work. Of course, the error appears when I go to book flight (addbid) Report: install/checkinstall.php phpVMS Virtual Airline Administration Software Install Check phpVMS Build Number: 934 Checking PHP version [OK] PHP version is 5.2.13.x ASP Tags [OK] ASP-style tags are disabled Checking connectivity... [OK] Can contact outside servers Checking for SimpleXML module... [OK] SimpleXML module exists! Checking file hashes for corrupt or mismatched files [OK] No errors found! -- Checked 183 files, found 0 errors
  9. The templates in the area of administration may also be customized?
  10. The templates in the area of administration may also be customized?
  11. Not everyone is a user of Facebook. Would be to integrate a comments system, exclusive within phpVMS
  12. Very good idea. It would be interesting to have a commenting system for news. I do not think so complicated.
×
×
  • Create New...